CoolFace
Modelpublic

sobamchan/bert-base-uncased-mrl-768-512-256-128-64

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes76downloads
Model Card

SentenceTransformer based on google-bert/bert-base-uncased

This is a sentence-transformers model finetuned from google-bert/bert-base-uncased on the all-nli dataset. It maps sentences & paragraphs to a 768-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.

Model Details

Model Description

  • —Model Type: Sentence Transformer
  • —Base model: google-bert/bert-base-uncased <!-- at revision 86b5e0934494bd15c9632b12f734a8a67f723594 -->
  • —Maximum Sequence Length: 512 tokens
  • —Output Dimensionality: 768 dimensions
  • —Similarity Function: Cosine Similarity
  • —Training Dataset:
  • —all-nli
  • —Language: en <!-- - License: Unknown -->

Model Sources

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 512, 'do_lower_case': False, 'architecture': 'BertModel'})
  (1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
)

Usage

Direct Usage (Sentence Transformers)

First install the Sentence Transformers library:

bash
pip install -U sentence-transformers

Then you can load this model and run inference.

python
from sentence_transformers import SentenceTransformer

# Download from the 🤗 Hub
model = SentenceTransformer("sentence_transformers_model_id")
# Run inference
sentences = [
    'A construction worker peeking out of a manhole while his coworker sits on the sidewalk smiling.',
    'A worker is looking out of a manhole.',
    'The workers are both inside the manhole.',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]

# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[1.0000, 0.6487, 0.2031],
#         [0.6487, 1.0000, 0.4307],
#         [0.2031, 0.4307, 1.0000]])

<!--

Direct Usage (Transformers)

<details><summary>Click to see the direct usage in Transformers</summary>

</details> -->

<!--

Downstream Usage (Sentence Transformers)

You can finetune this model on your own dataset.

<details><summary>Click to expand</summary>

</details> -->

<!--

Out-of-Scope Use

List how the model may foreseeably be misused and address what users ought not to do with the model. -->

Evaluation

Metrics

Semantic Similarity
Metricsts-devsts-test
pearson_cosine0.81950.7938
spearman_cosine0.82150.8007

<!--

Bias, Risks and Limitations

What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model. -->

<!--

Recommendations

What are recommendations with respect to the foreseeable issues? For example, filtering explicit content. -->

Training Details

Training Dataset

all-nli
  • —Dataset: all-nli at d482672
  • —Size: 557,850 training samples
  • —Columns: <code>anchor</code>, <code>positive</code>, and <code>negative</code>
  • —Approximate statistics based on the first 1000 samples: | | anchor | positive | negative | |:--------|:----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------------------------| | type | string | string | string | | details | <ul><li>min: 7 tokens</li><li>mean: 10.46 tokens</li><li>max: 46 tokens</li></ul> | <ul><li>min: 6 tokens</li><li>mean: 12.81 tokens</li><li>max: 40 tokens</li></ul> | <ul><li>min: 5 tokens</li><li>mean: 13.4 tokens</li><li>max: 50 tokens</li></ul> |
  • —Samples: | anchor | positive | negative | |:---------------------------------------------------------------------------|:-------------------------------------------------|:-----------------------------------------------------------| | <code>A person on a horse jumps over a broken down airplane.</code> | <code>A person is outdoors, on a horse.</code> | <code>A person is at a diner, ordering an omelette.</code> | | <code>Children smiling and waving at camera</code> | <code>There are children present</code> | <code>The kids are frowning</code> | | <code>A boy is jumping on skateboard in the middle of a red bridge.</code> | <code>The boy does a skateboarding trick.</code> | <code>The boy skates down the sidewalk.</code> |
  • —Loss: <code>MatryoshkaLoss</code> with these parameters:
json
  {
      "loss": "MultipleNegativesRankingLoss",
      "matryoshka_dims": [
          768,
          512,
          256,
          128,
          64
      ],
      "matryoshka_weights": [
          1,
          1,
          1,
          1,
          1
      ],
      "n_dims_per_step": -1
  }

Evaluation Dataset

all-nli
  • —Dataset: all-nli at d482672
  • —Size: 6,584 evaluation samples
  • —Columns: <code>anchor</code>, <code>positive</code>, and <code>negative</code>
  • —Approximate statistics based on the first 1000 samples: | | anchor | positive | negative | |:--------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:----------------------------------------------------------------------------------| | type | string | string | string | | details | <ul><li>min: 6 tokens</li><li>mean: 17.95 tokens</li><li>max: 63 tokens</li></ul> | <ul><li>min: 4 tokens</li><li>mean: 9.78 tokens</li><li>max: 29 tokens</li></ul> | <ul><li>min: 5 tokens</li><li>mean: 10.35 tokens</li><li>max: 29 tokens</li></ul> |
  • —Samples: | anchor | positive | negative | |:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------|:--------------------------------------------------------| | <code>Two women are embracing while holding to go packages.</code> | <code>Two woman are holding packages.</code> | <code>The men are fighting outside a deli.</code> | | <code>Two young children in blue jerseys, one with the number 9 and one with the number 2 are standing on wooden steps in a bathroom and washing their hands in a sink.</code> | <code>Two kids in numbered jerseys wash their hands.</code> | <code>Two kids in jackets walk to school.</code> | | <code>A man selling donuts to a customer during a world exhibition event held in the city of Angeles</code> | <code>A man selling donuts to a customer.</code> | <code>A woman drinks her coffee in a small cafe.</code> |
  • —Loss: <code>MatryoshkaLoss</code> with these parameters:
json
  {
      "loss": "MultipleNegativesRankingLoss",
      "matryoshka_dims": [
          768,
          512,
          256,
          128,
          64
      ],
      "matryoshka_weights": [
          1,
          1,
          1,
          1,
          1
      ],
      "n_dims_per_step": -1
  }

Training Hyperparameters

Non-Default Hyperparameters
  • —eval_strategy: steps
  • —per_device_train_batch_size: 16
  • —per_device_eval_batch_size: 16
  • —num_train_epochs: 5
  • —warmup_ratio: 0.1
  • —fp16: True
All Hyperparameters

<details><summary>Click to expand</summary>

  • —overwrite_output_dir: False
  • —do_predict: False
  • —eval_strategy: steps
  • —prediction_loss_only: True
  • —per_device_train_batch_size: 16
  • —per_device_eval_batch_size: 16
  • —per_gpu_train_batch_size: None
  • —per_gpu_eval_batch_size: None
  • —gradient_accumulation_steps: 1
  • —eval_accumulation_steps: None
  • —torch_empty_cache_steps: None
  • —learning_rate: 5e-05
  • —weight_decay: 0.0
  • —adam_beta1: 0.9
  • —adam_beta2: 0.999
  • —adam_epsilon: 1e-08
  • —max_grad_norm: 1.0
  • —num_train_epochs: 5
  • —max_steps: -1
  • —lr_scheduler_type: linear
  • —lr_scheduler_kwargs: {}
  • —warmup_ratio: 0.1
  • —warmup_steps: 0
  • —log_level: passive
  • —log_level_replica: warning
  • —log_on_each_node: True
  • —logging_nan_inf_filter: True
  • —save_safetensors: True
  • —save_on_each_node: False
  • —save_only_model: False
  • —restore_callback_states_from_checkpoint: False
  • —no_cuda: False
  • —use_cpu: False
  • —use_mps_device: False
  • —seed: 42
  • —data_seed: None
  • —jit_mode_eval: False
  • —bf16: False
  • —fp16: True
  • —fp16_opt_level: O1
  • —half_precision_backend: auto
  • —bf16_full_eval: False
  • —fp16_full_eval: False
  • —tf32: None
  • —local_rank: 0
  • —ddp_backend: None
  • —tpu_num_cores: None
  • —tpu_metrics_debug: False
  • —debug: []
  • —dataloader_drop_last: False
  • —dataloader_num_workers: 0
  • —dataloader_prefetch_factor: None
  • —past_index: -1
  • —disable_tqdm: False
  • —remove_unused_columns: True
  • —label_names: None
  • —load_best_model_at_end: False
  • —ignore_data_skip: False
  • —fsdp: []
  • —fsdp_min_num_params: 0
  • —fsdp_config: {'minnumparams': 0, 'xla': False, 'xlafsdpv2': False, 'xlafsdpgrad_ckpt': False}
  • —fsdp_transformer_layer_cls_to_wrap: None
  • —accelerator_config: {'splitbatches': False, 'dispatchbatches': None, 'evenbatches': True, 'useseedablesampler': True, 'nonblocking': False, 'gradientaccumulationkwargs': None}
  • —parallelism_config: None
  • —deepspeed: None
  • —label_smoothing_factor: 0.0
  • —optim: adamwtorchfused
  • —optim_args: None
  • —adafactor: False
  • —group_by_length: False
  • —length_column_name: length
  • —project: huggingface
  • —trackio_space_id: trackio
  • —ddp_find_unused_parameters: None
  • —ddp_bucket_cap_mb: None
  • —ddp_broadcast_buffers: False
  • —dataloader_pin_memory: True
  • —dataloader_persistent_workers: False
  • —skip_memory_metrics: True
  • —use_legacy_prediction_loop: False
  • —push_to_hub: False
  • —resume_from_checkpoint: None
  • —hub_model_id: None
  • —hub_strategy: every_save
  • —hub_private_repo: None
  • —hub_always_push: False
  • —hub_revision: None
  • —gradient_checkpointing: False
  • —gradient_checkpointing_kwargs: None
  • —include_inputs_for_metrics: False
  • —include_for_metrics: []
  • —eval_do_concat_batches: True
  • —fp16_backend: auto
  • —push_to_hub_model_id: None
  • —push_to_hub_organization: None
  • —mp_parameters:
  • —auto_find_batch_size: False
  • —full_determinism: False
  • —torchdynamo: None
  • —ray_scope: last
  • —ddp_timeout: 1800
  • —torch_compile: False
  • —torch_compile_backend: None
  • —torch_compile_mode: None
  • —include_tokens_per_second: False
  • —include_num_input_tokens_seen: no
  • —neftune_noise_alpha: None
  • —optim_target_modules: None
  • —batch_eval_metrics: False
  • —eval_on_start: False
  • —use_liger_kernel: False
  • —liger_kernel_config: None
  • —eval_use_gather_object: False
  • —average_tokens_across_devices: True
  • —prompts: None
  • —batch_sampler: batch_sampler
  • —multi_dataset_batch_sampler: proportional
  • —router_mapping: {}
  • —learning_rate_mapping: {}

</details>

Training Logs

<details><summary>Click to expand</summary>

EpochStepTraining LossValidation Losssts-dev_spearman_cosinests-test_spearman_cosine
-1-1--0.5931-
0.002910011.08217.38900.6122-
0.005720010.44446.21060.6776-
0.00863007.94964.76490.7566-
0.01154006.00853.88870.7898-
0.01435005.02073.48460.8011-
0.01726004.57443.25180.8081-
0.02017004.02973.06910.8126-
0.02298004.11962.88570.8160-
0.02589004.05792.71410.8182-
0.028710003.48032.55900.8212-
0.031511003.64912.41940.8229-
0.034412003.23992.28930.8253-
0.037313003.50682.20250.8287-
0.040214003.16162.13890.8278-
0.043015002.96792.09590.8289-
0.045916003.08812.03390.8320-
0.048817002.67262.00460.8310-
0.051618002.91311.94340.8314-
0.054519002.9911.89940.8324-
0.057420002.55041.87620.8323-
0.060221002.70441.84120.8344-
0.063122002.65151.80380.8353-
0.066023002.7081.78020.8323-
0.068824002.4261.75500.8325-
0.071725002.73011.71940.8336-
0.074626002.6071.71900.8374-
0.077427002.51991.63830.8403-
0.080328002.66191.62230.8367-
0.083229002.33171.64190.8387-
0.086030002.39791.60220.8360-
0.088931002.43391.60040.8356-
0.091832002.16831.55430.8379-
0.094633002.44261.54300.8377-
0.097534002.24031.52810.8394-
0.100435002.27821.54230.8402-
0.103336002.39661.51130.8383-
0.106137002.27841.53960.8320-
0.109038002.24021.51760.8323-
0.111939002.19581.45690.8358-
0.114740002.11681.46870.8332-
0.117641002.11571.43310.8390-
0.120542002.29221.44600.8367-
0.123343002.24921.40110.8374-
0.126244002.21241.41120.8345-
0.129145001.96011.37550.8369-
0.131946002.09581.41020.8360-
0.134847002.09641.41910.8338-
0.137748001.88341.41480.8376-
0.140549002.06941.37110.8348-
0.143450001.93451.36250.8350-
0.146351002.0111.39410.8294-
0.149152002.11661.32750.8393-
0.152053001.90761.32980.8383-
0.154954001.89831.33290.8350-
0.157755002.33741.33120.8425-
0.160656002.0071.34470.8351-
0.163557001.88391.30710.8413-
0.166458002.14061.29720.8367-
0.169259002.03911.31580.8378-
0.172160001.78621.28450.8416-
0.175061001.72011.31110.8393-
0.177862001.91581.30250.8378-
0.180763001.5991.31270.8373-
0.183664001.97471.30530.8373-
0.186465001.75821.31180.8351-
0.189366001.89121.29450.8322-
0.192267002.04051.29890.8357-
0.195068001.87761.29510.8395-
0.197969001.85761.32930.8380-
0.200870001.95131.29590.8366-
0.203671001.82891.28570.8338-
0.206572001.75631.33580.8398-
0.209473001.86891.27270.8362-
0.212274001.84191.31090.8312-
0.215175001.81911.28580.8340-
0.218076001.65361.29640.8362-
0.220877002.07151.27660.8373-
0.223778001.77811.34610.8354-
0.226679001.97291.25590.8383-
0.229480001.54141.31730.8333-
0.232381001.8681.29680.8387-
0.235282001.72341.28240.8433-
0.238183001.72061.26390.8405-
0.240984001.77821.31960.8396-
0.243885001.66091.29050.8352-
0.246786001.83391.31370.8331-
0.249587001.78691.28770.8443-
0.252488001.90031.26090.8389-
0.255389001.81421.22390.8437-
0.258190001.57871.29200.8501-
0.261091001.64631.24350.8438-
0.263992001.84921.24020.8356-
0.266793001.77351.23810.8347-
0.269694001.84851.26150.8325-
0.272595001.84871.26600.8286-
0.275396001.70031.24930.8430-
0.278297001.61941.26650.8411-
0.281198001.6551.25450.8371-
0.283999001.74721.29160.8351-
0.2868100001.70441.29950.8260-
0.2897101001.69411.27530.8351-
0.2925102001.7221.29840.8394-
0.2954103001.73721.38410.8328-
0.2983104001.7791.27940.8385-
0.3012105001.44151.24820.8382-
0.3040106001.55781.28620.8284-
0.3069107001.79411.25220.8330-
0.3098108001.82681.25740.8419-
0.3126109001.86751.33830.8415-
0.3155110001.45731.28950.8411-
0.3184111001.76131.26870.8375-
0.3212112001.7441.23150.8357-
0.3241113001.68251.24470.8348-
0.3270114001.78661.24740.8240-
0.3298115001.50871.25710.8325-
0.3327116001.80411.23850.8361-
0.3356117001.57211.33930.8285-
0.3384118001.95331.30720.8370-
0.3413119001.61281.28360.8288-
0.3442120001.77561.28920.8323-
0.3470121001.72411.27270.8303-
0.3499122001.66381.22680.8366-
0.3528123001.65171.22310.8363-
0.3556124001.82911.30260.8246-
0.3585125001.75361.22190.8297-
0.3614126001.57491.25390.8254-
0.3643127001.84521.22390.8300-
0.3671128001.84011.28050.8345-
0.3700129001.79491.24490.8361-
0.3729130001.55891.21900.8309-
0.3757131001.82821.25940.8341-
0.3786132001.69421.30230.8343-
0.3815133001.91671.29860.8312-
0.3843134001.78411.32470.8282-
0.3872135001.73171.25080.8358-
0.3901136001.79321.27620.8392-
0.3929137001.72791.32580.8464-
0.3958138001.62351.27230.8417-
0.3987139001.28741.30270.8408-
0.4015140001.64421.29320.8293-
0.4044141001.63661.29960.8289-
0.4073142001.57261.35080.8367-
0.4101143001.73411.32960.8232-
0.4130144001.86641.28090.8309-
0.4159145001.63371.28420.8344-
0.4187146001.67961.26310.8345-
0.4216147001.47921.29410.8316-
0.4245148001.43881.32980.8287-
0.4274149001.67291.35870.8217-
0.4302150001.80741.34890.8200-
0.4331151001.59241.34600.8292-
0.4360152001.54681.36740.8219-
0.4388153001.69241.34060.8284-
0.4417154001.73761.30620.8295-
0.4446155001.64911.33370.8197-
0.4474156001.62081.30640.8326-
0.4503157001.66091.37820.8357-
0.4532158001.59551.32640.8231-
0.4560159001.56141.35020.8161-
0.4589160001.62151.33020.8274-
0.4618161001.67051.32310.8245-
0.4646162001.89781.35750.8223-
0.4675163001.59611.36250.8155-
0.4704164001.54381.35260.8202-
0.4732165001.83791.38660.8263-
0.4761166001.6571.35870.8220-
0.4790167001.79421.34150.8337-
0.4818168001.71951.34860.8164-
0.4847169001.68391.38610.8183-
0.4876170001.50171.48320.8158-
0.4904171001.74081.46240.8065-
0.4933172001.88351.37780.8213-
0.4962173001.6981.36870.8157-
0.4991174001.57621.41000.8124-
0.5019175001.80261.35640.8144-
0.5048176001.76051.34460.8176-
0.5077177001.83761.35870.8264-
0.5105178001.62091.39030.8217-
0.5134179001.69441.34310.8146-
0.5163180001.76661.31770.8172-
0.5191181001.70531.35010.8268-
0.5220182001.54621.39590.8202-
0.5249183001.77041.40320.8125-
0.5277184001.74811.35870.8236-
0.5306185001.76781.37110.8260-
0.5335186001.85731.33330.8236-
0.5363187001.67551.41310.8114-
0.5392188001.59091.33240.8110-
0.5421189001.4351.35310.8192-
0.5449190001.5661.40390.8112-
0.5478191001.69241.39720.8193-
0.5507192001.59421.36370.8143-
0.5535193001.65911.32560.8176-
0.5564194001.62721.32340.8209-
0.5593195001.60881.35980.8130-
0.5622196001.57481.35180.8193-
0.5650197001.66141.33940.8278-
0.5679198001.69811.36730.8222-
0.5708199001.43631.34940.8236-
0.5736200001.52881.40360.8194-
0.5765201001.59871.36500.8215-
0.5794202001.66391.33550.8113-
0.5822203001.68981.36100.8113-
0.5851204001.60341.33980.8203-
0.5880205001.43091.36880.8200-
0.5908206001.47631.33730.8262-
0.5937207001.5851.32510.8245-
0.5966208001.65011.30190.8308-
0.5994209001.6311.28840.8250-
0.6023210001.59091.28110.8199-
0.6052211001.53681.31580.8152-
0.6080212001.56331.34380.8058-
0.6109213001.71261.34510.8219-
0.6138214001.50751.28520.8103-
0.6166215001.46491.28300.8146-
0.6195216001.5091.32640.8147-
0.6224217001.58661.31700.8128-
0.6253218001.4621.35350.8085-
0.6281219001.54411.34590.8135-
0.6310220001.3981.33880.8120-
0.6339221001.7551.33710.8066-
0.6367222001.61941.32530.8143-
0.6396223001.5391.28600.8187-
0.6425224001.53851.28880.8198-
0.6453225001.47471.41470.8169-
0.6482226001.58471.33500.8180-
0.6511227001.56831.36490.8161-
0.6539228001.52071.45550.8162-
0.6568229001.53011.33730.8234-
0.6597230001.25621.41320.8173-
0.6625231001.63341.39830.8126-
0.6654232001.66031.32680.8190-
0.6683233001.62311.33820.8112-
0.6711234001.24331.34190.8191-
0.6740235001.48341.37990.8103-
0.6769236001.47971.44010.8160-
0.6797237001.17541.40430.8191-
0.6826238001.56221.33110.8222-
0.6855239001.46431.39810.8214-
0.6883240001.33711.27810.8145-
0.6912241001.61331.25980.8203-
0.6941242001.58861.31050.8143-
0.6970243001.51951.31250.8128-
0.6998244001.51091.30340.8222-
0.7027245001.46121.45290.8040-
0.7056246001.43021.34980.8051-
0.7084247001.45991.36760.8197-
0.7113248001.30291.42360.8127-
0.7142249001.47641.33060.8215-
0.7170250001.65251.32820.8186-
0.7199251001.57471.34850.8180-
0.7228252001.32621.36770.8206-
0.7256253001.50921.29580.8193-
0.7285254001.43221.30310.8131-
0.7314255001.50321.37230.8088-
0.7342256001.41621.31080.8098-
0.7371257001.50561.28640.8128-
0.7400258001.50941.31440.8130-
0.7428259001.54971.27810.8230-
0.7457260001.45831.31910.8176-
0.7486261001.41491.34760.8146-
0.7514262001.47081.31540.8143-
0.7543263001.6511.35060.8115-
0.7572264001.43811.28960.8092-
0.7601265001.53671.33980.8125-
0.7629266001.43041.40520.8168-
0.7658267001.38361.30570.8171-
0.7687268001.38671.40110.8041-
0.7715269001.3631.42800.7996-
0.7744270001.45461.36340.7981-
0.7773271001.30531.38850.7996-
0.7801272001.51531.28530.8188-
0.7830273001.43421.30680.8098-
0.7859274001.46441.33750.8194-
0.7887275001.42241.29960.8198-
0.7916276001.49041.32070.8139-
0.7945277001.33361.32900.8125-
0.7973278001.29231.29980.8171-
0.8002279001.38571.32340.8144-
0.8031280001.23241.30370.8094-
0.8059281001.33441.34080.8182-
0.8088282001.31021.34990.8168-
0.8117283001.24991.37010.8159-
0.8145284001.45111.29760.8147-
0.8174285001.33951.30930.8067-
0.8203286001.44251.32600.8173-
0.8232287001.36531.27350.8220-
0.8260288001.2251.33320.8204-
0.8289289001.47481.28290.8264-
0.8318290001.3741.28770.8206-
0.8346291001.31161.29580.8161-
0.8375292001.29031.36520.8135-
0.8404293001.19121.34780.8209-
0.8432294001.51891.30830.8168-
0.8461295001.39181.30860.8158-
0.8490296001.28591.34680.8206-
0.8518297001.22021.35740.8136-
0.8547298001.56081.27070.8228-
0.8576299001.61271.27930.8240-
0.8604300001.39431.24490.8175-
0.8633301001.47181.29690.8151-
0.8662302001.43851.26720.8174-
0.8690303001.41521.27980.8180-
0.8719304001.37411.28120.8185-
0.8748305001.37231.32150.8216-
0.8776306001.3071.29280.8202-
0.8805307001.18171.29900.8287-
0.8834308001.27581.25780.8220-
0.8863309001.51591.30330.8218-
0.8891310001.48621.29520.8252-
0.8920311001.35021.28090.8251-
0.8949312001.431.29370.8265-
0.8977313001.28511.29550.8286-
0.9006314001.33091.40200.8132-
0.9035315001.34851.29560.8244-
0.9063316001.2291.29830.8235-
0.9092317001.35451.26750.8146-
0.9121318001.52131.30320.8195-
0.9149319001.46771.29100.8267-
0.9178320001.39521.35200.8195-
0.9207321001.39631.33440.8175-
0.9235322001.23781.29750.8201-
0.9264323001.33341.29600.8143-
0.9293324001.29521.33220.8151-
0.9321325001.29161.30500.8144-
0.9350326001.38631.27580.8219-
0.9379327001.24881.34820.8095-
0.9407328001.28671.28990.8181-
0.9436329001.52131.33550.8100-
0.9465330001.37041.32510.8129-
0.9493331001.18461.32450.8142-
0.9522332001.16911.28560.8132-
0.9551333001.33141.23530.8156-
0.9580334001.18831.29540.8241-
0.9608335001.24411.36170.8152-
0.9637336001.39131.22750.8157-
0.9666337001.17361.27050.8169-
0.9694338001.15571.25360.8207-
0.9723339001.26281.29210.8156-
0.9752340001.26751.31870.8171-
0.9780341001.47191.28800.8140-
0.9809342001.26941.32630.8165-
0.9838343001.35351.23420.8216-
0.9866344001.34791.25810.8216-
0.9895345001.27061.28470.8173-
0.9924346001.20241.31590.8245-
0.9952347001.27541.32910.8200-
0.9981348001.40031.25970.8212-
1.0010349001.0221.35320.8205-
1.0038350000.99211.29650.8140-
1.0067351000.95191.38840.8165-
1.0096352000.98581.33690.8196-
1.0124353001.07671.29090.8258-
1.0153354001.04521.25930.8232-
1.0182355000.89781.30720.8234-
1.0211356000.76081.30280.8188-
1.0239357000.85211.36240.8127-
1.0268358000.95711.35020.8199-
1.0297359001.00231.29430.8224-
1.0325360001.08971.30190.8209-
1.0354361001.12321.29200.8178-
1.0383362000.9251.28340.8191-
1.0411363001.01811.32090.8152-
1.0440364001.15471.33240.8119-
1.0469365000.86021.32450.8184-
1.0497366000.9031.36610.8153-
1.0526367001.12011.35350.8128-
1.0555368000.96341.33990.8157-
1.0583369000.90241.32430.8195-
1.0612370000.97221.29580.8145-
1.0641371000.90781.32100.8179-
1.0669372001.07841.39620.8115-
1.0698373001.01321.30380.8181-
1.0727374000.92391.28310.8189-
1.0755375000.85851.30690.8192-
1.0784376001.16051.31190.8049-
1.0813377000.94491.27390.8114-
1.0842378001.18981.22800.8200-
1.0870379000.85041.31210.8191-
1.0899380001.09071.32230.8170-
1.0928381001.05571.33650.8165-
1.0956382000.97331.33380.8263-
1.0985383000.96481.33340.8340-
1.1014384001.02891.31280.8254-
1.1042385000.98471.28560.8245-
1.1071386001.04941.33960.8210-
1.1100387001.11131.30620.8205-
1.1128388001.17681.23000.8217-
1.1157389000.93831.26970.8183-
1.1186390000.97151.25780.8188-
1.1214391001.00191.25350.8279-
1.1243392001.07581.24770.8276-
1.1272393001.07151.28280.8246-
1.1300394001.00481.26270.8232-
1.1329395001.02171.24740.8277-
1.1358396001.0411.30740.8181-
1.1386397001.01871.31400.8187-
1.1415398001.07581.24030.8289-
1.1444399001.07281.22100.8303-
1.1472400001.08261.20220.8303-
1.1501401001.08161.25560.8229-
1.1530402000.93061.22140.8234-
1.1559403000.92711.25110.8299-
1.1587404000.99921.26870.8229-
1.1616405000.93871.20560.8284-
1.1645406000.94321.26990.8288-
1.1673407001.1591.21060.8296-
1.1702408001.05411.27020.8244-
1.1731409000.80841.26620.8284-
1.1759410000.93621.25910.8300-
1.1788411000.92881.30840.8210-
1.1817412000.97751.27620.8193-
1.1845413000.92981.29310.8279-
1.1874414001.03451.24570.8241-
1.1903415001.12961.25810.8293-
1.1931416000.93831.16910.8296-
1.1960417001.07191.22410.8285-
1.1989418001.06831.26980.8294-
1.2017419000.86451.30110.8283-
1.2046420000.93181.28380.8224-
1.2075421001.01511.27940.8255-
1.2103422001.08621.22410.8300-
1.2132423001.01971.27770.8291-
1.2161424001.00481.25790.8312-
1.2190425001.07551.28300.8278-
1.2218426001.06931.26090.8270-
1.2247427000.96791.32830.8283-
1.2276428001.03931.24940.8240-
1.2304429000.89791.26380.8240-
1.2333430000.98781.28860.8245-
1.2362431000.96731.32680.8247-
1.2390432000.92891.32780.8239-
1.2419433001.00361.28220.8229-
1.2448434001.0161.28380.8286-
1.2476435001.16431.21940.8218-
1.2505436000.99321.26200.8221-
1.2534437001.06581.29250.8192-
1.2562438000.89091.33790.8248-
1.2591439000.98561.26910.8281-
1.2620440000.89461.29870.8286-
1.2648441000.84471.30930.8235-
1.2677442000.94071.24070.8279-
1.2706443000.95771.26730.8321-
1.2734444001.02221.25350.8271-
1.2763445001.01051.26400.8322-
1.2792446001.01861.28580.8267-
1.2821447000.98571.26700.8290-
1.2849448000.96671.29860.8257-
1.2878449000.88981.23910.8295-
1.2907450000.7771.26290.8310-
1.2935451000.91781.33170.8219-
1.2964452000.89881.26180.8233-
1.2993453000.85941.29000.8269-
1.3021454000.95311.25920.8265-
1.3050455000.99261.23170.8231-
1.3079456000.93981.23880.8249-
1.3107457000.99461.20660.8189-
1.3136458001.00151.24550.8229-
1.3165459001.06331.23580.8253-
1.3193460001.03061.20690.8211-
1.3222461000.9461.23230.8222-
1.3251462000.91751.26530.8183-
1.3279463000.92591.20650.8154-
1.3308464001.02451.22040.8138-
1.3337465000.99531.27740.8109-
1.3365466000.88191.25020.8170-
1.3394467000.87511.26070.8127-
1.3423468001.04781.20840.8138-
1.3452469000.8831.30160.8125-
1.3480470001.05941.25730.8137-
1.3509471001.00551.26120.8193-
1.3538472000.85661.27900.8137-
1.3566473000.96581.22930.8210-
1.3595474000.90211.31860.8118-
1.3624475000.84751.29290.8178-
1.3652476000.8851.31480.8203-
1.3681477001.00261.29810.8124-
1.3710478000.7931.30200.8199-
1.3738479000.93211.27260.8117-
1.3767480001.04371.25210.8231-
1.3796481000.88961.25620.8076-
1.3824482000.85111.26040.8095-
1.3853483000.89291.29340.8107-
1.3882484000.93821.24910.8142-
1.3910485001.03281.24660.8178-
1.3939486000.93231.32200.8197-
1.3968487001.00141.29240.8259-
1.3996488000.8431.27090.8164-
1.4025489000.85771.25370.8181-
1.4054490001.02261.24340.8179-
1.4082491001.05891.22110.8252-
1.4111492000.90831.22560.8226-
1.4140493001.00751.22740.8133-
1.4169494000.86671.22650.8211-
1.4197495000.90831.23500.8172-
1.4226496001.02231.22950.8111-
1.4255497000.97121.23450.8202-
1.4283498000.84511.24490.8175-
1.4312499000.81221.22920.8226-
1.4341500000.8091.23820.8227-
1.4369501000.88271.23410.8221-
1.4398502000.95091.22970.8204-
1.4427503000.8511.25430.8173-
1.4455504000.88391.22670.8244-
1.4484505000.87391.23070.8192-
1.4513506000.96741.25940.8154-
1.4541507000.98751.21780.8174-
1.4570508000.94091.24710.8174-
1.4599509000.98631.21620.8084-
1.4627510000.87461.21430.8150-
1.4656511000.90661.23120.8139-
1.4685512000.98411.24550.8178-
1.4713513000.99511.23400.8160-
1.4742514000.8621.21430.8187-
1.4771515000.94611.18430.8184-
1.4800516000.88681.21190.8191-
1.4828517000.93641.21610.8223-
1.4857518000.89121.19910.8180-
1.4886519000.74411.30880.8163-
1.4914520000.89771.26280.8133-
1.4943521000.94161.19450.8187-
1.4972522000.87421.19770.8213-
1.5000523000.92311.18720.8255-
1.5029524000.93661.21040.8206-
1.5058525000.93311.15770.8202-
1.5086526000.94641.17540.8205-
1.5115527001.01281.16820.8301-
1.5144528000.68671.21580.8218-
1.5172529000.9061.16610.8245-
1.5201530000.78871.22310.8250-
1.5230531000.67751.26080.8256-
1.5258532000.81551.22930.8232-
1.5287533000.8641.17920.8273-
1.5316534000.95061.19020.8281-
1.5344535000.9581.21660.8248-
1.5373536000.86081.26380.8170-
1.5402537000.83711.19580.8205-
1.5431538000.77791.23740.8179-
1.5459539000.8471.23480.8197-
1.5488540000.85271.22540.8175-
1.5517541000.88041.18080.8157-
1.5545542000.9271.25490.8178-
1.5574543001.08051.19120.8130-
1.5603544000.74421.23930.8149-
1.5631545000.87221.20860.8118-
1.5660546000.99851.18210.8073-
1.5689547000.85021.20030.8116-
1.5717548000.78921.18360.8153-
1.5746549000.89431.18100.8178-
1.5775550000.96091.22530.8228-
1.5803551000.88381.18490.8146-
1.5832552001.05051.17830.8162-
1.5861553000.81811.21130.8121-
1.5889554000.76541.20100.8165-
1.5918555000.84121.18070.8127-
1.5947556001.01651.15480.8166-
1.5975557000.73311.17180.8188-
1.6004558000.77771.18170.8204-
1.6033559000.90611.15580.8255-
1.6061560000.94441.16760.8198-
1.6090561000.98811.15490.8200-
1.6119562000.87661.18910.8160-
1.6148563000.98581.23350.8167-
1.6176564000.99491.24440.8104-
1.6205565000.97781.12630.8204-
1.6234566000.80511.19270.8212-
1.6262567000.88961.16130.8189-
1.6291568000.92441.17000.8210-
1.6320569000.94371.18210.8182-
1.6348570000.83641.19340.8185-
1.6377571000.81731.16360.8181-
1.6406572000.86611.19360.8152-
1.6434573001.07411.15340.8174-
1.6463574000.8541.13690.8199-
1.6492575001.02621.16820.8218-
1.6520576000.8981.19020.8219-
1.6549577000.91951.14860.8168-
1.6578578000.80831.26400.8085-
1.6606579000.90651.20340.8185-
1.6635580000.94041.19330.8113-
1.6664581000.98871.20980.8121-
1.6692582000.85641.18810.8115-
1.6721583000.82821.16600.8145-
1.6750584000.79591.20420.8191-
1.6779585000.90611.21870.8250-
1.6807586000.88941.21790.8204-
1.6836587000.88941.18290.8176-
1.6865588000.87471.18950.8284-
1.6893589000.82651.17460.8232-
1.6922590000.88421.24280.8228-
1.6951591001.00991.17150.8210-
1.6979592000.94041.20120.8289-
1.7008593000.83061.23040.8205-
1.7037594000.88421.20440.8203-
1.7065595000.83571.16340.8270-
1.7094596000.85081.14410.8301-
1.7123597000.93241.17110.8177-
1.7151598000.81541.16930.8207-
1.7180599000.83521.15900.8192-
1.7209600000.87831.16290.8230-
1.7237601000.81051.16140.8224-
1.7266602000.90531.14600.8182-
1.7295603000.8071.14930.8251-
1.7323604000.81321.12680.8274-
1.7352605000.86211.16700.8223-
1.7381606000.8441.14580.8206-
1.7410607000.7351.13750.8247-
1.7438608000.81351.16880.8254-
1.7467609001.01181.18760.8217-
1.7496610000.88021.18170.8225-
1.7524611000.81161.18970.8233-
1.7553612000.68061.18330.8272-
1.7582613000.8171.20210.8246-
1.7610614000.84171.19540.8224-
1.7639615000.82481.19220.8271-
1.7668616000.87811.16330.8249-
1.7696617000.81971.22380.8243-
1.7725618000.94381.14870.8228-
1.7754619000.83071.23840.8165-
1.7782620000.88291.16150.8240-
1.7811621001.0181.15360.8204-
1.7840622000.90691.17520.8213-
1.7868623001.02791.18800.8234-
1.7897624000.91671.17030.8290-
1.7926625000.80071.16620.8286-
1.7954626000.96051.22160.8196-
1.7983627000.88141.27990.8212-
1.8012628000.81031.23240.8185-
1.8040629000.92781.24340.8227-
1.8069630000.72881.22100.8253-
1.8098631000.95051.17750.8228-
1.8127632000.74371.26520.8203-
1.8155633000.94511.22800.8213-
1.8184634000.77741.24380.8239-
1.8213635000.78991.22260.8250-
1.8241636000.76491.20320.8174-
1.8270637000.81981.22200.8117-
1.8299638000.84191.20730.8172-
1.8327639000.82961.23850.8157-
1.8356640000.7821.20340.8234-
1.8385641000.8511.18960.8186-
1.8413642000.86621.20910.8282-
1.8442643000.87971.18430.8235-
1.8471644000.91371.18660.8149-
1.8499645000.85981.21430.8220-
1.8528646000.87551.18800.8193-
1.8557647000.82771.24880.8150-
1.8585648000.78521.20870.8176-
1.8614649000.75161.19570.8184-
1.8643650000.87241.16450.8218-
1.8671651000.86191.19450.8202-
1.8700652000.78551.23580.8185-
1.8729653000.80291.25680.8174-
1.8758654000.85531.16230.8147-
1.8786655000.82921.16560.8195-
1.8815656000.89091.17920.8149-
1.8844657000.83111.12530.8240-
1.8872658000.88241.17570.8210-
1.8901659000.70911.22690.8199-
1.8930660000.82991.18510.8183-
1.8958661000.83241.15130.8222-
1.8987662000.81281.11580.8266-
1.9016663000.82091.13280.8272-
1.9044664000.8411.14840.8257-
1.9073665000.80241.12770.8292-
1.9102666000.69541.20630.8264-
1.9130667000.95881.14900.8282-
1.9159668000.71641.18430.8242-
1.9188669000.79991.17060.8223-
1.9216670000.79021.16090.8246-
1.9245671001.1121.15980.8204-
1.9274672000.84951.19760.8231-
1.9302673000.80661.17610.8247-
1.9331674000.85171.18600.8227-
1.9360675000.86081.22040.8223-
1.9389676000.8531.18960.8263-
1.9417677000.73011.23460.8227-
1.9446678000.95431.22820.8208-
1.9475679000.66721.22570.8198-
1.9503680000.77791.21810.8185-
1.9532681000.89321.18960.8205-
1.9561682000.97341.19320.8208-
1.9589683000.84261.17490.8184-
1.9618684000.81071.17170.8135-
1.9647685000.7461.20230.8184-
1.9675686000.87591.24080.8199-
1.9704687000.85261.29740.8087-
1.9733688000.90561.17770.8186-
1.9761689000.71711.20940.8241-
1.9790690000.86141.18170.8208-
1.9819691000.8921.20360.8217-
1.9847692000.90061.19540.8164-
1.9876693000.9431.22700.8179-
1.9905694000.80381.19290.8138-
1.9933695000.84011.19420.8151-
1.9962696000.83151.20950.8118-
1.9991697000.74721.21400.8106-
2.0020698000.6161.28750.8060-
2.0048699000.60891.28290.8149-
2.0077700000.6131.25400.8127-
2.0106701000.52331.24420.8179-
2.0134702000.46881.26490.8157-
2.0163703000.53821.25290.8182-
2.0192704000.55181.24700.8189-
2.0220705000.57151.30010.8145-
2.0249706000.43261.25290.8214-
2.0278707000.54621.26590.8245-
2.0306708000.53281.27710.8205-
2.0335709000.5961.23890.8158-
2.0364710000.44541.28330.8203-
2.0392711000.4841.28100.8168-
2.0421712000.64761.20220.8186-
2.0450713000.52231.23310.8191-
2.0478714000.58841.21150.8212-
2.0507715000.43741.25210.8235-
2.0536716000.56441.25100.8171-
2.0564717000.58141.27710.8197-
2.0593718000.66461.28520.8172-
2.0622719000.51761.33320.8137-
2.0650720000.58471.26540.8234-
2.0679721000.52421.24240.8218-
2.0708722000.51531.27340.8244-
2.0737723000.53641.25270.8245-
2.0765724000.51881.23660.8209-
2.0794725000.68351.19660.8264-
2.0823726000.70231.19770.8204-
2.0851727000.49971.20680.8193-
2.0880728000.55081.22550.8164-
2.0909729000.64491.21800.8168-
2.0937730000.54691.28170.8154-
2.0966731000.68521.20690.8194-
2.0995732000.60241.22990.8177-
2.1023733000.75561.23560.8194-
2.1052734000.51841.19870.8234-
2.1081735000.48211.23170.8264-
2.1109736000.61421.22780.8200-
2.1138737000.56291.22290.8223-
2.1167738000.57971.20170.8254-
2.1195739000.63671.20600.8216-
2.1224740000.54881.21850.8290-
2.1253741000.58091.26750.8209-
2.1281742000.55611.20530.8268-
2.1310743000.45751.17000.8263-
2.1339744000.49681.25220.8250-
2.1368745000.60881.20120.8202-
2.1396746000.55461.19380.8219-
2.1425747000.49691.19040.8206-
2.1454748000.5461.17620.8208-
2.1482749000.60861.19320.8241-
2.1511750000.66651.19630.8151-
2.1540751000.73091.23780.8182-
2.1568752000.46851.24220.8186-
2.1597753000.5371.21920.8191-
2.1626754000.54591.16660.8203-
2.1654755000.51721.18570.8178-
2.1683756000.51161.17470.8189-
2.1712757000.59211.15480.8181-
2.1740758000.62281.15360.8166-
2.1769759000.64331.13510.8166-
2.1798760000.58081.17120.8153-
2.1826761000.56371.14400.8203-
2.1855762000.52351.15970.8141-
2.1884763000.5561.16820.8197-
2.1912764000.4981.15320.8161-
2.1941765000.62881.15690.8205-
2.1970766000.58451.18990.8215-
2.1999767000.39091.19350.8153-
2.2027768000.54461.18200.8174-
2.2056769000.55961.19840.8189-
2.2085770000.53121.18340.8170-
2.2113771000.54321.19060.8116-
2.2142772000.62231.19390.8186-
2.2171773000.58281.25340.8141-
2.2199774000.6311.20650.8166-
2.2228775000.51051.21020.8158-
2.2257776000.52911.23110.8114-
2.2285777000.50581.19340.8140-
2.2314778000.42041.21690.8112-
2.2343779000.61371.18800.8187-
2.2371780000.51861.17080.8142-
2.2400781000.54471.19000.8123-
2.2429782000.58261.22250.8062-
2.2457783000.56341.18030.8157-
2.2486784000.60331.19980.8148-
2.2515785000.56561.17590.8170-
2.2543786000.61421.17160.8189-
2.2572787000.60171.22410.8164-
2.2601788000.50791.23510.8123-
2.2629789000.65911.20690.8082-
2.2658790000.45481.15470.8196-
2.2687791000.5261.14650.8094-
2.2716792000.51381.17120.8096-
2.2744793000.63111.18290.8104-
2.2773794000.53341.20220.8102-
2.2802795000.46671.15470.8104-
2.2830796000.6081.16800.8132-
2.2859797000.45641.17340.8143-
2.2888798000.58251.20380.8133-
2.2916799000.51481.19950.8112-
2.2945800000.56531.21000.8094-
2.2974801000.48341.17680.8161-
2.3002802000.72181.16530.8138-
2.3031803000.52671.19650.8108-
2.3060804000.57541.17800.8156-
2.3088805000.55181.18810.8098-
2.3117806000.47691.21380.8113-
2.3146807000.55861.24230.8134-
2.3174808000.43751.27490.8063-
2.3203809000.70471.17250.8171-
2.3232810000.47931.17640.8198-
2.3260811000.42631.21640.8206-
2.3289812000.42421.24940.8166-
2.3318813000.5991.21970.8156-
2.3347814000.49951.22940.8135-
2.3375815000.49591.23110.8143-
2.3404816000.68841.18750.8172-
2.3433817000.5221.16470.8173-
2.3461818000.49761.19120.8114-
2.3490819000.48831.18180.8186-
2.3519820000.62881.16220.8208-
2.3547821000.50031.21470.8179-
2.3576822000.51091.16960.8179-
2.3605823000.57961.14440.8134-
2.3633824000.48681.20700.8074-
2.3662825000.51731.19900.8107-
2.3691826000.52671.20540.8089-
2.3719827000.54971.19310.8182-
2.3748828000.53741.19690.8201-
2.3777829000.52591.22710.8131-
2.3805830000.50881.22600.8138-
2.3834831000.48041.17880.8200-
2.3863832000.58591.20120.8167-
2.3891833000.47651.19230.8218-
2.3920834000.49881.18710.8215-
2.3949835000.54651.20680.8187-
2.3978836000.57041.17950.8193-
2.4006837000.50131.19690.8187-
2.4035838000.56221.19230.8172-
2.4064839000.44181.21490.8232-
2.4092840000.40721.27210.8203-
2.4121841000.55441.24290.8242-
2.4150842000.55351.23490.8226-
2.4178843000.60491.21010.8209-
2.4207844000.4991.24270.8197-
2.4236845000.48791.24680.8193-
2.4264846000.46371.20850.8237-
2.4293847000.61381.24560.8173-
2.4322848000.47161.22190.8202-
2.4350849000.59111.20720.8168-
2.4379850000.43421.26020.8126-
2.4408851000.45071.25570.8163-
2.4436852000.59891.21350.8119-
2.4465853000.6041.19180.8223-
2.4494854000.51421.25380.8165-
2.4522855000.53281.24160.8144-
2.4551856000.43081.21200.8215-
2.4580857000.57631.21340.8231-
2.4609858000.55561.24870.8193-
2.4637859000.51821.20420.8182-
2.4666860000.62651.18490.8197-
2.4695861000.50121.19360.8180-
2.4723862000.52031.20200.8178-
2.4752863000.56991.19650.8221-
2.4781864000.46011.17850.8269-
2.4809865000.55511.19000.8187-
2.4838866000.64631.15020.8179-
2.4867867000.55641.19730.8146-
2.4895868000.5211.15920.8171-
2.4924869000.51821.16930.8169-
2.4953870000.51041.20010.8150-
2.4981871000.55731.18040.8162-
2.5010872000.5871.19580.8139-
2.5039873000.51961.17360.8177-
2.5067874000.49091.15890.8172-
2.5096875000.6491.16270.8078-
2.5125876000.43211.20240.8134-
2.5153877000.50691.18380.8162-
2.5182878000.49711.17470.8163-
2.5211879000.52271.18140.8195-
2.5239880000.53641.17900.8186-
2.5268881000.51.17310.8224-
2.5297882000.51031.17710.8229-
2.5326883000.55441.22280.8178-
2.5354884000.52451.17770.8206-
2.5383885000.59241.15190.8188-
2.5412886000.52761.15970.8187-
2.5440887000.50381.16430.8222-
2.5469888000.43371.16720.8211-
2.5498889000.45991.17700.8261-
2.5526890000.5471.17680.8253-
2.5555891000.58131.16350.8214-
2.5584892000.60211.18410.8214-
2.5612893000.49411.16520.8210-
2.5641894000.45951.19220.8213-
2.5670895000.58151.17450.8192-
2.5698896000.59661.16880.8236-
2.5727897000.44071.21010.8216-
2.5756898000.51661.17540.8211-
2.5784899000.45141.19000.8195-
2.5813900000.47951.17730.8215-
2.5842901000.51531.17810.8233-
2.5870902000.53121.16210.8213-
2.5899903000.51061.15440.8200-
2.5928904000.47461.15240.8188-
2.5957905000.51961.15740.8204-
2.5985906000.41561.18380.8192-
2.6014907000.48351.14270.8253-
2.6043908000.47021.16220.8244-
2.6071909000.54461.17650.8224-
2.6100910000.62541.13000.8243-
2.6129911000.44911.16710.8259-
2.6157912000.54671.15450.8206-
2.6186913000.62571.13050.8252-
2.6215914000.40811.17010.8172-
2.6243915000.56911.13200.8213-
2.6272916000.56741.13400.8225-
2.6301917000.54181.12020.8249-
2.6329918000.48761.12310.8222-
2.6358919000.56271.12560.8225-
2.6387920000.51821.16900.8187-
2.6415921000.48661.21640.8174-
2.6444922000.4981.20320.8176-
2.6473923000.52741.16250.8221-
2.6501924000.50321.19170.8188-
2.6530925000.49081.13770.8162-
2.6559926000.4481.15800.8195-
2.6588927000.4891.14090.8185-
2.6616928000.49421.15230.8185-
2.6645929000.51181.21760.8170-
2.6674930000.5411.15000.8189-
2.6702931000.48031.14790.8168-
2.6731932000.46411.14110.8168-
2.6760933000.52141.13750.8140-
2.6788934000.49311.12120.8207-
2.6817935000.51791.17280.8189-
2.6846936000.50711.15830.8181-
2.6874937000.45381.19670.8153-
2.6903938000.6021.18360.8177-
2.6932939000.49331.15250.8167-
2.6960940000.49321.17570.8103-
2.6989941000.48461.17490.8150-
2.7018942000.55611.18550.8147-
2.7046943000.53921.17660.8168-
2.7075944000.55581.18830.8175-
2.7104945000.41831.19490.8183-
2.7132946000.58371.18940.8166-
2.7161947000.49591.18040.8181-
2.7190948000.5811.17080.8158-
2.7218949000.50461.14800.8169-
2.7247950000.52851.18650.8157-
2.7276951000.55991.17700.8139-
2.7305952000.53081.18850.8161-
2.7333953000.43791.18550.8183-
2.7362954000.55021.15040.8183-
2.7391955000.51781.15900.8113-
2.7419956000.51171.14200.8139-
2.7448957000.47461.17490.8111-
2.7477958000.4231.14330.8178-
2.7505959000.43891.18670.8175-
2.7534960000.51581.13020.8162-
2.7563961000.50311.15700.8179-
2.7591962000.42551.16090.8236-
2.7620963000.51261.12990.8212-
2.7649964000.48531.12360.8206-
2.7677965000.37761.17160.8201-
2.7706966000.54261.14020.8216-
2.7735967000.41571.18810.8172-
2.7763968000.52061.16440.8141-
2.7792969000.48821.15430.8170-
2.7821970000.45861.14990.8152-
2.7849971000.61111.16750.8196-
2.7878972000.50071.13000.8194-
2.7907973000.50111.14220.8236-
2.7936974000.45641.14090.8193-
2.7964975000.48551.11390.8205-
2.7993976000.42761.13260.8213-
2.8022977000.4821.13720.8214-
2.8050978000.41381.14810.8164-
2.8079979000.54951.10440.8172-
2.8108980000.4461.12260.8158-
2.8136981000.45781.13810.8109-
2.8165982000.50921.13410.8134-
2.8194983000.50811.16880.8109-
2.8222984000.46571.13230.8162-
2.8251985000.44971.14490.8146-
2.8280986000.56671.15640.8171-
2.8308987000.3631.13410.8189-
2.8337988000.48361.11970.8200-
2.8366989000.46611.16040.8176-
2.8394990000.52661.16240.8112-
2.8423991000.46881.16320.8158-
2.8452992000.43721.14360.8212-
2.8480993000.43181.17630.8188-
2.8509994000.48731.18530.8194-
2.8538995000.44051.15210.8211-
2.8567996000.5261.17590.8243-
2.8595997000.41881.14910.8180-
2.8624998000.38761.14450.8165-
2.8653999000.62911.13050.8193-
2.86811000000.52521.14390.8160-
2.87101001000.42441.13380.8119-
2.87391002000.47451.16560.8111-
2.87671003000.65821.15860.8119-
2.87961004000.47051.13070.8146-
2.88251005000.44551.11320.8180-
2.88531006000.45321.14860.8173-
2.88821007000.50611.11920.8159-
2.89111008000.58271.13160.8156-
2.89391009000.40041.13180.8157-
2.89681010000.47621.12190.8151-
2.89971011000.5251.16510.8123-
2.90251012000.37941.15020.8126-
2.90541013000.56271.12930.8161-
2.90831014000.50971.12340.8199-
2.91111015000.4191.16400.8202-
2.91401016000.53921.11230.8226-
2.91691017000.51041.12890.8208-
2.91971018000.57471.08160.8233-
2.92261019000.61271.10940.8246-
2.92551020000.51651.07880.8245-
2.92841021000.47471.09430.8254-
2.93121022000.51641.08810.8261-
2.93411023000.31321.11480.8279-
2.93701024000.47021.12520.8264-
2.93981025000.46571.07130.8288-
2.94271026000.53681.10440.8251-
2.94561027000.44541.10850.8222-
2.94841028000.45581.09940.8245-
2.95131029000.57021.08410.8304-
2.95421030000.47721.11050.8259-
2.95701031000.37761.15200.8226-
2.95991032000.42131.10240.8244-
2.96281033000.50121.11060.8196-
2.96561034000.48961.11600.8232-
2.96851035000.48721.12620.8228-
2.97141036000.51261.14660.8219-
2.97421037000.43251.17860.8226-
2.97711038000.50091.17060.8226-
2.98001039000.57811.12930.8280-
2.98281040000.4361.14910.8264-
2.98571041000.53761.13280.8278-
2.98861042000.59891.10550.8278-
2.99151043000.43681.09670.8246-
2.99431044000.37431.13110.8239-
2.99721045000.41081.14700.8245-
3.00011046000.55171.13630.8248-
3.00291047000.33251.15900.8239-
3.00581048000.38521.21200.8219-
3.00871049000.32341.16420.8244-
3.01151050000.3071.20120.8229-
3.01441051000.35551.16130.8270-
3.01731052000.29411.17670.8251-
3.02011053000.31211.16800.8220-
3.02301054000.30211.22200.8155-
3.02591055000.30541.15990.8184-
3.02871056000.31811.14910.8210-
3.03161057000.32621.20570.8180-
3.03451058000.37471.16490.8226-
3.03731059000.39071.18150.8237-
3.04021060000.3311.16000.8196-
3.04311061000.35191.17650.8208-
3.04591062000.34661.15580.8232-
3.04881063000.35321.13020.8250-
3.05171064000.37221.17510.8186-
3.05461065000.32151.15340.8158-
3.05741066000.22961.16290.8198-
3.06031067000.32471.16750.8232-
3.06321068000.33241.14720.8216-
3.06601069000.32831.17070.8198-
3.06891070000.3151.14270.8244-
3.07181071000.39881.16330.8247-
3.07461072000.27151.18560.8194-
3.07751073000.36121.16960.8192-
3.08041074000.28091.16780.8204-
3.08321075000.48921.17030.8229-
3.08611076000.23721.17640.8228-
3.08901077000.29391.16870.8230-
3.09181078000.41011.19840.8202-
3.09471079000.27491.20770.8210-
3.09761080000.29511.18690.8228-
3.10041081000.34551.22210.8227-
3.10331082000.37261.22290.8182-
3.10621083000.42421.18400.8187-
3.10901084000.28011.19690.8221-
3.11191085000.34891.13560.8214-
3.11481086000.3121.19480.8187-
3.11771087000.30891.24300.8162-
3.12051088000.28821.19390.8198-
3.12341089000.29121.20560.8138-
3.12631090000.36591.18040.8181-
3.12911091000.36761.16250.8208-
3.13201092000.30951.16890.8246-
3.13491093000.32541.19310.8234-
3.13771094000.34311.20790.8262-
3.14061095000.30421.20880.8234-
3.14351096000.40421.18250.8242-
3.14631097000.25421.22690.8176-
3.14921098000.30071.18880.8198-
3.15211099000.35731.17500.8194-
3.15491100000.29491.14910.8215-
3.15781101000.44191.15820.8223-
3.16071102000.33821.18500.8224-
3.16351103000.31911.18430.8254-
3.16641104000.36311.15760.8228-
3.16931105000.38031.16870.8202-
3.17211106000.33191.17660.8190-
3.17501107000.29611.17610.8174-
3.17791108000.33511.18420.8180-
3.18071109000.26381.16080.8197-
3.18361110000.30511.21690.8171-
3.18651111000.32611.17850.8161-
3.18941112000.32511.16210.8183-
3.19221113000.23051.16680.8187-
3.19511114000.32521.17930.8189-
3.19801115000.32731.17400.8236-
3.20081116000.35261.19010.8221-
3.20371117000.33111.23080.8211-
3.20661118000.30581.18500.8226-
3.20941119000.26071.17510.8230-
3.21231120000.32631.19250.8229-
3.21521121000.32321.20950.8188-
3.21801122000.31981.20670.8204-
3.22091123000.27651.16790.8193-
3.22381124000.34231.18920.8188-
3.22661125000.35771.21500.8179-
3.22951126000.39611.18270.8188-
3.23241127000.35611.19700.8141-
3.23521128000.3051.22180.8156-
3.23811129000.32351.24280.8187-
3.24101130000.29031.21750.8198-
3.24381131000.31661.18960.8181-
3.24671132000.24691.18670.8180-
3.24961133000.24291.22010.8199-
3.25251134000.33431.21200.8167-
3.25531135000.281.23570.8179-
3.25821136000.35551.20550.8176-
3.26111137000.33331.24310.8182-
3.26391138000.35821.18720.8178-
3.26681139000.29091.19090.8231-
3.26971140000.33631.18280.8206-
3.27251141000.20611.21700.8149-
3.27541142000.28251.20380.8215-
3.27831143000.33331.22200.8162-
3.28111144000.24931.24770.8177-
3.28401145000.33931.20620.8185-
3.28691146000.27321.24540.8160-
3.28971147000.35141.20970.8157-
3.29261148000.32961.20000.8164-
3.29551149000.36221.19950.8150-
3.29831150000.29961.19800.8152-
3.30121151000.26871.17660.8171-
3.30411152000.3181.18960.8172-
3.30691153000.32751.17490.8188-
3.30981154000.29461.18580.8180-
3.31271155000.37041.19010.8161-
3.31561156000.31331.16150.8162-
3.31841157000.28431.17760.8167-
3.32131158000.28291.13560.8199-
3.32421159000.33851.18740.8147-
3.32701160000.30221.18030.8153-
3.32991161000.28061.20120.8174-
3.33281162000.29961.20490.8187-
3.33561163000.37251.18750.8168-
3.33851164000.31981.19790.8147-
3.34141165000.29211.18960.8152-
3.34421166000.31091.16740.8151-
3.34711167000.28971.18800.8163-
3.35001168000.41251.18920.8139-
3.35281169000.21131.16810.8173-
3.35571170000.32751.15660.8169-
3.35861171000.20481.18700.8177-
3.36141172000.34041.16450.8192-
3.36431173000.28931.17040.8200-
3.36721174000.3511.15300.8198-
3.37001175000.35941.15780.8193-
3.37291176000.25811.15800.8181-
3.37581177000.25341.18710.8176-
3.37861178000.30191.17520.8190-
3.38151179000.33981.16730.8187-
3.38441180000.28491.19770.8172-
3.38731181000.3261.20200.8195-
3.39011182000.2951.20280.8162-
3.39301183000.40541.15790.8200-
3.39591184000.31821.18960.8159-
3.39871185000.35361.17030.8157-
3.40161186000.29721.20300.8175-
3.40451187000.30441.22480.8135-
3.40731188000.38521.18380.8172-
3.41021189000.25931.23660.8179-
3.41311190000.37941.21350.8187-
3.41591191000.24851.19010.8185-
3.41881192000.38461.18120.8165-
3.42171193000.3171.19670.8152-
3.42451194000.33681.16410.8185-
3.42741195000.28781.19060.8163-
3.43031196000.25971.15030.8169-
3.43311197000.3791.17590.8153-
3.43601198000.24611.17310.8142-
3.43891199000.25681.16560.8216-
3.44171200000.31851.15700.8162-
3.44461201000.36741.17520.8176-
3.44751202000.32121.15220.8198-
3.45041203000.35281.12750.8215-
3.45321204000.2831.16120.8190-
3.45611205000.31671.17110.8175-
3.45901206000.25481.16290.8154-
3.46181207000.33021.16500.8160-
3.46471208000.29511.17890.8158-
3.46761209000.31741.17100.8135-
3.47041210000.30911.17100.8129-
3.47331211000.26321.17760.8130-
3.47621212000.24961.17920.8150-
3.47901213000.32361.14310.8182-
3.48191214000.33841.20030.8150-
3.48481215000.39961.14240.8200-
3.48761216000.36941.13100.8207-
3.49051217000.35081.14710.8196-
3.49341218000.27361.14290.8146-
3.49621219000.26271.14140.8180-
3.49911220000.36851.15050.8157-
3.50201221000.33751.13780.8211-
3.50481222000.24281.16270.8198-
3.50771223000.29611.14720.8191-
3.51061224000.28181.16100.8211-
3.51351225000.31381.14200.8190-
3.51631226000.3851.18210.8143-
3.51921227000.35371.13340.8204-
3.52211228000.20771.16140.8196-
3.52491229000.26491.15670.8203-
3.52781230000.33361.16800.8209-
3.53071231000.2661.13440.8216-
3.53351232000.31651.13480.8207-
3.53641233000.3861.12970.8227-
3.53931234000.29671.15020.8239-
3.54211235000.29031.15690.8245-
3.54501236000.29071.17470.8209-
3.54791237000.38591.13620.8225-
3.55071238000.34471.13900.8235-
3.55361239000.34691.14070.8225-
3.55651240000.27591.17690.8211-
3.55931241000.3241.16170.8219-
3.56221242000.38651.14530.8209-
3.56511243000.3161.15910.8203-
3.56791244000.40261.13930.8233-
3.57081245000.2511.14560.8245-
3.57371246000.24261.15590.8198-
3.57661247000.30571.13580.8230-
3.57941248000.32491.16700.8201-
3.58231249000.32521.15810.8222-
3.58521250000.34681.17570.8206-
3.58801251000.26051.15340.8216-
3.59091252000.32391.16770.8213-
3.59381253000.29741.14410.8213-
3.59661254000.24261.14150.8198-
3.59951255000.25751.14710.8223-
3.60241256000.29611.14400.8206-
3.60521257000.27611.12940.8229-
3.60811258000.36671.16670.8223-
3.61101259000.35021.14190.8214-
3.61381260000.27811.14540.8214-
3.61671261000.25891.16780.8199-
3.61961262000.34071.16870.8188-
3.62241263000.36731.12560.8216-
3.62531264000.26381.14010.8171-
3.62821265000.35771.13020.8195-
3.63101266000.30041.13100.8183-
3.63391267000.23351.12910.8210-
3.63681268000.35651.14440.8196-
3.63961269000.34011.13650.8208-
3.64251270000.3281.13870.8191-
3.64541271000.23861.12480.8239-
3.64831272000.29231.12520.8208-
3.65111273000.31471.10950.8220-
3.65401274000.24551.13410.8210-
3.65691275000.26441.15450.8196-
3.65971276000.26151.10910.8224-
3.66261277000.23881.10480.8252-
3.66551278000.31831.13130.8197-
3.66831279000.36341.11990.8206-
3.67121280000.3491.11340.8217-
3.67411281000.30591.12980.8211-
3.67691282000.33681.13010.8230-
3.67981283000.30961.12170.8202-
3.68271284000.27471.11610.8242-
3.68551285000.34171.12080.8233-
3.68841286000.30281.12310.8193-
3.69131287000.29791.13320.8213-
3.69411288000.2881.12490.8235-
3.69701289000.30081.12160.8224-
3.69991290000.2291.14400.8220-
3.70271291000.24861.11600.8247-
3.70561292000.23681.11350.8251-
3.70851293000.27471.12550.8234-
3.71141294000.40851.11830.8225-
3.71421295000.26491.13760.8212-
3.71711296000.29911.15280.8186-
3.72001297000.32111.17510.8180-
3.72281298000.31961.14400.8223-
3.72571299000.29121.12430.8239-
3.72861300000.29811.09450.8248-
3.73141301000.31361.13560.8220-
3.73431302000.27231.13950.8219-
3.73721303000.2611.13100.8216-
3.74001304000.31031.11940.8234-
3.74291305000.27421.15650.8215-
3.74581306000.31881.13960.8236-
3.74861307000.33461.12790.8241-
3.75151308000.27321.12200.8227-
3.75441309000.29661.12420.8242-
3.75721310000.31651.15030.8222-
3.76011311000.21761.12810.8223-
3.76301312000.27951.10740.8267-
3.76581313000.31671.09960.8273-
3.76871314000.27781.11330.8264-
3.77161315000.29671.12860.8258-
3.77451316000.32711.08650.8256-
3.77731317000.33721.11300.8230-
3.78021318000.23411.13150.8239-
3.78311319000.29551.13400.8204-
3.78591320000.32671.12300.8218-
3.78881321000.30121.14770.8184-
3.79171322000.33941.16500.8186-
3.79451323000.30811.14060.8198-
3.79741324000.3031.12180.8226-
3.80031325000.32371.15910.8202-
3.80311326000.27261.14250.8204-
3.80601327000.26321.10600.8212-
3.80891328000.26691.09640.8206-
3.81171329000.31011.07810.8226-
3.81461330000.24961.08730.8240-
3.81751331000.2691.09810.8235-
3.82031332000.27031.11190.8244-
3.82321333000.33371.10760.8257-
3.82611334000.36861.11700.8252-
3.82891335000.22981.13810.8244-
3.83181336000.29841.12360.8256-
3.83471337000.32981.13430.8261-
3.83751338000.28041.14720.8263-
3.84041339000.27121.10640.8291-
3.84331340000.29211.12170.8263-
3.84621341000.16011.12530.8232-
3.84901342000.29861.10630.8221-
3.85191343000.37041.12730.8233-
3.85481344000.25631.13980.8257-
3.85761345000.28181.12030.8252-
3.86051346000.27331.13160.8249-
3.86341347000.22881.13520.8252-
3.86621348000.35291.12980.8263-
3.86911349000.2651.13210.8269-
3.87201350000.30891.11380.8272-
3.87481351000.34811.12120.8266-
3.87771352000.30281.11510.8282-
3.88061353000.28051.11850.8259-
3.88341354000.32051.12600.8261-
3.88631355000.32151.12630.8265-
3.88921356000.32251.10270.8261-
3.89201357000.2981.09140.8242-
3.89491358000.22341.09920.8228-
3.89781359000.27861.11170.8230-
3.90061360000.2941.12030.8184-
3.90351361000.30591.10970.8184-
3.90641362000.30011.10250.8210-
3.90931363000.17961.13720.8174-
3.91211364000.23421.10270.8187-
3.91501365000.29031.09800.8211-
3.91791366000.29851.09780.8202-
3.92071367000.24491.09670.8209-
3.92361368000.28261.09440.8204-
3.92651369000.261.08010.8243-
3.92931370000.28041.08920.8237-
3.93221371000.26631.09100.8217-
3.93511372000.32991.08970.8205-
3.93791373000.28721.09270.8209-
3.94081374000.34561.08810.8229-
3.94371375000.29051.08940.8227-
3.94651376000.24871.09110.8246-
3.94941377000.24651.10180.8224-
3.95231378000.31791.10510.8249-
3.95511379000.24091.09370.8265-
3.95801380000.27451.10670.8264-
3.96091381000.31661.08210.8245-
3.96371382000.28141.10180.8239-
3.96661383000.31781.08470.8231-
3.96951384000.28571.09310.8264-
3.97241385000.20421.08300.8281-
3.97521386000.2671.09480.8254-
3.97811387000.24951.08690.8258-
3.98101388000.23811.07200.8287-
3.98381389000.27551.08070.8284-
3.98671390000.29571.07950.8272-
3.98961391000.32761.09730.8263-
3.99241392000.2931.09920.8258-
3.99531393000.30521.08750.8239-
3.99821394000.22681.07900.8236-
4.00101395000.30041.10060.8234-
4.00391396000.23541.09740.8228-
4.00681397000.20511.10600.8246-
4.00961398000.19661.12690.8244-
4.01251399000.34471.11960.8248-
4.01541400000.21281.14170.8228-
4.01821401000.18591.12550.8234-
4.02111402000.19711.12360.8242-
4.02401403000.19871.14030.8235-
4.02681404000.16651.14760.8241-
4.02971405000.31661.13690.8254-
4.03261406000.21191.13820.8249-
4.03551407000.16881.15550.8251-
4.03831408000.17631.14840.8262-
4.04121409000.25531.13560.8260-
4.04411410000.1931.12370.8270-
4.04691411000.1571.13600.8266-
4.04981412000.21081.13390.8240-
4.05271413000.22831.15050.8236-
4.05551414000.21361.14180.8223-
4.05841415000.17911.12890.8227-
4.06131416000.18261.13180.8240-
4.06411417000.17021.14570.8254-
4.06701418000.27331.13850.8255-
4.06991419000.15451.16610.8248-
4.07271420000.33191.15120.8266-
4.07561421000.23671.15510.8276-
4.07851422000.21571.14520.8287-
4.08131423000.18351.14180.8277-
4.08421424000.18761.13080.8275-
4.08711425000.16671.11430.8258-
4.08991426000.19871.11010.8272-
4.09281427000.24551.10340.8260-
4.09571428000.18021.10790.8257-
4.09851429000.17541.12200.8250-
4.10141430000.2021.12690.8231-
4.10431431000.18591.12300.8217-
4.10721432000.19561.12210.8227-
4.11001433000.16821.13520.8238-
4.11291434000.24781.13130.8224-
4.11581435000.14871.13610.8217-
4.11861436000.20751.12330.8217-
4.12151437000.20621.13060.8219-
4.12441438000.19061.10740.8221-
4.12721439000.18031.10720.8220-
4.13011440000.22641.12580.8212-
4.13301441000.18591.14360.8205-
4.13581442000.21281.14280.8220-
4.13871443000.25971.12840.8225-
4.14161444000.2281.13470.8224-
4.14441445000.2491.13420.8231-
4.14731446000.27421.12880.8224-
4.15021447000.21671.15290.8222-
4.15301448000.19821.14390.8234-
4.15591449000.1611.13880.8230-
4.15881450000.21011.16180.8216-
4.16161451000.27551.15430.8233-
4.16451452000.13951.13510.8250-
4.16741453000.21961.13100.8255-
4.17031454000.25291.10850.8255-
4.17311455000.16211.12170.8260-
4.17601456000.1661.12620.8250-
4.17891457000.19351.12600.8236-
4.18171458000.16671.12890.8231-
4.18461459000.21831.14050.8238-
4.18751460000.20441.12240.8226-
4.19031461000.19081.12250.8221-
4.19321462000.19981.11980.8246-
4.19611463000.18951.13200.8232-
4.19891464000.26511.15250.8209-
4.20181465000.20091.13660.8235-
4.20471466000.14681.13340.8237-
4.20751467000.19291.15390.8228-
4.21041468000.16261.14300.8237-
4.21331469000.18321.14240.8243-
4.21611470000.14731.14900.8252-
4.21901471000.20871.14740.8234-
4.22191472000.14551.13200.8246-
4.22471473000.23151.12870.8231-
4.22761474000.22621.12110.8229-
4.23051475000.22461.15260.8191-
4.23341476000.14991.12300.8225-
4.23621477000.19731.12070.8219-
4.23911478000.20731.13450.8208-
4.24201479000.18521.13760.8210-
4.24481480000.13771.13790.8213-
4.24771481000.23331.13380.8206-
4.25061482000.1841.13030.8217-
4.25341483000.13371.14380.8207-
4.25631484000.12411.14330.8195-
4.25921485000.19311.14750.8203-
4.26201486000.13891.14290.8204-
4.26491487000.18571.13960.8213-
4.26781488000.21091.13130.8217-
4.27061489000.23941.14610.8218-
4.27351490000.18461.13900.8212-
4.27641491000.19471.14500.8213-
4.27921492000.15951.14200.8203-
4.28211493000.16081.14270.8208-
4.28501494000.12641.14670.8221-
4.28781495000.25491.12940.8212-
4.29071496000.16281.12020.8224-
4.29361497000.18821.13540.8210-
4.29641498000.20031.12940.8216-
4.29931499000.14171.13790.8210-
4.30221500000.22441.12370.8213-
4.30511501000.22651.13360.8199-
4.30791502000.25181.13450.8196-
4.31081503000.15451.14590.8174-
4.31371504000.20521.13280.8206-
4.31651505000.22891.11570.8215-
4.31941506000.1581.14550.8208-
4.32231507000.19181.13200.8221-
4.32511508000.15771.13440.8200-
4.32801509000.21671.13740.8204-
4.33091510000.1661.15570.8191-
4.33371511000.24781.14650.8189-
4.33661512000.22871.14850.8198-
4.33951513000.25631.15200.8211-
4.34231514000.22221.14260.8213-
4.34521515000.18121.15160.8192-
4.34811516000.19681.15030.8199-
4.35091517000.20571.16850.8180-
4.35381518000.2251.15050.8182-
4.35671519000.19791.13640.8193-
4.35951520000.1691.15810.8194-
4.36241521000.20281.14830.8194-
4.36531522000.24791.14060.8207-
4.36821523000.15821.12830.8210-
4.37101524000.19981.13380.8193-
4.37391525000.261.14780.8194-
4.37681526000.24821.14180.8196-
4.37961527000.21691.14720.8194-
4.38251528000.21771.15070.8189-
4.38541529000.24531.15610.8181-
4.38821530000.1921.16710.8177-
4.39111531000.19571.16710.8185-
4.39401532000.18541.15720.8171-
4.39681533000.18871.16860.8158-
4.39971534000.18771.15140.8175-
4.40261535000.15831.16150.8181-
4.40541536000.16051.16850.8186-
4.40831537000.19911.15910.8181-
4.41121538000.20051.16450.8180-
4.41401539000.17751.16550.8183-
4.41691540000.18191.15490.8199-
4.41981541000.15121.15790.8194-
4.42261542000.25711.15150.8207-
4.42551543000.16511.15990.8185-
4.42841544000.221.15250.8193-
4.43131545000.1851.15210.8181-
4.43411546000.14071.15100.8189-
4.43701547000.17981.15310.8183-
4.43991548000.21091.15730.8181-
4.44271549000.23361.14820.8195-
4.44561550000.17791.14180.8202-
4.44851551000.1481.15110.8209-
4.45131552000.22041.14700.8212-
4.45421553000.23641.13910.8211-
4.45711554000.24041.15170.8204-
4.45991555000.1661.15760.8193-
4.46281556000.16971.16130.8192-
4.46571557000.19971.14600.8203-
4.46851558000.21231.15540.8190-
4.47141559000.22721.16540.8179-
4.47431560000.19981.15660.8187-
4.47711561000.19911.14880.8187-
4.48001562000.12791.15590.8179-
4.48291563000.23341.14030.8184-
4.48571564000.1981.13380.8201-
4.48861565000.22741.13810.8203-
4.49151566000.18751.14620.8198-
4.49431567000.22461.14910.8194-
4.49721568000.19551.14540.8200-
4.50011569000.21911.14580.8213-
4.50301570000.14421.14960.8217-
4.50581571000.16381.15460.8218-
4.50871572000.22931.16750.8202-
4.51161573000.14811.15970.8210-
4.51441574000.16541.16700.8211-
4.51731575000.28381.17240.8209-
4.52021576000.17461.17570.8207-
4.52301577000.17671.17790.8196-
4.52591578000.19311.17780.8199-
4.52881579000.11761.17040.8192-
4.53161580000.19711.15920.8193-
4.53451581000.19851.17190.8188-
4.53741582000.17441.16350.8193-
4.54021583000.30291.15710.8205-
4.54311584000.18361.15080.8204-
4.54601585000.1581.14080.8209-
4.54881586000.19461.14870.8209-
4.55171587000.18461.15850.8203-
4.55461588000.17271.14920.8204-
4.55741589000.22921.14860.8211-
4.56031590000.25371.14570.8221-
4.56321591000.18011.14880.8219-
4.56611592000.20051.15930.8217-
4.56891593000.17191.15450.8218-
4.57181594000.25761.15810.8215-
4.57471595000.23251.15700.8205-
4.57751596000.18861.15370.8203-
4.58041597000.19751.14720.8212-
4.58331598000.19841.15380.8212-
4.58611599000.21831.15210.8213-
4.58901600000.15231.14530.8211-
4.59191601000.20521.14870.8216-
4.59471602000.22321.14100.8219-
4.59761603000.17571.14120.8220-
4.60051604000.15911.14420.8219-
4.60331605000.21391.14120.8215-
4.60621606000.14381.13920.8214-
4.60911607000.16011.14170.8210-
4.61191608000.19381.14560.8212-
4.61481609000.17541.14960.8207-
4.61771610000.17791.15210.8210-
4.62051611000.14291.15010.8204-
4.62341612000.2251.13830.8205-
4.62631613000.18981.15010.8193-
4.62921614000.24631.15300.8190-
4.63201615000.2041.15050.8192-
4.63491616000.20581.14520.8187-
4.63781617000.22131.14910.8183-
4.64061618000.1851.15760.8177-
4.64351619000.15961.14760.8188-
4.64641620000.13751.15140.8190-
4.64921621000.16021.15050.8185-
4.65211622000.19061.15090.8186-
4.65501623000.25321.15920.8183-
4.65781624000.19761.16160.8182-
4.66071625000.30491.15920.8176-
4.66361626000.11541.15360.8176-
4.66641627000.12971.16410.8172-
4.66931628000.25011.16420.8171-
4.67221629000.16511.17040.8178-
4.67501630000.23961.16170.8174-
4.67791631000.13581.15990.8175-
4.68081632000.15411.15540.8175-
4.68361633000.17961.15140.8178-
4.68651634000.16751.15470.8180-
4.68941635000.17761.14990.8186-
4.69231636000.21231.14620.8186-
4.69511637000.23661.14280.8191-
4.69801638000.15331.13820.8195-
4.70091639000.25131.13680.8189-
4.70371640000.18051.14030.8192-
4.70661641000.2061.13600.8196-
4.70951642000.14971.13880.8196-
4.71231643000.15621.14030.8192-
4.71521644000.22691.14440.8200-
4.71811645000.17621.14400.8197-
4.72091646000.18121.13560.8199-
4.72381647000.1851.13620.8201-
4.72671648000.2051.13470.8207-
4.72951649000.17531.14150.8203-
4.73241650000.15191.13640.8207-
4.73531651000.11661.13780.8205-
4.73811652000.15961.13370.8205-
4.74101653000.19061.12860.8209-
4.74391654000.26231.12800.8206-
4.74671655000.19611.13310.8209-
4.74961656000.15941.13560.8210-
4.75251657000.19671.14070.8210-
4.75531658000.16641.13410.8213-
4.75821659000.14761.13580.8212-
4.76111660000.13561.13880.8208-
4.76401661000.11161.14260.8209-
4.76681662000.22691.13930.8204-
4.76971663000.2241.13920.8204-
4.77261664000.17171.13690.8206-
4.77541665000.28281.14030.8205-
4.77831666000.16161.13440.8210-
4.78121667000.24851.12930.8209-
4.78401668000.19561.13390.8208-
4.78691669000.1041.13560.8203-
4.78981670000.17291.13780.8202-
4.79261671000.17061.13110.8209-
4.79551672000.14041.13460.8205-
4.79841673000.22541.13800.8204-
4.80121674000.28231.13100.8209-
4.80411675000.16661.13090.8211-
4.80701676000.15951.12900.8218-
4.80981677000.20091.12420.8216-
4.81271678000.1731.12770.8213-
4.81561679000.16481.13610.8205-
4.81841680000.23751.13390.8209-
4.82131681000.2571.13600.8208-
4.82421682000.13091.13830.8209-
4.82711683000.19311.13510.8212-
4.82991684000.21851.13450.8215-
4.83281685000.2151.13530.8211-
4.83571686000.20881.13360.8211-
4.83851687000.14531.13230.8214-
4.84141688000.21471.13650.8210-
4.84431689000.23371.13640.8207-
4.84711690000.1931.13900.8207-
4.85001691000.18061.13690.8207-
4.85291692000.21151.13490.8210-
4.85571693000.20981.13320.8211-
4.85861694000.24031.12690.8213-
4.86151695000.20531.12920.8209-
4.86431696000.1571.12990.8209-
4.86721697000.17181.12700.8214-
4.87011698000.14241.12650.8215-
4.87291699000.15671.12800.8215-
4.87581700000.17251.13130.8212-
4.87871701000.17511.12680.8213-
4.88151702000.17621.13210.8212-
4.88441703000.15471.13690.8214-
4.88731704000.1891.13750.8212-
4.89021705000.20161.13730.8215-
4.89301706000.21171.13820.8216-
4.89591707000.24321.13500.8212-
4.89881708000.17921.13170.8212-
4.90161709000.19691.13040.8213-
4.90451710000.15391.12840.8212-
4.90741711000.19951.12920.8208-
4.91021712000.20831.13080.8208-
4.91311713000.14931.13220.8209-
4.91601714000.21941.13030.8210-
4.91881715000.18371.12900.8210-
4.92171716000.17221.13120.8208-
4.92461717000.17951.13120.8207-
4.92741718000.12071.13210.8206-
4.93031719000.22551.13290.8205-
4.93321720000.15951.13270.8206-
4.93601721000.20321.13380.8206-
4.93891722000.14561.13230.8209-
4.94181723000.19791.13100.8210-
4.94461724000.17741.13020.8211-
4.94751725000.21141.13030.8211-
4.95041726000.20941.12940.8211-
4.95321727000.19441.12810.8213-
4.95611728000.17941.12740.8215-
4.95901729000.1181.12680.8217-
4.96191730000.1631.12710.8217-
4.96471731000.17951.12760.8215-
4.96761732000.1911.12730.8215-
4.97051733000.16241.12810.8215-
4.97331734000.18281.12840.8216-
4.97621735000.18631.12870.8216-
4.97911736000.17091.12930.8215-
4.98191737000.14551.12930.8215-
4.98481738000.16151.12940.8215-
4.98771739000.27591.12930.8215-
4.99051740000.17911.12900.8215-
4.99341741000.15621.12900.8215-
4.99631742000.18491.12910.8215-
4.99911743000.19991.12910.8215-
-1-1---0.8007

</details>

Framework Versions

  • —Python: 3.13.0
  • —Sentence Transformers: 5.1.2
  • —Transformers: 4.57.1
  • —PyTorch: 2.9.1+cu128
  • —Accelerate: 1.11.0
  • —Datasets: 4.4.1
  • —Tokenizers: 0.22.1

Citation

BibTeX

Sentence Transformers
bibtex
@inproceedings{reimers-2019-sentence-bert,
    title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
    author = "Reimers, Nils and Gurevych, Iryna",
    booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
    month = "11",
    year = "2019",
    publisher = "Association for Computational Linguistics",
    url = "https://arxiv.org/abs/1908.10084",
}
MatryoshkaLoss
bibtex
@misc{kusupati2024matryoshka,
    title={Matryoshka Representation Learning},
    author={Aditya Kusupati and Gantavya Bhatt and Aniket Rege and Matthew Wallingford and Aditya Sinha and Vivek Ramanujan and William Howard-Snyder and Kaifeng Chen and Sham Kakade and Prateek Jain and Ali Farhadi},
    year={2024},
    eprint={2205.13147},
    archivePrefix={arXiv},
    primaryClass={cs.LG}
}
MultipleNegativesRankingLoss
bibtex
@misc{henderson2017efficient,
    title={Efficient Natural Language Response Suggestion for Smart Reply},
    author={Matthew Henderson and Rami Al-Rfou and Brian Strope and Yun-hsuan Sung and Laszlo Lukacs and Ruiqi Guo and Sanjiv Kumar and Balint Miklos and Ray Kurzweil},
    year={2017},
    eprint={1705.00652},
    archivePrefix={arXiv},
    primaryClass={cs.CL}
}

<!--

Glossary

Clearly define terms in order to be accessible across audiences. -->

<!--

Model Card Authors

Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction. -->

<!--

Model Card Contact

Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors. -->