Add TeXformer checkpoint, tokenizer, and model card
Browse files- README.md +87 -0
- model.pt +3 -0
- tokenizer/latex_commands.json +2013 -0
- tokenizer/latex_tokenizer.json +0 -0
- tokenizer/pdf_tags.json +1200 -0
- tokenizer/pdf_tokenizer.json +0 -0
README.md
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- texformer
|
| 4 |
+
- ocr
|
| 5 |
+
- latex
|
| 6 |
+
- seq2seq
|
| 7 |
+
- pytorch
|
| 8 |
+
library_name: pytorch
|
| 9 |
+
pipeline_tag: text2text-generation
|
| 10 |
+
---
|
| 11 |
+
# texformer-576m-fp16
|
| 12 |
+
|
| 13 |
+
This repository contains a **TeXformer 576m checkpoint** in **fp16** precision for OCR-to-LaTeX generation.
|
| 14 |
+
|
| 15 |
+
This is a custom TeXformer architecture checkpoint (`model.pt`) plus tokenizer assets.
|
| 16 |
+
It is not a standard `transformers` `AutoModel` checkpoint.
|
| 17 |
+
This export is derived from a checkpoint trained in **bf16**.
|
| 18 |
+
|
| 19 |
+
## Files
|
| 20 |
+
|
| 21 |
+
- `model.pt`: TeXformer checkpoint
|
| 22 |
+
- `tokenizer/pdf_tokenizer.json`: PDF-side tokenizer
|
| 23 |
+
- `tokenizer/latex_tokenizer.json`: LaTeX-side tokenizer
|
| 24 |
+
- `tokenizer/pdf_tags.json`: frequent PDF tag metadata
|
| 25 |
+
- `tokenizer/latex_commands.json`: frequent LaTeX command metadata
|
| 26 |
+
|
| 27 |
+
## Architecture
|
| 28 |
+
|
| 29 |
+
- Parameters (deduplicated): 576,538,624
|
| 30 |
+
- Parameters (state_dict entries): 625,690,624
|
| 31 |
+
- Encoder layers: 16
|
| 32 |
+
- Decoder layers: 16
|
| 33 |
+
- Hidden size (`d_model`): 1024
|
| 34 |
+
- Attention heads: 16
|
| 35 |
+
- Feed-forward size (`d_ff`): 4224
|
| 36 |
+
- Max encoder length: 2560
|
| 37 |
+
- Max decoder length: 2560
|
| 38 |
+
- Stored precision: `fp16`
|
| 39 |
+
|
| 40 |
+
## Quantization
|
| 41 |
+
|
| 42 |
+
- Quantization method: `fp16`
|
| 43 |
+
- Checkpoint payload key: `model_state_dict`
|
| 44 |
+
- Original model training precision: `bf16`
|
| 45 |
+
- Sample tensor dtype: `torch.float16`
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
## Usage
|
| 49 |
+
|
| 50 |
+
```python
|
| 51 |
+
from pathlib import Path
|
| 52 |
+
import torch
|
| 53 |
+
from huggingface_hub import snapshot_download
|
| 54 |
+
from texformer.models.checkpoint_loader import load_texformer_model
|
| 55 |
+
from texformer.tokenization.tokenizer import TeXFormerTokenizer
|
| 56 |
+
|
| 57 |
+
repo_id = "aamingem/texformer-576m-fp16"
|
| 58 |
+
local_dir = Path(snapshot_download(repo_id=repo_id))
|
| 59 |
+
tokenizer_dir = local_dir / "tokenizer"
|
| 60 |
+
|
| 61 |
+
tokenizer = TeXFormerTokenizer(tokenizer_dir)
|
| 62 |
+
if torch.cuda.is_available():
|
| 63 |
+
device = torch.device("cuda")
|
| 64 |
+
elif hasattr(torch.backends, "mps") and torch.backends.mps.is_available():
|
| 65 |
+
device = torch.device("mps")
|
| 66 |
+
else:
|
| 67 |
+
device = torch.device("cpu")
|
| 68 |
+
model, global_step, epoch, missing, unexpected = load_texformer_model(
|
| 69 |
+
checkpoint_path=local_dir / "model.pt",
|
| 70 |
+
tokenizer=tokenizer,
|
| 71 |
+
device=device,
|
| 72 |
+
)
|
| 73 |
+
print("Loaded model:", model.__class__.__name__)
|
| 74 |
+
print("Missing keys:", len(missing), "Unexpected keys:", len(unexpected))
|
| 75 |
+
|
| 76 |
+
```
|
| 77 |
+
|
| 78 |
+
## Intended Use
|
| 79 |
+
|
| 80 |
+
- OCR-to-LaTeX / PDF-text-to-LaTeX sequence generation
|
| 81 |
+
- Research and experimentation on scientific document conversion
|
| 82 |
+
|
| 83 |
+
## Limitations
|
| 84 |
+
|
| 85 |
+
- May produce incorrect or non-compiling LaTeX.
|
| 86 |
+
- Performance depends on input extraction quality.
|
| 87 |
+
- Not intended for high-stakes use without human verification.
|
model.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c96413fd75bffb3a1dec5bf49295024c40b7a18135a970d2723b33b1ec2a31b8
|
| 3 |
+
size 1153196683
|
tokenizer/latex_commands.json
ADDED
|
@@ -0,0 +1,2013 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"special_tokens": [
|
| 3 |
+
"[PAD]",
|
| 4 |
+
"[UNK]",
|
| 5 |
+
"[BOS]",
|
| 6 |
+
"[EOS]",
|
| 7 |
+
"[FIGURE]",
|
| 8 |
+
"[TABLE]"
|
| 9 |
+
],
|
| 10 |
+
"common_commands": [
|
| 11 |
+
"\\mathcal",
|
| 12 |
+
"\\end",
|
| 13 |
+
"\\begin",
|
| 14 |
+
"\\in",
|
| 15 |
+
"\\mathbb",
|
| 16 |
+
"\\frac",
|
| 17 |
+
"\\ref",
|
| 18 |
+
"\\cite",
|
| 19 |
+
"\\alpha",
|
| 20 |
+
"\\right",
|
| 21 |
+
"\\left",
|
| 22 |
+
"\\label",
|
| 23 |
+
"\\mathrm",
|
| 24 |
+
"\\lambda",
|
| 25 |
+
"\\mu",
|
| 26 |
+
"\\mathbf",
|
| 27 |
+
"\\infty",
|
| 28 |
+
"\\leq",
|
| 29 |
+
"\\pi",
|
| 30 |
+
"\\beta",
|
| 31 |
+
"\\eqref",
|
| 32 |
+
"\\sigma",
|
| 33 |
+
"\\gamma",
|
| 34 |
+
"\\text",
|
| 35 |
+
"\\sum",
|
| 36 |
+
"\\to",
|
| 37 |
+
"\\operatorname",
|
| 38 |
+
"\\delta",
|
| 39 |
+
"\\omega",
|
| 40 |
+
"\\rm",
|
| 41 |
+
"\\tau",
|
| 42 |
+
"\\theta",
|
| 43 |
+
"\\rho",
|
| 44 |
+
"\\phi",
|
| 45 |
+
"\\ell",
|
| 46 |
+
"\\varphi",
|
| 47 |
+
"\\mathfrak",
|
| 48 |
+
"\\cdot",
|
| 49 |
+
"\\item",
|
| 50 |
+
"\\partial",
|
| 51 |
+
"\\times",
|
| 52 |
+
"\\Omega",
|
| 53 |
+
"\\varepsilon",
|
| 54 |
+
"\\Gamma",
|
| 55 |
+
"\\int",
|
| 56 |
+
"\\overline",
|
| 57 |
+
"\\nu",
|
| 58 |
+
"\\xi",
|
| 59 |
+
"\\tilde",
|
| 60 |
+
"\\psi",
|
| 61 |
+
"\\Delta",
|
| 62 |
+
"\\eta",
|
| 63 |
+
"\\geq",
|
| 64 |
+
"\\bar",
|
| 65 |
+
"\\big",
|
| 66 |
+
"\\rangle",
|
| 67 |
+
"\\quad",
|
| 68 |
+
"\\hat",
|
| 69 |
+
"\\otimes",
|
| 70 |
+
"\\langle",
|
| 71 |
+
"\\ensuremath",
|
| 72 |
+
"\\mathsf",
|
| 73 |
+
"\\boldsymbol",
|
| 74 |
+
"\\emph",
|
| 75 |
+
"\\le",
|
| 76 |
+
"\\widetilde",
|
| 77 |
+
"\\epsilon",
|
| 78 |
+
"\\ldots",
|
| 79 |
+
"\\sqrt",
|
| 80 |
+
"\\Lambda",
|
| 81 |
+
"\\Phi",
|
| 82 |
+
"\\cap",
|
| 83 |
+
"\\mathscr",
|
| 84 |
+
"\\subset",
|
| 85 |
+
"\\bm",
|
| 86 |
+
"\\textbf",
|
| 87 |
+
"\\bf",
|
| 88 |
+
"\\dots",
|
| 89 |
+
"\\circ",
|
| 90 |
+
"\\chi",
|
| 91 |
+
"\\rightarrow",
|
| 92 |
+
"\\Sigma",
|
| 93 |
+
"\\kappa",
|
| 94 |
+
"\\widehat",
|
| 95 |
+
"\\cdots",
|
| 96 |
+
"\\zeta",
|
| 97 |
+
"\\subseteq",
|
| 98 |
+
"\\log",
|
| 99 |
+
"\\Big",
|
| 100 |
+
"\\subsection",
|
| 101 |
+
"\\section",
|
| 102 |
+
"\\neq",
|
| 103 |
+
"\\nabla",
|
| 104 |
+
"\\setminus",
|
| 105 |
+
"\\ge",
|
| 106 |
+
"\\pm",
|
| 107 |
+
"\\textit",
|
| 108 |
+
"\\ast",
|
| 109 |
+
"\\mbox",
|
| 110 |
+
"\\qquad",
|
| 111 |
+
"\\cup",
|
| 112 |
+
"\\vert",
|
| 113 |
+
"\\Psi",
|
| 114 |
+
"\\caption",
|
| 115 |
+
"\\vec",
|
| 116 |
+
"\\colon",
|
| 117 |
+
"\\prime",
|
| 118 |
+
"\\cal",
|
| 119 |
+
"\\underline",
|
| 120 |
+
"\\sim",
|
| 121 |
+
"\\Vert",
|
| 122 |
+
"\\limits",
|
| 123 |
+
"\\oplus",
|
| 124 |
+
"\\hspace",
|
| 125 |
+
"\\noindent",
|
| 126 |
+
"\\nonumber",
|
| 127 |
+
"\\cref",
|
| 128 |
+
"\\mid",
|
| 129 |
+
"\\xspace",
|
| 130 |
+
"\\prod",
|
| 131 |
+
"\\lim",
|
| 132 |
+
"\\wedge",
|
| 133 |
+
"\\hline",
|
| 134 |
+
"\\leqslant",
|
| 135 |
+
"\\mapsto",
|
| 136 |
+
"\\equiv",
|
| 137 |
+
"\\max",
|
| 138 |
+
"\\Theta",
|
| 139 |
+
"\\bigg",
|
| 140 |
+
"\\Pi",
|
| 141 |
+
"\\mathop",
|
| 142 |
+
"\\dot",
|
| 143 |
+
"\\cong",
|
| 144 |
+
"\\Cref",
|
| 145 |
+
"\\sup",
|
| 146 |
+
"\\star",
|
| 147 |
+
"\\it",
|
| 148 |
+
"\\forall",
|
| 149 |
+
"\\hbox",
|
| 150 |
+
"\\bullet",
|
| 151 |
+
"\\perp",
|
| 152 |
+
"\\min",
|
| 153 |
+
"\\sin",
|
| 154 |
+
"\\cos",
|
| 155 |
+
"\\lesssim",
|
| 156 |
+
"\\emptyset",
|
| 157 |
+
"\\texttt",
|
| 158 |
+
"\\iota",
|
| 159 |
+
"\\dagger",
|
| 160 |
+
"\\textrm",
|
| 161 |
+
"\\exp",
|
| 162 |
+
"\\dim",
|
| 163 |
+
"\\tfrac",
|
| 164 |
+
"\\longrightarrow",
|
| 165 |
+
"\\textup",
|
| 166 |
+
"\\simeq",
|
| 167 |
+
"\\vee",
|
| 168 |
+
"\\em",
|
| 169 |
+
"\\vspace",
|
| 170 |
+
"\\displaystyle",
|
| 171 |
+
"\\bigcup",
|
| 172 |
+
"\\ar",
|
| 173 |
+
"\\dfrac",
|
| 174 |
+
"\\bigl",
|
| 175 |
+
"\\footnote",
|
| 176 |
+
"\\bigr",
|
| 177 |
+
"\\medskip",
|
| 178 |
+
"\\kern",
|
| 179 |
+
"\\author",
|
| 180 |
+
"\\geqslant",
|
| 181 |
+
"\\approx",
|
| 182 |
+
"\\sf",
|
| 183 |
+
"\\not",
|
| 184 |
+
"\\ln",
|
| 185 |
+
"\\textsc",
|
| 186 |
+
"\\textnormal",
|
| 187 |
+
"\\coloneqq",
|
| 188 |
+
"\\scriptscriptstyle",
|
| 189 |
+
"\\top",
|
| 190 |
+
"\\nolimits",
|
| 191 |
+
"\\mathtt",
|
| 192 |
+
"\\citep",
|
| 193 |
+
"\\notin",
|
| 194 |
+
"\\subsubsection",
|
| 195 |
+
"\\vartheta",
|
| 196 |
+
"\\color",
|
| 197 |
+
"\\mkern",
|
| 198 |
+
"\\rVert",
|
| 199 |
+
"\\maketitle",
|
| 200 |
+
"\\backslash",
|
| 201 |
+
"\\rvert",
|
| 202 |
+
"\\ne",
|
| 203 |
+
"\\det",
|
| 204 |
+
"\\mathit",
|
| 205 |
+
"\\overset",
|
| 206 |
+
"\\mathds",
|
| 207 |
+
"\\Rightarrow",
|
| 208 |
+
"\\lvert",
|
| 209 |
+
"\\textcolor",
|
| 210 |
+
"\\ket",
|
| 211 |
+
"\\varrho",
|
| 212 |
+
"\\Xi",
|
| 213 |
+
"\\inf",
|
| 214 |
+
"\\binom",
|
| 215 |
+
"\\textsf",
|
| 216 |
+
"\\over",
|
| 217 |
+
"\\par",
|
| 218 |
+
"\\smallskip",
|
| 219 |
+
"\\fi",
|
| 220 |
+
"\\lVert",
|
| 221 |
+
"\\paragraph",
|
| 222 |
+
"\\xrightarrow",
|
| 223 |
+
"\\lfloor",
|
| 224 |
+
"\\mathbbm",
|
| 225 |
+
"\\rfloor",
|
| 226 |
+
"\\substack",
|
| 227 |
+
"\\S",
|
| 228 |
+
"\\email",
|
| 229 |
+
"\\ll",
|
| 230 |
+
"\\hbar",
|
| 231 |
+
"\\deg",
|
| 232 |
+
"\\newcommand",
|
| 233 |
+
"\\stackrel",
|
| 234 |
+
"\\affiliation",
|
| 235 |
+
"\\vdots",
|
| 236 |
+
"\\ker",
|
| 237 |
+
"\\bigoplus",
|
| 238 |
+
"\\notag",
|
| 239 |
+
"\\sharp",
|
| 240 |
+
"\\scriptstyle",
|
| 241 |
+
"\\textstyle",
|
| 242 |
+
"\\check",
|
| 243 |
+
"\\tt",
|
| 244 |
+
"\\small",
|
| 245 |
+
"\\rtimes",
|
| 246 |
+
"\\multicolumn",
|
| 247 |
+
"\\title",
|
| 248 |
+
"\\mathrel",
|
| 249 |
+
"\\mathbin",
|
| 250 |
+
"\\else",
|
| 251 |
+
"\\prec",
|
| 252 |
+
"\\exists",
|
| 253 |
+
"\\raisebox",
|
| 254 |
+
"\\scalebox",
|
| 255 |
+
"\\tiny",
|
| 256 |
+
"\\relax",
|
| 257 |
+
"\\Bigg",
|
| 258 |
+
"\\downarrow",
|
| 259 |
+
"\\Upsilon",
|
| 260 |
+
"\\underset",
|
| 261 |
+
"\\autoref",
|
| 262 |
+
"\\bigcap",
|
| 263 |
+
"\\abs",
|
| 264 |
+
"\\uparrow",
|
| 265 |
+
"\\vcenter",
|
| 266 |
+
"\\hookrightarrow",
|
| 267 |
+
"\\Box",
|
| 268 |
+
"\\boldmath",
|
| 269 |
+
"\\centering",
|
| 270 |
+
"\\norm",
|
| 271 |
+
"\\Bigl",
|
| 272 |
+
"\\Bigr",
|
| 273 |
+
"\\odot",
|
| 274 |
+
"\\hskip",
|
| 275 |
+
"\\def",
|
| 276 |
+
"\\hfill",
|
| 277 |
+
"\\Bbb",
|
| 278 |
+
"\\square",
|
| 279 |
+
"\\bot",
|
| 280 |
+
"\\bigskip",
|
| 281 |
+
"\\pmb",
|
| 282 |
+
"\\varpi",
|
| 283 |
+
"\\phantom",
|
| 284 |
+
"\\neg",
|
| 285 |
+
"\\State",
|
| 286 |
+
"\\wd",
|
| 287 |
+
"\\ac",
|
| 288 |
+
"\\vdash",
|
| 289 |
+
"\\lbrace",
|
| 290 |
+
"\\setbox",
|
| 291 |
+
"\\rbrace",
|
| 292 |
+
"\\mathord",
|
| 293 |
+
"\\thanks",
|
| 294 |
+
"\\cr",
|
| 295 |
+
"\\sqcup",
|
| 296 |
+
"\\rceil",
|
| 297 |
+
"\\varnothing",
|
| 298 |
+
"\\lceil",
|
| 299 |
+
"\\rrbracket",
|
| 300 |
+
"\\vskip",
|
| 301 |
+
"\\models",
|
| 302 |
+
"\\scriptsize",
|
| 303 |
+
"\\llbracket",
|
| 304 |
+
"\\gg",
|
| 305 |
+
"\\Tilde",
|
| 306 |
+
"\\frak",
|
| 307 |
+
"\\underbrace",
|
| 308 |
+
"\\dag",
|
| 309 |
+
"\\smash",
|
| 310 |
+
"\\normalfont",
|
| 311 |
+
"\\limsup",
|
| 312 |
+
"\\Bbbk",
|
| 313 |
+
"\\upsilon",
|
| 314 |
+
"\\preceq",
|
| 315 |
+
"\\land",
|
| 316 |
+
"\\Re",
|
| 317 |
+
"\\R",
|
| 318 |
+
"\\mathring",
|
| 319 |
+
"\\leftarrow",
|
| 320 |
+
"\\biggl",
|
| 321 |
+
"\\biggr",
|
| 322 |
+
"\\midrule",
|
| 323 |
+
"\\triangle",
|
| 324 |
+
"\\overrightarrow",
|
| 325 |
+
"\\cosh",
|
| 326 |
+
"\\ddots",
|
| 327 |
+
"\\multirow",
|
| 328 |
+
"\\Leftrightarrow",
|
| 329 |
+
"\\diamond",
|
| 330 |
+
"\\bigwedge",
|
| 331 |
+
"\\ifthenelse",
|
| 332 |
+
"\\EuScript",
|
| 333 |
+
"\\pmod",
|
| 334 |
+
"\\citet",
|
| 335 |
+
"\\sinh",
|
| 336 |
+
"\\gtrsim",
|
| 337 |
+
"\\renewcommand",
|
| 338 |
+
"\\gls",
|
| 339 |
+
"\\gets",
|
| 340 |
+
"\\vphantom",
|
| 341 |
+
"\\implies",
|
| 342 |
+
"\\sc",
|
| 343 |
+
"\\varsigma",
|
| 344 |
+
"\\xymatrix",
|
| 345 |
+
"\\eps",
|
| 346 |
+
"\\propto",
|
| 347 |
+
"\\ni",
|
| 348 |
+
"\\rule",
|
| 349 |
+
"\\parallel",
|
| 350 |
+
"\\supset",
|
| 351 |
+
"\\href",
|
| 352 |
+
"\\bold",
|
| 353 |
+
"\\mathchoice",
|
| 354 |
+
"\\liminf",
|
| 355 |
+
"\\arabic",
|
| 356 |
+
"\\texorpdfstring",
|
| 357 |
+
"\\equal",
|
| 358 |
+
"\\date",
|
| 359 |
+
"\\newline",
|
| 360 |
+
"\\tag",
|
| 361 |
+
"\\footnotesize",
|
| 362 |
+
"\\gdef",
|
| 363 |
+
"\\setcounter",
|
| 364 |
+
"\\boxtimes",
|
| 365 |
+
"\\longmapsto",
|
| 366 |
+
"\\mp",
|
| 367 |
+
"\\dotsc",
|
| 368 |
+
"\\curvearrowright",
|
| 369 |
+
"\\qed",
|
| 370 |
+
"\\setlength",
|
| 371 |
+
"\\arg",
|
| 372 |
+
"\\leftrightarrow",
|
| 373 |
+
"\\breve",
|
| 374 |
+
"\\choose",
|
| 375 |
+
"\\gcd",
|
| 376 |
+
"\\mod",
|
| 377 |
+
"\\supseteq",
|
| 378 |
+
"\\iff",
|
| 379 |
+
"\\Z",
|
| 380 |
+
"\\succ",
|
| 381 |
+
"\\ddot",
|
| 382 |
+
"\\keywords",
|
| 383 |
+
"\\hyperref",
|
| 384 |
+
"\\ifx",
|
| 385 |
+
"\\dd",
|
| 386 |
+
"\\and",
|
| 387 |
+
"\\bigvee",
|
| 388 |
+
"\\newtheorem",
|
| 389 |
+
"\\aleph",
|
| 390 |
+
"\\varkappa",
|
| 391 |
+
"\\v",
|
| 392 |
+
"\\flat",
|
| 393 |
+
"\\imath",
|
| 394 |
+
"\\wp",
|
| 395 |
+
"\\STATE",
|
| 396 |
+
"\\triangleright",
|
| 397 |
+
"\\asymp",
|
| 398 |
+
"\\dimen",
|
| 399 |
+
"\\C",
|
| 400 |
+
"\\protect",
|
| 401 |
+
"\\Im",
|
| 402 |
+
"\\tan",
|
| 403 |
+
"\\subsetneq",
|
| 404 |
+
"\\iint",
|
| 405 |
+
"\\braket",
|
| 406 |
+
"\\slashed",
|
| 407 |
+
"\\lor",
|
| 408 |
+
"\\toprule",
|
| 409 |
+
"\\macc",
|
| 410 |
+
"\\smallsetminus",
|
| 411 |
+
"\\set",
|
| 412 |
+
"\\Longrightarrow",
|
| 413 |
+
"\\vrule",
|
| 414 |
+
"\\roman",
|
| 415 |
+
"\\hfil",
|
| 416 |
+
"\\bottomrule",
|
| 417 |
+
"\\cellcolor",
|
| 418 |
+
"\\textwidth",
|
| 419 |
+
"\\kl",
|
| 420 |
+
"\\bra",
|
| 421 |
+
"\\ifmmode",
|
| 422 |
+
"\\newpage",
|
| 423 |
+
"\\m",
|
| 424 |
+
"\\ltimes",
|
| 425 |
+
"\\upharpoonright",
|
| 426 |
+
"\\mathpzc",
|
| 427 |
+
"\\ding",
|
| 428 |
+
"\\Vdash",
|
| 429 |
+
"\\bigsqcup",
|
| 430 |
+
"\\draw",
|
| 431 |
+
"\\bib",
|
| 432 |
+
"\\expandafter",
|
| 433 |
+
"\\qty",
|
| 434 |
+
"\\Bar",
|
| 435 |
+
"\\bmod",
|
| 436 |
+
"\\index",
|
| 437 |
+
"\\cline",
|
| 438 |
+
"\\hdots",
|
| 439 |
+
"\\x",
|
| 440 |
+
"\\today",
|
| 441 |
+
"\\mathsmaller",
|
| 442 |
+
"\\qedhere",
|
| 443 |
+
"\\triangleq",
|
| 444 |
+
"\\on",
|
| 445 |
+
"\\tableofcontents",
|
| 446 |
+
"\\lstinline",
|
| 447 |
+
"\\i",
|
| 448 |
+
"\\mc",
|
| 449 |
+
"\\natural",
|
| 450 |
+
"\\upshape",
|
| 451 |
+
"\\angle",
|
| 452 |
+
"\\Pr",
|
| 453 |
+
"\\hyperlink",
|
| 454 |
+
"\\ominus",
|
| 455 |
+
"\\Longleftrightarrow",
|
| 456 |
+
"\\mathopen",
|
| 457 |
+
"\\triangleleft",
|
| 458 |
+
"\\url",
|
| 459 |
+
"\\textsuperscript",
|
| 460 |
+
"\\raise",
|
| 461 |
+
"\\empty",
|
| 462 |
+
"\\Diamond",
|
| 463 |
+
"\\pazocal",
|
| 464 |
+
"\\if",
|
| 465 |
+
"\\twoheadrightarrow",
|
| 466 |
+
"\\indent",
|
| 467 |
+
"\\begingroup",
|
| 468 |
+
"\\middle",
|
| 469 |
+
"\\baselineskip",
|
| 470 |
+
"\\tensor",
|
| 471 |
+
"\\vb",
|
| 472 |
+
"\\restriction",
|
| 473 |
+
"\\ht",
|
| 474 |
+
"\\sl",
|
| 475 |
+
"\\mright",
|
| 476 |
+
"\\acute",
|
| 477 |
+
"\\mleft",
|
| 478 |
+
"\\preccurlyeq",
|
| 479 |
+
"\\nmid",
|
| 480 |
+
"\\tanh",
|
| 481 |
+
"\\mskip",
|
| 482 |
+
"\\fint",
|
| 483 |
+
"\\appendix",
|
| 484 |
+
"\\sqsubseteq",
|
| 485 |
+
"\\nicefrac",
|
| 486 |
+
"\\p",
|
| 487 |
+
"\\coloneq",
|
| 488 |
+
"\\checkmark",
|
| 489 |
+
"\\allowbreak",
|
| 490 |
+
"\\makebox",
|
| 491 |
+
"\\endgroup",
|
| 492 |
+
"\\global",
|
| 493 |
+
"\\wr",
|
| 494 |
+
"\\prescript",
|
| 495 |
+
"\\N",
|
| 496 |
+
"\\H",
|
| 497 |
+
"\\noalign",
|
| 498 |
+
"\\A",
|
| 499 |
+
"\\rightharpoonup",
|
| 500 |
+
"\\succeq",
|
| 501 |
+
"\\bigotimes",
|
| 502 |
+
"\\rotatebox",
|
| 503 |
+
"\\vbox",
|
| 504 |
+
"\\normalsize",
|
| 505 |
+
"\\romannumeral",
|
| 506 |
+
"\\large",
|
| 507 |
+
"\\z",
|
| 508 |
+
"\\lhd",
|
| 509 |
+
"\\nobreakdash",
|
| 510 |
+
"\\E",
|
| 511 |
+
"\\long",
|
| 512 |
+
"\\cO",
|
| 513 |
+
"\\Large",
|
| 514 |
+
"\\country",
|
| 515 |
+
"\\bfseries",
|
| 516 |
+
"\\dashv",
|
| 517 |
+
"\\first",
|
| 518 |
+
"\\textcircled",
|
| 519 |
+
"\\oint",
|
| 520 |
+
"\\cot",
|
| 521 |
+
"\\cA",
|
| 522 |
+
"\\mathclose",
|
| 523 |
+
"\\searrow",
|
| 524 |
+
"\\hrule",
|
| 525 |
+
"\\selectfont",
|
| 526 |
+
"\\node",
|
| 527 |
+
"\\lbrack",
|
| 528 |
+
"\\e",
|
| 529 |
+
"\\id",
|
| 530 |
+
"\\dimexpr",
|
| 531 |
+
"\\jmath",
|
| 532 |
+
"\\sep",
|
| 533 |
+
"\\slash",
|
| 534 |
+
"\\cmidrule",
|
| 535 |
+
"\\SI",
|
| 536 |
+
"\\makecell",
|
| 537 |
+
"\\Tr",
|
| 538 |
+
"\\cC",
|
| 539 |
+
"\\F",
|
| 540 |
+
"\\vDash",
|
| 541 |
+
"\\resizebox",
|
| 542 |
+
"\\atop",
|
| 543 |
+
"\\intercal",
|
| 544 |
+
"\\boxplus",
|
| 545 |
+
"\\coprod",
|
| 546 |
+
"\\genfrac",
|
| 547 |
+
"\\the",
|
| 548 |
+
"\\mspace",
|
| 549 |
+
"\\mathpalette",
|
| 550 |
+
"\\alph",
|
| 551 |
+
"\\dashrightarrow",
|
| 552 |
+
"\\Subset",
|
| 553 |
+
"\\textsl",
|
| 554 |
+
"\\rhd",
|
| 555 |
+
"\\crcr",
|
| 556 |
+
"\\lnot",
|
| 557 |
+
"\\l",
|
| 558 |
+
"\\c",
|
| 559 |
+
"\\ifbool",
|
| 560 |
+
"\\linewidth",
|
| 561 |
+
"\\cH",
|
| 562 |
+
"\\verb",
|
| 563 |
+
"\\la",
|
| 564 |
+
"\\institution",
|
| 565 |
+
"\\rlap",
|
| 566 |
+
"\\mf",
|
| 567 |
+
"\\centerline",
|
| 568 |
+
"\\For",
|
| 569 |
+
"\\mathlarger",
|
| 570 |
+
"\\cfrac",
|
| 571 |
+
"\\blacksquare",
|
| 572 |
+
"\\arctan",
|
| 573 |
+
"\\vcentcolon",
|
| 574 |
+
"\\city",
|
| 575 |
+
"\\f",
|
| 576 |
+
"\\diamondsuit",
|
| 577 |
+
"\\ra",
|
| 578 |
+
"\\itemsep",
|
| 579 |
+
"\\be",
|
| 580 |
+
"\\iffalse",
|
| 581 |
+
"\\nearrow",
|
| 582 |
+
"\\uppercase",
|
| 583 |
+
"\\Biggl",
|
| 584 |
+
"\\cL",
|
| 585 |
+
"\\ifnum",
|
| 586 |
+
"\\bx",
|
| 587 |
+
"\\orcidlink",
|
| 588 |
+
"\\T",
|
| 589 |
+
"\\enspace",
|
| 590 |
+
"\\Vec",
|
| 591 |
+
"\\gdefblack",
|
| 592 |
+
"\\L",
|
| 593 |
+
"\\advance",
|
| 594 |
+
"\\wt",
|
| 595 |
+
"\\thinspace",
|
| 596 |
+
"\\affil",
|
| 597 |
+
"\\lrcorner",
|
| 598 |
+
"\\edef",
|
| 599 |
+
"\\u",
|
| 600 |
+
"\\Biggr",
|
| 601 |
+
"\\If",
|
| 602 |
+
"\\D",
|
| 603 |
+
"\\tr",
|
| 604 |
+
"\\parbox",
|
| 605 |
+
"\\prettyref",
|
| 606 |
+
"\\varprojlim",
|
| 607 |
+
"\\cat",
|
| 608 |
+
"\\al",
|
| 609 |
+
"\\cM",
|
| 610 |
+
"\\lozenge",
|
| 611 |
+
"\\smaller",
|
| 612 |
+
"\\RR",
|
| 613 |
+
"\\mathbbl",
|
| 614 |
+
"\\cG",
|
| 615 |
+
"\\bC",
|
| 616 |
+
"\\bigtriangleup",
|
| 617 |
+
"\\refstepcounter",
|
| 618 |
+
"\\num",
|
| 619 |
+
"\\G",
|
| 620 |
+
"\\copy",
|
| 621 |
+
"\\bb",
|
| 622 |
+
"\\B",
|
| 623 |
+
"\\sfrac",
|
| 624 |
+
"\\mathsurround",
|
| 625 |
+
"\\linebreak",
|
| 626 |
+
"\\b",
|
| 627 |
+
"\\accentset",
|
| 628 |
+
"\\ee",
|
| 629 |
+
"\\Comment",
|
| 630 |
+
"\\hss",
|
| 631 |
+
"\\mathbold",
|
| 632 |
+
"\\parens",
|
| 633 |
+
"\\ms",
|
| 634 |
+
"\\varPhi",
|
| 635 |
+
"\\bowtie",
|
| 636 |
+
"\\o",
|
| 637 |
+
"\\leavevmode",
|
| 638 |
+
"\\CC",
|
| 639 |
+
"\\ul",
|
| 640 |
+
"\\circledast",
|
| 641 |
+
"\\w",
|
| 642 |
+
"\\tikz",
|
| 643 |
+
"\\overleftarrow",
|
| 644 |
+
"\\d",
|
| 645 |
+
"\\mathinner",
|
| 646 |
+
"\\tabularnewline",
|
| 647 |
+
"\\tabcolsep",
|
| 648 |
+
"\\rightsquigarrow",
|
| 649 |
+
"\\doteq",
|
| 650 |
+
"\\fam",
|
| 651 |
+
"\\nobreak",
|
| 652 |
+
"\\unlhd",
|
| 653 |
+
"\\widecheck",
|
| 654 |
+
"\\varGamma",
|
| 655 |
+
"\\P",
|
| 656 |
+
"\\EndFor",
|
| 657 |
+
"\\MR",
|
| 658 |
+
"\\fontdimen",
|
| 659 |
+
"\\eqno",
|
| 660 |
+
"\\mathbbmss",
|
| 661 |
+
"\\cF",
|
| 662 |
+
"\\ssub",
|
| 663 |
+
"\\textsubscript",
|
| 664 |
+
"\\null",
|
| 665 |
+
"\\boxed",
|
| 666 |
+
"\\trianglelefteq",
|
| 667 |
+
"\\proof",
|
| 668 |
+
"\\rbrack",
|
| 669 |
+
"\\hidewidth",
|
| 670 |
+
"\\ZZ",
|
| 671 |
+
"\\hphantom",
|
| 672 |
+
"\\Set",
|
| 673 |
+
"\\varinjlim",
|
| 674 |
+
"\\lower",
|
| 675 |
+
"\\ooalign",
|
| 676 |
+
"\\let",
|
| 677 |
+
"\\cB",
|
| 678 |
+
"\\cE",
|
| 679 |
+
"\\bs",
|
| 680 |
+
"\\M",
|
| 681 |
+
"\\ttfamily",
|
| 682 |
+
"\\precsim",
|
| 683 |
+
"\\wideparen",
|
| 684 |
+
"\\sp",
|
| 685 |
+
"\\cD",
|
| 686 |
+
"\\usebox",
|
| 687 |
+
"\\g",
|
| 688 |
+
"\\acp",
|
| 689 |
+
"\\state",
|
| 690 |
+
"\\mathaccent",
|
| 691 |
+
"\\fg",
|
| 692 |
+
"\\itshape",
|
| 693 |
+
"\\vartriangle",
|
| 694 |
+
"\\myboxB",
|
| 695 |
+
"\\buildrel",
|
| 696 |
+
"\\urcorner",
|
| 697 |
+
"\\seg",
|
| 698 |
+
"\\fontsize",
|
| 699 |
+
"\\Q",
|
| 700 |
+
"\\footnotetext",
|
| 701 |
+
"\\Return",
|
| 702 |
+
"\\vartriangleleft",
|
| 703 |
+
"\\n",
|
| 704 |
+
"\\arccos",
|
| 705 |
+
"\\joinrel",
|
| 706 |
+
"\\IEEEmembership",
|
| 707 |
+
"\\sqcap",
|
| 708 |
+
"\\gr",
|
| 709 |
+
"\\space",
|
| 710 |
+
"\\frown",
|
| 711 |
+
"\\arraycolsep",
|
| 712 |
+
"\\GL",
|
| 713 |
+
"\\arraybackslash",
|
| 714 |
+
"\\Gr",
|
| 715 |
+
"\\thispagestyle",
|
| 716 |
+
"\\clearpage",
|
| 717 |
+
"\\dotsb",
|
| 718 |
+
"\\lq",
|
| 719 |
+
"\\heartsuit",
|
| 720 |
+
"\\textheight",
|
| 721 |
+
"\\inst",
|
| 722 |
+
"\\eeaa",
|
| 723 |
+
"\\arrow",
|
| 724 |
+
"\\fbox",
|
| 725 |
+
"\\lineskiplimit",
|
| 726 |
+
"\\s",
|
| 727 |
+
"\\varDelta",
|
| 728 |
+
"\\thref",
|
| 729 |
+
"\\ulcorner",
|
| 730 |
+
"\\EndIf",
|
| 731 |
+
"\\UnaryInfC",
|
| 732 |
+
"\\tw",
|
| 733 |
+
"\\IEEEauthorrefmark",
|
| 734 |
+
"\\ol",
|
| 735 |
+
"\\scaleobj",
|
| 736 |
+
"\\providecommand",
|
| 737 |
+
"\\mathstrut",
|
| 738 |
+
"\\O",
|
| 739 |
+
"\\vv",
|
| 740 |
+
"\\goth",
|
| 741 |
+
"\\scaleto",
|
| 742 |
+
"\\detokenize",
|
| 743 |
+
"\\uptau",
|
| 744 |
+
"\\X",
|
| 745 |
+
"\\second",
|
| 746 |
+
"\\AxiomC",
|
| 747 |
+
"\\supp",
|
| 748 |
+
"\\intop",
|
| 749 |
+
"\\op",
|
| 750 |
+
"\\height",
|
| 751 |
+
"\\wh",
|
| 752 |
+
"\\varSigma",
|
| 753 |
+
"\\rightrightarrows",
|
| 754 |
+
"\\Leftarrow",
|
| 755 |
+
"\\ifdim",
|
| 756 |
+
"\\lVertf",
|
| 757 |
+
"\\del",
|
| 758 |
+
"\\Hom",
|
| 759 |
+
"\\nsubseteq",
|
| 760 |
+
"\\cR",
|
| 761 |
+
"\\a",
|
| 762 |
+
"\\dif",
|
| 763 |
+
"\\zcref",
|
| 764 |
+
"\\ss",
|
| 765 |
+
"\\floor",
|
| 766 |
+
"\\colonequals",
|
| 767 |
+
"\\addtocounter",
|
| 768 |
+
"\\bibitem",
|
| 769 |
+
"\\bP",
|
| 770 |
+
"\\labelcref",
|
| 771 |
+
"\\ialign",
|
| 772 |
+
"\\infer",
|
| 773 |
+
"\\cP",
|
| 774 |
+
"\\underbar",
|
| 775 |
+
"\\isempty",
|
| 776 |
+
"\\cX",
|
| 777 |
+
"\\parindent",
|
| 778 |
+
"\\dist",
|
| 779 |
+
"\\dp",
|
| 780 |
+
"\\acro",
|
| 781 |
+
"\\sffamily",
|
| 782 |
+
"\\ce",
|
| 783 |
+
"\\mathbbold",
|
| 784 |
+
"\\enquote",
|
| 785 |
+
"\\SavedStyle",
|
| 786 |
+
"\\myboxA",
|
| 787 |
+
"\\bR",
|
| 788 |
+
"\\expval",
|
| 789 |
+
"\\textcite",
|
| 790 |
+
"\\mathnormal",
|
| 791 |
+
"\\rowcolor",
|
| 792 |
+
"\\penalty",
|
| 793 |
+
"\\reflectbox",
|
| 794 |
+
"\\bigcirc",
|
| 795 |
+
"\\scalerel",
|
| 796 |
+
"\\undefined",
|
| 797 |
+
"\\textmd",
|
| 798 |
+
"\\si",
|
| 799 |
+
"\\relbar",
|
| 800 |
+
"\\vphi",
|
| 801 |
+
"\\allowdisplaybreaks",
|
| 802 |
+
"\\Aut",
|
| 803 |
+
"\\cT",
|
| 804 |
+
"\\uplus",
|
| 805 |
+
"\\sqsubset",
|
| 806 |
+
"\\paren",
|
| 807 |
+
"\\fontfamily",
|
| 808 |
+
"\\inv",
|
| 809 |
+
"\\dotsm",
|
| 810 |
+
"\\upalpha",
|
| 811 |
+
"\\I",
|
| 812 |
+
"\\intertext",
|
| 813 |
+
"\\U",
|
| 814 |
+
"\\brk",
|
| 815 |
+
"\\leadsto",
|
| 816 |
+
"\\defeq",
|
| 817 |
+
"\\mb",
|
| 818 |
+
"\\Spec",
|
| 819 |
+
"\\Mod",
|
| 820 |
+
"\\hslash",
|
| 821 |
+
"\\IEEEauthorblockA",
|
| 822 |
+
"\\sbox",
|
| 823 |
+
"\\ot",
|
| 824 |
+
"\\triangledown",
|
| 825 |
+
"\\arcsin",
|
| 826 |
+
"\\final",
|
| 827 |
+
"\\bA",
|
| 828 |
+
"\\cS",
|
| 829 |
+
"\\llap",
|
| 830 |
+
"\\parencite",
|
| 831 |
+
"\\subparagraph",
|
| 832 |
+
"\\PP",
|
| 833 |
+
"\\usefont",
|
| 834 |
+
"\\Hat",
|
| 835 |
+
"\\textfont",
|
| 836 |
+
"\\hypertarget",
|
| 837 |
+
"\\V",
|
| 838 |
+
"\\endaligned",
|
| 839 |
+
"\\aligned",
|
| 840 |
+
"\\overbrace",
|
| 841 |
+
"\\fill",
|
| 842 |
+
"\\term",
|
| 843 |
+
"\\mathclap",
|
| 844 |
+
"\\abstract",
|
| 845 |
+
"\\RightLabel",
|
| 846 |
+
"\\endcsname",
|
| 847 |
+
"\\k",
|
| 848 |
+
"\\coth",
|
| 849 |
+
"\\or",
|
| 850 |
+
"\\fp",
|
| 851 |
+
"\\bbR",
|
| 852 |
+
"\\varOmega",
|
| 853 |
+
"\\pageref",
|
| 854 |
+
"\\fnm",
|
| 855 |
+
"\\usepackage",
|
| 856 |
+
"\\uppi",
|
| 857 |
+
"\\longleftrightarrow",
|
| 858 |
+
"\\box",
|
| 859 |
+
"\\nulldelimiterspace",
|
| 860 |
+
"\\sur",
|
| 861 |
+
"\\ad",
|
| 862 |
+
"\\ketbra",
|
| 863 |
+
"\\cK",
|
| 864 |
+
"\\ga",
|
| 865 |
+
"\\smile",
|
| 866 |
+
"\\glspl",
|
| 867 |
+
"\\thinmuskip",
|
| 868 |
+
"\\pr",
|
| 869 |
+
"\\Bun",
|
| 870 |
+
"\\complement",
|
| 871 |
+
"\\upmu",
|
| 872 |
+
"\\value",
|
| 873 |
+
"\\strut",
|
| 874 |
+
"\\MakeUppercase",
|
| 875 |
+
"\\preprint",
|
| 876 |
+
"\\countitems",
|
| 877 |
+
"\\blacktriangleright",
|
| 878 |
+
"\\hom",
|
| 879 |
+
"\\Op",
|
| 880 |
+
"\\longleftarrow",
|
| 881 |
+
"\\lowercase",
|
| 882 |
+
"\\llcorner",
|
| 883 |
+
"\\blacktriangle",
|
| 884 |
+
"\\upbeta",
|
| 885 |
+
"\\parskip",
|
| 886 |
+
"\\IEEEauthorblockN",
|
| 887 |
+
"\\ie",
|
| 888 |
+
"\\sub",
|
| 889 |
+
"\\fL",
|
| 890 |
+
"\\Cal",
|
| 891 |
+
"\\unskip",
|
| 892 |
+
"\\unitlength",
|
| 893 |
+
"\\rk",
|
| 894 |
+
"\\cN",
|
| 895 |
+
"\\tmpbox",
|
| 896 |
+
"\\nolinebreak",
|
| 897 |
+
"\\alphaup",
|
| 898 |
+
"\\numberwithin",
|
| 899 |
+
"\\prn",
|
| 900 |
+
"\\nameref",
|
| 901 |
+
"\\lessapprox",
|
| 902 |
+
"\\varPsi",
|
| 903 |
+
"\\amalg",
|
| 904 |
+
"\\centerdot",
|
| 905 |
+
"\\bZ",
|
| 906 |
+
"\\sqsupset",
|
| 907 |
+
"\\addcontentsline",
|
| 908 |
+
"\\dom",
|
| 909 |
+
"\\Dmod",
|
| 910 |
+
"\\nonscript",
|
| 911 |
+
"\\rq",
|
| 912 |
+
"\\boxdot",
|
| 913 |
+
"\\mathbfcal",
|
| 914 |
+
"\\bS",
|
| 915 |
+
"\\ddagger",
|
| 916 |
+
"\\bX",
|
| 917 |
+
"\\r",
|
| 918 |
+
"\\theequation",
|
| 919 |
+
"\\negthinspace",
|
| 920 |
+
"\\type",
|
| 921 |
+
"\\Sp",
|
| 922 |
+
"\\vartriangleright",
|
| 923 |
+
"\\vect",
|
| 924 |
+
"\\varLambda",
|
| 925 |
+
"\\AgdaSpace",
|
| 926 |
+
"\\smallfrown",
|
| 927 |
+
"\\End",
|
| 928 |
+
"\\bigstar",
|
| 929 |
+
"\\ii",
|
| 930 |
+
"\\arrowvert",
|
| 931 |
+
"\\pdv",
|
| 932 |
+
"\\xleftarrow",
|
| 933 |
+
"\\sec",
|
| 934 |
+
"\\FF",
|
| 935 |
+
"\\eth",
|
| 936 |
+
"\\raggedright",
|
| 937 |
+
"\\put",
|
| 938 |
+
"\\y",
|
| 939 |
+
"\\endproof",
|
| 940 |
+
"\\stepcounter",
|
| 941 |
+
"\\lefteqn",
|
| 942 |
+
"\\ev",
|
| 943 |
+
"\\hyp",
|
| 944 |
+
"\\medbreak",
|
| 945 |
+
"\\LL",
|
| 946 |
+
"\\shuffle",
|
| 947 |
+
"\\Cc",
|
| 948 |
+
"\\bp",
|
| 949 |
+
"\\cyracc",
|
| 950 |
+
"\\ab",
|
| 951 |
+
"\\csname",
|
| 952 |
+
"\\updelta",
|
| 953 |
+
"\\aa",
|
| 954 |
+
"\\im",
|
| 955 |
+
"\\uline",
|
| 956 |
+
"\\third",
|
| 957 |
+
"\\columnwidth",
|
| 958 |
+
"\\calU",
|
| 959 |
+
"\\mathrmbfit",
|
| 960 |
+
"\\unit",
|
| 961 |
+
"\\vline",
|
| 962 |
+
"\\csc",
|
| 963 |
+
"\\qw",
|
| 964 |
+
"\\diff",
|
| 965 |
+
"\\mylenA",
|
| 966 |
+
"\\bigm",
|
| 967 |
+
"\\ip",
|
| 968 |
+
"\\textsection",
|
| 969 |
+
"\\ceil",
|
| 970 |
+
"\\cU",
|
| 971 |
+
"\\divide",
|
| 972 |
+
"\\cV",
|
| 973 |
+
"\\Id",
|
| 974 |
+
"\\pa",
|
| 975 |
+
"\\Alph",
|
| 976 |
+
"\\subref",
|
| 977 |
+
"\\mathchar",
|
| 978 |
+
"\\footnotemark",
|
| 979 |
+
"\\nointerlineskip",
|
| 980 |
+
"\\vfill",
|
| 981 |
+
"\\red",
|
| 982 |
+
"\\todo",
|
| 983 |
+
"\\bbC",
|
| 984 |
+
"\\vss",
|
| 985 |
+
"\\MakeLowercase",
|
| 986 |
+
"\\addlinespace",
|
| 987 |
+
"\\LARGE",
|
| 988 |
+
"\\cancel",
|
| 989 |
+
"\\supsetneq",
|
| 990 |
+
"\\h",
|
| 991 |
+
"\\EE",
|
| 992 |
+
"\\pagestyle",
|
| 993 |
+
"\\mssm",
|
| 994 |
+
"\\cc",
|
| 995 |
+
"\\hypersetup",
|
| 996 |
+
"\\While",
|
| 997 |
+
"\\IZ",
|
| 998 |
+
"\\underaccent",
|
| 999 |
+
"\\AA",
|
| 1000 |
+
"\\do",
|
| 1001 |
+
"\\widthof",
|
| 1002 |
+
"\\t",
|
| 1003 |
+
"\\dR",
|
| 1004 |
+
"\\Ran",
|
| 1005 |
+
"\\orgname",
|
| 1006 |
+
"\\K",
|
| 1007 |
+
"\\NN",
|
| 1008 |
+
"\\btheta",
|
| 1009 |
+
"\\calA",
|
| 1010 |
+
"\\gobble",
|
| 1011 |
+
"\\endmarker",
|
| 1012 |
+
"\\multimap",
|
| 1013 |
+
"\\special",
|
| 1014 |
+
"\\nopagebreak",
|
| 1015 |
+
"\\leftidx",
|
| 1016 |
+
"\\textquotedblleft",
|
| 1017 |
+
"\\bv",
|
| 1018 |
+
"\\Require",
|
| 1019 |
+
"\\lVertx",
|
| 1020 |
+
"\\institute",
|
| 1021 |
+
"\\theoremstyle",
|
| 1022 |
+
"\\stackon",
|
| 1023 |
+
"\\Sha",
|
| 1024 |
+
"\\sssec",
|
| 1025 |
+
"\\SL",
|
| 1026 |
+
"\\colorbox",
|
| 1027 |
+
"\\Cat",
|
| 1028 |
+
"\\bbZ",
|
| 1029 |
+
"\\rightarrowtail",
|
| 1030 |
+
"\\beq",
|
| 1031 |
+
"\\ff",
|
| 1032 |
+
"\\De",
|
| 1033 |
+
"\\Uparrow",
|
| 1034 |
+
"\\mat",
|
| 1035 |
+
"\\poly",
|
| 1036 |
+
"\\sslash",
|
| 1037 |
+
"\\langlex",
|
| 1038 |
+
"\\rbra",
|
| 1039 |
+
"\\blackdiamond",
|
| 1040 |
+
"\\run",
|
| 1041 |
+
"\\depth",
|
| 1042 |
+
"\\ENDFOR",
|
| 1043 |
+
"\\sideset",
|
| 1044 |
+
"\\pagebreak",
|
| 1045 |
+
"\\sm",
|
| 1046 |
+
"\\varTheta",
|
| 1047 |
+
"\\bfx",
|
| 1048 |
+
"\\bd",
|
| 1049 |
+
"\\textquotedblright",
|
| 1050 |
+
"\\orgaddress",
|
| 1051 |
+
"\\oslash",
|
| 1052 |
+
"\\Forest",
|
| 1053 |
+
"\\lm",
|
| 1054 |
+
"\\hrulefill",
|
| 1055 |
+
"\\Else",
|
| 1056 |
+
"\\vtop",
|
| 1057 |
+
"\\symbol",
|
| 1058 |
+
"\\xiup",
|
| 1059 |
+
"\\succcurlyeq",
|
| 1060 |
+
"\\crtcref",
|
| 1061 |
+
"\\markboth",
|
| 1062 |
+
"\\stretchto",
|
| 1063 |
+
"\\noexpand",
|
| 1064 |
+
"\\thicksim",
|
| 1065 |
+
"\\eq",
|
| 1066 |
+
"\\mssd",
|
| 1067 |
+
"\\looseness",
|
| 1068 |
+
"\\j",
|
| 1069 |
+
"\\phantomsection",
|
| 1070 |
+
"\\ep",
|
| 1071 |
+
"\\citealp",
|
| 1072 |
+
"\\HH",
|
| 1073 |
+
"\\ex",
|
| 1074 |
+
"\\sem",
|
| 1075 |
+
"\\degree",
|
| 1076 |
+
"\\definecolor",
|
| 1077 |
+
"\\eeq",
|
| 1078 |
+
"\\oc",
|
| 1079 |
+
"\\ba",
|
| 1080 |
+
"\\addtolength",
|
| 1081 |
+
"\\textswab",
|
| 1082 |
+
"\\FOR",
|
| 1083 |
+
"\\circlearrowleft",
|
| 1084 |
+
"\\rank",
|
| 1085 |
+
"\\bbN",
|
| 1086 |
+
"\\uplambda",
|
| 1087 |
+
"\\scriptfont",
|
| 1088 |
+
"\\displaylimits",
|
| 1089 |
+
"\\operatornamewithlimits",
|
| 1090 |
+
"\\Qoppa",
|
| 1091 |
+
"\\seq",
|
| 1092 |
+
"\\nleq",
|
| 1093 |
+
"\\upomega",
|
| 1094 |
+
"\\LMpt",
|
| 1095 |
+
"\\textnumero",
|
| 1096 |
+
"\\calC",
|
| 1097 |
+
"\\rd",
|
| 1098 |
+
"\\yng",
|
| 1099 |
+
"\\orgdiv",
|
| 1100 |
+
"\\enskip",
|
| 1101 |
+
"\\W",
|
| 1102 |
+
"\\ldotp",
|
| 1103 |
+
"\\Statex",
|
| 1104 |
+
"\\one",
|
| 1105 |
+
"\\abovedisplayskip",
|
| 1106 |
+
"\\mlabel",
|
| 1107 |
+
"\\makeatletter",
|
| 1108 |
+
"\\cI",
|
| 1109 |
+
"\\meter",
|
| 1110 |
+
"\\st",
|
| 1111 |
+
"\\Omg",
|
| 1112 |
+
"\\autocite",
|
| 1113 |
+
"\\subsetneqq",
|
| 1114 |
+
"\\ov",
|
| 1115 |
+
"\\Downarrow",
|
| 1116 |
+
"\\tcp",
|
| 1117 |
+
"\\thesection",
|
| 1118 |
+
"\\bfitw",
|
| 1119 |
+
"\\cl",
|
| 1120 |
+
"\\postcode",
|
| 1121 |
+
"\\varlimsup",
|
| 1122 |
+
"\\mref",
|
| 1123 |
+
"\\ndash",
|
| 1124 |
+
"\\cites",
|
| 1125 |
+
"\\dotplus",
|
| 1126 |
+
"\\varmathbb",
|
| 1127 |
+
"\\ideal",
|
| 1128 |
+
"\\xhookrightarrow",
|
| 1129 |
+
"\\fq",
|
| 1130 |
+
"\\overleftrightarrow",
|
| 1131 |
+
"\\ssecfont",
|
| 1132 |
+
"\\ThisStyle",
|
| 1133 |
+
"\\mathrlap",
|
| 1134 |
+
"\\lessdot",
|
| 1135 |
+
"\\ord",
|
| 1136 |
+
"\\ifcat",
|
| 1137 |
+
"\\Ind",
|
| 1138 |
+
"\\reg",
|
| 1139 |
+
"\\chapter",
|
| 1140 |
+
"\\mathdist",
|
| 1141 |
+
"\\extracolsep",
|
| 1142 |
+
"\\uppsi",
|
| 1143 |
+
"\\DD",
|
| 1144 |
+
"\\clubsuit",
|
| 1145 |
+
"\\pinlabel",
|
| 1146 |
+
"\\br",
|
| 1147 |
+
"\\orcid",
|
| 1148 |
+
"\\cW",
|
| 1149 |
+
"\\myp",
|
| 1150 |
+
"\\shortstack",
|
| 1151 |
+
"\\char",
|
| 1152 |
+
"\\ch",
|
| 1153 |
+
"\\Sh",
|
| 1154 |
+
"\\cdotp",
|
| 1155 |
+
"\\vol",
|
| 1156 |
+
"\\calX",
|
| 1157 |
+
"\\horspace",
|
| 1158 |
+
"\\Dot",
|
| 1159 |
+
"\\curlywedge",
|
| 1160 |
+
"\\eqqcolon",
|
| 1161 |
+
"\\scshape",
|
| 1162 |
+
"\\cs",
|
| 1163 |
+
"\\by",
|
| 1164 |
+
"\\textemdash",
|
| 1165 |
+
"\\measuredangle",
|
| 1166 |
+
"\\Ddots",
|
| 1167 |
+
"\\xlongrightarrow",
|
| 1168 |
+
"\\calc",
|
| 1169 |
+
"\\string",
|
| 1170 |
+
"\\bu",
|
| 1171 |
+
"\\Cdots",
|
| 1172 |
+
"\\ydiagram",
|
| 1173 |
+
"\\eqdef",
|
| 1174 |
+
"\\Res",
|
| 1175 |
+
"\\CY",
|
| 1176 |
+
"\\rr",
|
| 1177 |
+
"\\fa",
|
| 1178 |
+
"\\tikzset",
|
| 1179 |
+
"\\Vertf",
|
| 1180 |
+
"\\vx",
|
| 1181 |
+
"\\rc",
|
| 1182 |
+
"\\varliminf",
|
| 1183 |
+
"\\mho",
|
| 1184 |
+
"\\break",
|
| 1185 |
+
"\\textbullet",
|
| 1186 |
+
"\\makeatother",
|
| 1187 |
+
"\\calH",
|
| 1188 |
+
"\\tup",
|
| 1189 |
+
"\\ccsdesc",
|
| 1190 |
+
"\\tikzfig",
|
| 1191 |
+
"\\fnsymbol",
|
| 1192 |
+
"\\flushbottom",
|
| 1193 |
+
"\\upsigma",
|
| 1194 |
+
"\\noLine",
|
| 1195 |
+
"\\tbinom",
|
| 1196 |
+
"\\futurelet",
|
| 1197 |
+
"\\calD",
|
| 1198 |
+
"\\dasharrow",
|
| 1199 |
+
"\\nsim",
|
| 1200 |
+
"\\Scal",
|
| 1201 |
+
"\\sloppy",
|
| 1202 |
+
"\\pacs",
|
| 1203 |
+
"\\LS",
|
| 1204 |
+
"\\order",
|
| 1205 |
+
"\\var",
|
| 1206 |
+
"\\DisplayProof",
|
| 1207 |
+
"\\scriptscriptfont",
|
| 1208 |
+
"\\et",
|
| 1209 |
+
"\\thlabel",
|
| 1210 |
+
"\\q",
|
| 1211 |
+
"\\acknowledgments",
|
| 1212 |
+
"\\percent",
|
| 1213 |
+
"\\Shv",
|
| 1214 |
+
"\\mcal",
|
| 1215 |
+
"\\frakg",
|
| 1216 |
+
"\\MPcomp",
|
| 1217 |
+
"\\bF",
|
| 1218 |
+
"\\urladdr",
|
| 1219 |
+
"\\frozen",
|
| 1220 |
+
"\\mathgroup",
|
| 1221 |
+
"\\leftharpoonup",
|
| 1222 |
+
"\\Hh",
|
| 1223 |
+
"\\CMcal",
|
| 1224 |
+
"\\citealt",
|
| 1225 |
+
"\\ddag",
|
| 1226 |
+
"\\ext",
|
| 1227 |
+
"\\Call",
|
| 1228 |
+
"\\define",
|
| 1229 |
+
"\\blacktriangledown",
|
| 1230 |
+
"\\savebox",
|
| 1231 |
+
"\\tf",
|
| 1232 |
+
"\\blacklozenge",
|
| 1233 |
+
"\\bo",
|
| 1234 |
+
"\\res",
|
| 1235 |
+
"\\fourth",
|
| 1236 |
+
"\\blacktriangleleft",
|
| 1237 |
+
"\\QQ",
|
| 1238 |
+
"\\mhyphen",
|
| 1239 |
+
"\\alg",
|
| 1240 |
+
"\\Sym",
|
| 1241 |
+
"\\dv",
|
| 1242 |
+
"\\mathcalboondox",
|
| 1243 |
+
"\\mathbfsl",
|
| 1244 |
+
"\\unboldmath",
|
| 1245 |
+
"\\fontshape",
|
| 1246 |
+
"\\IF",
|
| 1247 |
+
"\\NP",
|
| 1248 |
+
"\\stackunder",
|
| 1249 |
+
"\\cY",
|
| 1250 |
+
"\\bG",
|
| 1251 |
+
"\\shortparallel",
|
| 1252 |
+
"\\thesubsection",
|
| 1253 |
+
"\\ae",
|
| 1254 |
+
"\\kk",
|
| 1255 |
+
"\\leqq",
|
| 1256 |
+
"\\gtrapprox",
|
| 1257 |
+
"\\Vdots",
|
| 1258 |
+
"\\qa",
|
| 1259 |
+
"\\fe",
|
| 1260 |
+
"\\bT",
|
| 1261 |
+
"\\bN",
|
| 1262 |
+
"\\widebar",
|
| 1263 |
+
"\\xx",
|
| 1264 |
+
"\\eval",
|
| 1265 |
+
"\\df",
|
| 1266 |
+
"\\xrat",
|
| 1267 |
+
"\\expr",
|
| 1268 |
+
"\\bW",
|
| 1269 |
+
"\\captionof",
|
| 1270 |
+
"\\lvertx",
|
| 1271 |
+
"\\Vect",
|
| 1272 |
+
"\\bE",
|
| 1273 |
+
"\\spadesuit",
|
| 1274 |
+
"\\diam",
|
| 1275 |
+
"\\indices",
|
| 1276 |
+
"\\OR",
|
| 1277 |
+
"\\mathsl",
|
| 1278 |
+
"\\hsize",
|
| 1279 |
+
"\\bgroup",
|
| 1280 |
+
"\\msf",
|
| 1281 |
+
"\\ma",
|
| 1282 |
+
"\\faktor",
|
| 1283 |
+
"\\emailAdd",
|
| 1284 |
+
"\\lg",
|
| 1285 |
+
"\\cn",
|
| 1286 |
+
"\\pt",
|
| 1287 |
+
"\\EndWhile",
|
| 1288 |
+
"\\savestack",
|
| 1289 |
+
"\\isa",
|
| 1290 |
+
"\\Roman",
|
| 1291 |
+
"\\card",
|
| 1292 |
+
"\\theparagraph",
|
| 1293 |
+
"\\ifdefined",
|
| 1294 |
+
"\\II",
|
| 1295 |
+
"\\bfg",
|
| 1296 |
+
"\\ENDIF",
|
| 1297 |
+
"\\FloatBarrier",
|
| 1298 |
+
"\\lc",
|
| 1299 |
+
"\\upgamma",
|
| 1300 |
+
"\\FAA",
|
| 1301 |
+
"\\xy",
|
| 1302 |
+
"\\calO",
|
| 1303 |
+
"\\Pic",
|
| 1304 |
+
"\\bM",
|
| 1305 |
+
"\\th",
|
| 1306 |
+
"\\gB",
|
| 1307 |
+
"\\calI",
|
| 1308 |
+
"\\Om",
|
| 1309 |
+
"\\omit",
|
| 1310 |
+
"\\TT",
|
| 1311 |
+
"\\ml",
|
| 1312 |
+
"\\Vertx",
|
| 1313 |
+
"\\endxy",
|
| 1314 |
+
"\\offinterlineskip",
|
| 1315 |
+
"\\fu",
|
| 1316 |
+
"\\bea",
|
| 1317 |
+
"\\Spc",
|
| 1318 |
+
"\\lVertu",
|
| 1319 |
+
"\\circlearrowright",
|
| 1320 |
+
"\\citeauthor",
|
| 1321 |
+
"\\bfs",
|
| 1322 |
+
"\\bB",
|
| 1323 |
+
"\\fm",
|
| 1324 |
+
"\\nn",
|
| 1325 |
+
"\\thesubsubsection",
|
| 1326 |
+
"\\mintinline",
|
| 1327 |
+
"\\leftindex",
|
| 1328 |
+
"\\fra",
|
| 1329 |
+
"\\eea",
|
| 1330 |
+
"\\CO",
|
| 1331 |
+
"\\cortext",
|
| 1332 |
+
"\\ox",
|
| 1333 |
+
"\\catarglen",
|
| 1334 |
+
"\\undertilde",
|
| 1335 |
+
"\\bfa",
|
| 1336 |
+
"\\IEEEPARstart",
|
| 1337 |
+
"\\inferrule",
|
| 1338 |
+
"\\CE",
|
| 1339 |
+
"\\bel",
|
| 1340 |
+
"\\sse",
|
| 1341 |
+
"\\bQ",
|
| 1342 |
+
"\\mathpunct",
|
| 1343 |
+
"\\sC",
|
| 1344 |
+
"\\tp",
|
| 1345 |
+
"\\circledcirc",
|
| 1346 |
+
"\\pounds",
|
| 1347 |
+
"\\MM",
|
| 1348 |
+
"\\langlev",
|
| 1349 |
+
"\\ud",
|
| 1350 |
+
"\\OO",
|
| 1351 |
+
"\\etaup",
|
| 1352 |
+
"\\calF",
|
| 1353 |
+
"\\J",
|
| 1354 |
+
"\\calP",
|
| 1355 |
+
"\\onlinecite",
|
| 1356 |
+
"\\rrangle",
|
| 1357 |
+
"\\div",
|
| 1358 |
+
"\\marginpar",
|
| 1359 |
+
"\\GG",
|
| 1360 |
+
"\\operator",
|
| 1361 |
+
"\\Cap",
|
| 1362 |
+
"\\acrodef",
|
| 1363 |
+
"\\formalU",
|
| 1364 |
+
"\\play",
|
| 1365 |
+
"\\Ensure",
|
| 1366 |
+
"\\belowdisplayskip",
|
| 1367 |
+
"\\maxdimen",
|
| 1368 |
+
"\\mathdutchcal",
|
| 1369 |
+
"\\ty",
|
| 1370 |
+
"\\orcidID",
|
| 1371 |
+
"\\scriptspace",
|
| 1372 |
+
"\\val",
|
| 1373 |
+
"\\ComplexityFont",
|
| 1374 |
+
"\\Y",
|
| 1375 |
+
"\\mtt",
|
| 1376 |
+
"\\QCoh",
|
| 1377 |
+
"\\limfunc",
|
| 1378 |
+
"\\smallbreak",
|
| 1379 |
+
"\\spc",
|
| 1380 |
+
"\\ignorespaces",
|
| 1381 |
+
"\\lvertf",
|
| 1382 |
+
"\\bbP",
|
| 1383 |
+
"\\varXi",
|
| 1384 |
+
"\\ct",
|
| 1385 |
+
"\\ifhmode",
|
| 1386 |
+
"\\diagup",
|
| 1387 |
+
"\\proj",
|
| 1388 |
+
"\\mathrnd",
|
| 1389 |
+
"\\Mx",
|
| 1390 |
+
"\\scalefont",
|
| 1391 |
+
"\\lhook",
|
| 1392 |
+
"\\fontseries",
|
| 1393 |
+
"\\curly",
|
| 1394 |
+
"\\rightleftarrows",
|
| 1395 |
+
"\\xbf",
|
| 1396 |
+
"\\om",
|
| 1397 |
+
"\\icmlauthor",
|
| 1398 |
+
"\\de",
|
| 1399 |
+
"\\oldvarphi",
|
| 1400 |
+
"\\settowidth",
|
| 1401 |
+
"\\addtocontents",
|
| 1402 |
+
"\\bz",
|
| 1403 |
+
"\\stackengine",
|
| 1404 |
+
"\\smalltriangleright",
|
| 1405 |
+
"\\mcE",
|
| 1406 |
+
"\\dt",
|
| 1407 |
+
"\\pagenumbering",
|
| 1408 |
+
"\\comp",
|
| 1409 |
+
"\\beth",
|
| 1410 |
+
"\\KwIn",
|
| 1411 |
+
"\\IndCoh",
|
| 1412 |
+
"\\Sc",
|
| 1413 |
+
"\\AgdaSymbol",
|
| 1414 |
+
"\\Fun",
|
| 1415 |
+
"\\CA",
|
| 1416 |
+
"\\varPi",
|
| 1417 |
+
"\\none",
|
| 1418 |
+
"\\Ad",
|
| 1419 |
+
"\\msbfam",
|
| 1420 |
+
"\\CCC",
|
| 1421 |
+
"\\digamma",
|
| 1422 |
+
"\\Xc",
|
| 1423 |
+
"\\firstname",
|
| 1424 |
+
"\\AC",
|
| 1425 |
+
"\\mqty",
|
| 1426 |
+
"\\lam",
|
| 1427 |
+
"\\sphericalangle",
|
| 1428 |
+
"\\gA",
|
| 1429 |
+
"\\ran",
|
| 1430 |
+
"\\Imc",
|
| 1431 |
+
"\\smallsmile",
|
| 1432 |
+
"\\xvec",
|
| 1433 |
+
"\\defn",
|
| 1434 |
+
"\\cv",
|
| 1435 |
+
"\\textendash",
|
| 1436 |
+
"\\coordinate",
|
| 1437 |
+
"\\adjustbox",
|
| 1438 |
+
"\\code",
|
| 1439 |
+
"\\cQ",
|
| 1440 |
+
"\\intro",
|
| 1441 |
+
"\\number",
|
| 1442 |
+
"\\SO",
|
| 1443 |
+
"\\co",
|
| 1444 |
+
"\\name",
|
| 1445 |
+
"\\dual",
|
| 1446 |
+
"\\rrparenthesis",
|
| 1447 |
+
"\\pitchfork",
|
| 1448 |
+
"\\bg",
|
| 1449 |
+
"\\restr",
|
| 1450 |
+
"\\ifblank",
|
| 1451 |
+
"\\rchi",
|
| 1452 |
+
"\\eg",
|
| 1453 |
+
"\\bD",
|
| 1454 |
+
"\\myinline",
|
| 1455 |
+
"\\bigbreak",
|
| 1456 |
+
"\\normalshape",
|
| 1457 |
+
"\\IS",
|
| 1458 |
+
"\\llparenthesis",
|
| 1459 |
+
"\\tm",
|
| 1460 |
+
"\\vtheta",
|
| 1461 |
+
"\\surd",
|
| 1462 |
+
"\\faExternalLink",
|
| 1463 |
+
"\\llangle",
|
| 1464 |
+
"\\fraka",
|
| 1465 |
+
"\\upeta",
|
| 1466 |
+
"\\textbackslash",
|
| 1467 |
+
"\\between",
|
| 1468 |
+
"\\func",
|
| 1469 |
+
"\\real",
|
| 1470 |
+
"\\no",
|
| 1471 |
+
"\\Braket",
|
| 1472 |
+
"\\varhexagon",
|
| 1473 |
+
"\\intemp",
|
| 1474 |
+
"\\Mh",
|
| 1475 |
+
"\\inner",
|
| 1476 |
+
"\\inL",
|
| 1477 |
+
"\\FAG",
|
| 1478 |
+
"\\REQUIRE",
|
| 1479 |
+
"\\acrshort",
|
| 1480 |
+
"\\te",
|
| 1481 |
+
"\\langlef",
|
| 1482 |
+
"\\diag",
|
| 1483 |
+
"\\calE",
|
| 1484 |
+
"\\qb",
|
| 1485 |
+
"\\lVertT",
|
| 1486 |
+
"\\conf",
|
| 1487 |
+
"\\BinaryInfC",
|
| 1488 |
+
"\\gate",
|
| 1489 |
+
"\\path",
|
| 1490 |
+
"\\conv",
|
| 1491 |
+
"\\betaup",
|
| 1492 |
+
"\\CIRCLE",
|
| 1493 |
+
"\\catA",
|
| 1494 |
+
"\\Sg",
|
| 1495 |
+
"\\fun",
|
| 1496 |
+
"\\at",
|
| 1497 |
+
"\\rR",
|
| 1498 |
+
"\\fix",
|
| 1499 |
+
"\\strat",
|
| 1500 |
+
"\\upphi",
|
| 1501 |
+
"\\part",
|
| 1502 |
+
"\\bt",
|
| 1503 |
+
"\\upnu",
|
| 1504 |
+
"\\nomenclature",
|
| 1505 |
+
"\\colim",
|
| 1506 |
+
"\\rightleftharpoons",
|
| 1507 |
+
"\\nocite",
|
| 1508 |
+
"\\uptheta",
|
| 1509 |
+
"\\vvvert",
|
| 1510 |
+
"\\boolean",
|
| 1511 |
+
"\\grave",
|
| 1512 |
+
"\\captionsetup",
|
| 1513 |
+
"\\SH",
|
| 1514 |
+
"\\delimiter",
|
| 1515 |
+
"\\mathrsfs",
|
| 1516 |
+
"\\field",
|
| 1517 |
+
"\\Ga",
|
| 1518 |
+
"\\lastname",
|
| 1519 |
+
"\\Fr",
|
| 1520 |
+
"\\App",
|
| 1521 |
+
"\\Ker",
|
| 1522 |
+
"\\cmdkl",
|
| 1523 |
+
"\\CL",
|
| 1524 |
+
"\\bw",
|
| 1525 |
+
"\\citeyear",
|
| 1526 |
+
"\\huge",
|
| 1527 |
+
"\\lVertg",
|
| 1528 |
+
"\\mcD",
|
| 1529 |
+
"\\oalign",
|
| 1530 |
+
"\\bV",
|
| 1531 |
+
"\\loc",
|
| 1532 |
+
"\\KwOut",
|
| 1533 |
+
"\\Dc",
|
| 1534 |
+
"\\uX",
|
| 1535 |
+
"\\mbf",
|
| 1536 |
+
"\\rightarrowfill",
|
| 1537 |
+
"\\foreach",
|
| 1538 |
+
"\\shortversion",
|
| 1539 |
+
"\\blambda",
|
| 1540 |
+
"\\succsim",
|
| 1541 |
+
"\\brack",
|
| 1542 |
+
"\\gen",
|
| 1543 |
+
"\\bfk",
|
| 1544 |
+
"\\AP",
|
| 1545 |
+
"\\ts",
|
| 1546 |
+
"\\dcal",
|
| 1547 |
+
"\\say",
|
| 1548 |
+
"\\mcA",
|
| 1549 |
+
"\\IR",
|
| 1550 |
+
"\\base",
|
| 1551 |
+
"\\coqdocvar",
|
| 1552 |
+
"\\inC",
|
| 1553 |
+
"\\qIW",
|
| 1554 |
+
"\\upepsilon",
|
| 1555 |
+
"\\rb",
|
| 1556 |
+
"\\circle",
|
| 1557 |
+
"\\bH",
|
| 1558 |
+
"\\gt",
|
| 1559 |
+
"\\hypo",
|
| 1560 |
+
"\\braces",
|
| 1561 |
+
"\\di",
|
| 1562 |
+
"\\of",
|
| 1563 |
+
"\\uprho",
|
| 1564 |
+
"\\mcM",
|
| 1565 |
+
"\\sh",
|
| 1566 |
+
"\\ve",
|
| 1567 |
+
"\\norma",
|
| 1568 |
+
"\\mycal",
|
| 1569 |
+
"\\an",
|
| 1570 |
+
"\\point",
|
| 1571 |
+
"\\prob",
|
| 1572 |
+
"\\calR",
|
| 1573 |
+
"\\VertT",
|
| 1574 |
+
"\\sset",
|
| 1575 |
+
"\\scrO",
|
| 1576 |
+
"\\street",
|
| 1577 |
+
"\\AgdaFunction",
|
| 1578 |
+
"\\ncong",
|
| 1579 |
+
"\\shortmid",
|
| 1580 |
+
"\\Join",
|
| 1581 |
+
"\\delimsize",
|
| 1582 |
+
"\\bigtriangledown",
|
| 1583 |
+
"\\lleq",
|
| 1584 |
+
"\\bigO",
|
| 1585 |
+
"\\mr",
|
| 1586 |
+
"\\ind",
|
| 1587 |
+
"\\opt",
|
| 1588 |
+
"\\vertz",
|
| 1589 |
+
"\\normalcolor",
|
| 1590 |
+
"\\rar",
|
| 1591 |
+
"\\dabar",
|
| 1592 |
+
"\\Ac",
|
| 1593 |
+
"\\Block",
|
| 1594 |
+
"\\mcC",
|
| 1595 |
+
"\\CH",
|
| 1596 |
+
"\\hp",
|
| 1597 |
+
"\\ifstrequal",
|
| 1598 |
+
"\\Lie",
|
| 1599 |
+
"\\jot",
|
| 1600 |
+
"\\xleftrightarrow",
|
| 1601 |
+
"\\zo",
|
| 1602 |
+
"\\mathcalalt",
|
| 1603 |
+
"\\SetCell",
|
| 1604 |
+
"\\AgdaInductiveConstructor",
|
| 1605 |
+
"\\AgdaBound",
|
| 1606 |
+
"\\COMMENT",
|
| 1607 |
+
"\\matr",
|
| 1608 |
+
"\\vecsite",
|
| 1609 |
+
"\\Xfr",
|
| 1610 |
+
"\\twist",
|
| 1611 |
+
"\\frakm",
|
| 1612 |
+
"\\hdashline",
|
| 1613 |
+
"\\deltaup",
|
| 1614 |
+
"\\tor",
|
| 1615 |
+
"\\bfz",
|
| 1616 |
+
"\\td",
|
| 1617 |
+
"\\CD",
|
| 1618 |
+
"\\FCC",
|
| 1619 |
+
"\\ifstrempty",
|
| 1620 |
+
"\\hhline",
|
| 1621 |
+
"\\calJ",
|
| 1622 |
+
"\\bL",
|
| 1623 |
+
"\\calS",
|
| 1624 |
+
"\\leqno",
|
| 1625 |
+
"\\bbS",
|
| 1626 |
+
"\\Gal",
|
| 1627 |
+
"\\sout",
|
| 1628 |
+
"\\justifying",
|
| 1629 |
+
"\\lr",
|
| 1630 |
+
"\\qq",
|
| 1631 |
+
"\\fil",
|
| 1632 |
+
"\\rmd",
|
| 1633 |
+
"\\SetKwInOut",
|
| 1634 |
+
"\\bO",
|
| 1635 |
+
"\\noforkbox",
|
| 1636 |
+
"\\aff",
|
| 1637 |
+
"\\Tn",
|
| 1638 |
+
"\\with",
|
| 1639 |
+
"\\micro",
|
| 1640 |
+
"\\RETURN",
|
| 1641 |
+
"\\ang",
|
| 1642 |
+
"\\va",
|
| 1643 |
+
"\\lstset",
|
| 1644 |
+
"\\negthickspace",
|
| 1645 |
+
"\\colour",
|
| 1646 |
+
"\\ceqq",
|
| 1647 |
+
"\\pqty",
|
| 1648 |
+
"\\CP",
|
| 1649 |
+
"\\km",
|
| 1650 |
+
"\\stackinset",
|
| 1651 |
+
"\\grR",
|
| 1652 |
+
"\\Vertu",
|
| 1653 |
+
"\\bfb",
|
| 1654 |
+
"\\cf",
|
| 1655 |
+
"\\thickapprox",
|
| 1656 |
+
"\\mathsfit",
|
| 1657 |
+
"\\Ex",
|
| 1658 |
+
"\\vc",
|
| 1659 |
+
"\\ensurestackMath",
|
| 1660 |
+
"\\egroup",
|
| 1661 |
+
"\\next",
|
| 1662 |
+
"\\Ext",
|
| 1663 |
+
"\\eqsim",
|
| 1664 |
+
"\\curlyvee",
|
| 1665 |
+
"\\budget",
|
| 1666 |
+
"\\Int",
|
| 1667 |
+
"\\vertx",
|
| 1668 |
+
"\\pair",
|
| 1669 |
+
"\\sR",
|
| 1670 |
+
"\\CF",
|
| 1671 |
+
"\\complete",
|
| 1672 |
+
"\\fl",
|
| 1673 |
+
"\\Nilp",
|
| 1674 |
+
"\\given",
|
| 1675 |
+
"\\pb",
|
| 1676 |
+
"\\slshape",
|
| 1677 |
+
"\\fontencoding",
|
| 1678 |
+
"\\untl",
|
| 1679 |
+
"\\subeq",
|
| 1680 |
+
"\\fX",
|
| 1681 |
+
"\\vareps",
|
| 1682 |
+
"\\Arrowvert",
|
| 1683 |
+
"\\Oc",
|
| 1684 |
+
"\\vp",
|
| 1685 |
+
"\\FSpace",
|
| 1686 |
+
"\\mel",
|
| 1687 |
+
"\\Circle",
|
| 1688 |
+
"\\gammaup",
|
| 1689 |
+
"\\Cl",
|
| 1690 |
+
"\\Cr",
|
| 1691 |
+
"\\inp",
|
| 1692 |
+
"\\line",
|
| 1693 |
+
"\\nat",
|
| 1694 |
+
"\\Longleftarrow",
|
| 1695 |
+
"\\ro",
|
| 1696 |
+
"\\Fbold",
|
| 1697 |
+
"\\Fin",
|
| 1698 |
+
"\\leftrightarrows",
|
| 1699 |
+
"\\PT",
|
| 1700 |
+
"\\ti",
|
| 1701 |
+
"\\lVertv",
|
| 1702 |
+
"\\biguplus",
|
| 1703 |
+
"\\bbQ",
|
| 1704 |
+
"\\bfc",
|
| 1705 |
+
"\\zero",
|
| 1706 |
+
"\\AND",
|
| 1707 |
+
"\\trianglelefteqslant",
|
| 1708 |
+
"\\der",
|
| 1709 |
+
"\\boxminus",
|
| 1710 |
+
"\\bbE",
|
| 1711 |
+
"\\limitset",
|
| 1712 |
+
"\\sB",
|
| 1713 |
+
"\\specialrule",
|
| 1714 |
+
"\\newacronym",
|
| 1715 |
+
"\\MoveEqLeft",
|
| 1716 |
+
"\\step",
|
| 1717 |
+
"\\rL",
|
| 1718 |
+
"\\numexpr",
|
| 1719 |
+
"\\textless",
|
| 1720 |
+
"\\count",
|
| 1721 |
+
"\\tree",
|
| 1722 |
+
"\\lll",
|
| 1723 |
+
"\\dynkin",
|
| 1724 |
+
"\\eref",
|
| 1725 |
+
"\\potential",
|
| 1726 |
+
"\\scr",
|
| 1727 |
+
"\\Prob",
|
| 1728 |
+
"\\upvarphi",
|
| 1729 |
+
"\\lneq",
|
| 1730 |
+
"\\sb",
|
| 1731 |
+
"\\PY",
|
| 1732 |
+
"\\calV",
|
| 1733 |
+
"\\kwd",
|
| 1734 |
+
"\\bysame",
|
| 1735 |
+
"\\allpha",
|
| 1736 |
+
"\\textgoth",
|
| 1737 |
+
"\\shortminus",
|
| 1738 |
+
"\\grad",
|
| 1739 |
+
"\\milli",
|
| 1740 |
+
"\\group",
|
| 1741 |
+
"\\smashoperator",
|
| 1742 |
+
"\\hertz",
|
| 1743 |
+
"\\BlankLine",
|
| 1744 |
+
"\\thickmuskip",
|
| 1745 |
+
"\\lb",
|
| 1746 |
+
"\\bfC",
|
| 1747 |
+
"\\Stab",
|
| 1748 |
+
"\\IEEEpeerreviewmaketitle",
|
| 1749 |
+
"\\fs",
|
| 1750 |
+
"\\per",
|
| 1751 |
+
"\\oo",
|
| 1752 |
+
"\\fh",
|
| 1753 |
+
"\\kh",
|
| 1754 |
+
"\\tuple",
|
| 1755 |
+
"\\trans",
|
| 1756 |
+
"\\mymu",
|
| 1757 |
+
"\\sumnonlimits",
|
| 1758 |
+
"\\Rx",
|
| 1759 |
+
"\\mathup",
|
| 1760 |
+
"\\catcode",
|
| 1761 |
+
"\\bn",
|
| 1762 |
+
"\\tx",
|
| 1763 |
+
"\\La",
|
| 1764 |
+
"\\negmedspace",
|
| 1765 |
+
"\\Th",
|
| 1766 |
+
"\\oldin",
|
| 1767 |
+
"\\differential",
|
| 1768 |
+
"\\mathfrc",
|
| 1769 |
+
"\\mymuii",
|
| 1770 |
+
"\\sststile",
|
| 1771 |
+
"\\lvertz",
|
| 1772 |
+
"\\bigodot",
|
| 1773 |
+
"\\upvarepsilon",
|
| 1774 |
+
"\\looparrowright",
|
| 1775 |
+
"\\lang",
|
| 1776 |
+
"\\CI",
|
| 1777 |
+
"\\AgdaOperator",
|
| 1778 |
+
"\\lVertA",
|
| 1779 |
+
"\\cJ",
|
| 1780 |
+
"\\dal",
|
| 1781 |
+
"\\Fix",
|
| 1782 |
+
"\\xmapsto",
|
| 1783 |
+
"\\acs",
|
| 1784 |
+
"\\bigtimes",
|
| 1785 |
+
"\\bbF",
|
| 1786 |
+
"\\tld",
|
| 1787 |
+
"\\sF",
|
| 1788 |
+
"\\gb",
|
| 1789 |
+
"\\ctrl",
|
| 1790 |
+
"\\sA",
|
| 1791 |
+
"\\interleave",
|
| 1792 |
+
"\\underleftarrow",
|
| 1793 |
+
"\\varphimm",
|
| 1794 |
+
"\\skewfactor",
|
| 1795 |
+
"\\mn",
|
| 1796 |
+
"\\smalltriangleleft",
|
| 1797 |
+
"\\Hur",
|
| 1798 |
+
"\\caA",
|
| 1799 |
+
"\\frakp",
|
| 1800 |
+
"\\bY",
|
| 1801 |
+
"\\err",
|
| 1802 |
+
"\\Map",
|
| 1803 |
+
"\\dpoint",
|
| 1804 |
+
"\\textgreater",
|
| 1805 |
+
"\\displaybreak",
|
| 1806 |
+
"\\roth",
|
| 1807 |
+
"\\iddots",
|
| 1808 |
+
"\\vep",
|
| 1809 |
+
"\\mX",
|
| 1810 |
+
"\\bbA",
|
| 1811 |
+
"\\blank",
|
| 1812 |
+
"\\algorithmicindent",
|
| 1813 |
+
"\\onedot",
|
| 1814 |
+
"\\Rep",
|
| 1815 |
+
"\\curraddr",
|
| 1816 |
+
"\\cx",
|
| 1817 |
+
"\\calL",
|
| 1818 |
+
"\\varUpsilon",
|
| 1819 |
+
"\\Norm",
|
| 1820 |
+
"\\isaid",
|
| 1821 |
+
"\\DontPrintSemicolon",
|
| 1822 |
+
"\\lvertu",
|
| 1823 |
+
"\\thepage",
|
| 1824 |
+
"\\ps",
|
| 1825 |
+
"\\Mat",
|
| 1826 |
+
"\\varsubsetneq",
|
| 1827 |
+
"\\swarrow",
|
| 1828 |
+
"\\nrightarrow",
|
| 1829 |
+
"\\mathrmbf",
|
| 1830 |
+
"\\xR",
|
| 1831 |
+
"\\Alg",
|
| 1832 |
+
"\\bi",
|
| 1833 |
+
"\\bbW",
|
| 1834 |
+
"\\lambdaup",
|
| 1835 |
+
"\\ppppcarac",
|
| 1836 |
+
"\\leftrightsquigarrow",
|
| 1837 |
+
"\\xymatrixcolsep",
|
| 1838 |
+
"\\frakS",
|
| 1839 |
+
"\\carpetV",
|
| 1840 |
+
"\\textormath",
|
| 1841 |
+
"\\veebar",
|
| 1842 |
+
"\\centernot",
|
| 1843 |
+
"\\BB",
|
| 1844 |
+
"\\Yright",
|
| 1845 |
+
"\\surname",
|
| 1846 |
+
"\\sY",
|
| 1847 |
+
"\\qp",
|
| 1848 |
+
"\\spec",
|
| 1849 |
+
"\\comm",
|
| 1850 |
+
"\\MRhref",
|
| 1851 |
+
"\\sgn",
|
| 1852 |
+
"\\curvearrowleft",
|
| 1853 |
+
"\\pot",
|
| 1854 |
+
"\\MSC",
|
| 1855 |
+
"\\EuFrak",
|
| 1856 |
+
"\\IP",
|
| 1857 |
+
"\\InputIfFileExists",
|
| 1858 |
+
"\\ifinner",
|
| 1859 |
+
"\\xmath",
|
| 1860 |
+
"\\thead",
|
| 1861 |
+
"\\sheaf",
|
| 1862 |
+
"\\upPhi",
|
| 1863 |
+
"\\blw",
|
| 1864 |
+
"\\neighfun",
|
| 1865 |
+
"\\Dd",
|
| 1866 |
+
"\\bU",
|
| 1867 |
+
"\\pp",
|
| 1868 |
+
"\\col",
|
| 1869 |
+
"\\StrLen",
|
| 1870 |
+
"\\UIC",
|
| 1871 |
+
"\\sO",
|
| 1872 |
+
"\\mathoo",
|
| 1873 |
+
"\\veps",
|
| 1874 |
+
"\\lbar",
|
| 1875 |
+
"\\ta",
|
| 1876 |
+
"\\qedsymbol",
|
| 1877 |
+
"\\basefield",
|
| 1878 |
+
"\\ENSURE",
|
| 1879 |
+
"\\bigsqcap",
|
| 1880 |
+
"\\font",
|
| 1881 |
+
"\\Span",
|
| 1882 |
+
"\\mcL",
|
| 1883 |
+
"\\bbbeta",
|
| 1884 |
+
"\\Mult",
|
| 1885 |
+
"\\nvDash",
|
| 1886 |
+
"\\ri",
|
| 1887 |
+
"\\is",
|
| 1888 |
+
"\\Check",
|
| 1889 |
+
"\\lbrbrak",
|
| 1890 |
+
"\\rbrbrak",
|
| 1891 |
+
"\\cm",
|
| 1892 |
+
"\\black",
|
| 1893 |
+
"\\Upgamma",
|
| 1894 |
+
"\\bfy",
|
| 1895 |
+
"\\frakM",
|
| 1896 |
+
"\\Nf",
|
| 1897 |
+
"\\Homeo",
|
| 1898 |
+
"\\ym",
|
| 1899 |
+
"\\refcite",
|
| 1900 |
+
"\\xr",
|
| 1901 |
+
"\\fb",
|
| 1902 |
+
"\\DeltaN",
|
| 1903 |
+
"\\newcount",
|
| 1904 |
+
"\\word",
|
| 1905 |
+
"\\dddot",
|
| 1906 |
+
"\\rTo",
|
| 1907 |
+
"\\bk",
|
| 1908 |
+
"\\width",
|
| 1909 |
+
"\\glsxtrshort",
|
| 1910 |
+
"\\fboxsep",
|
| 1911 |
+
"\\msD",
|
| 1912 |
+
"\\lVerta",
|
| 1913 |
+
"\\settoheight",
|
| 1914 |
+
"\\Conf",
|
| 1915 |
+
"\\fr",
|
| 1916 |
+
"\\ea",
|
| 1917 |
+
"\\strategy",
|
| 1918 |
+
"\\mscr",
|
| 1919 |
+
"\\Function",
|
| 1920 |
+
"\\map",
|
| 1921 |
+
"\\PSH",
|
| 1922 |
+
"\\Space",
|
| 1923 |
+
"\\pf",
|
| 1924 |
+
"\\AXC",
|
| 1925 |
+
"\\onfact",
|
| 1926 |
+
"\\ytableausetup",
|
| 1927 |
+
"\\flushleft",
|
| 1928 |
+
"\\endgraf",
|
| 1929 |
+
"\\aut",
|
| 1930 |
+
"\\BL",
|
| 1931 |
+
"\\calf",
|
| 1932 |
+
"\\emb",
|
| 1933 |
+
"\\genpoly",
|
| 1934 |
+
"\\kr",
|
| 1935 |
+
"\\iso",
|
| 1936 |
+
"\\ecStates",
|
| 1937 |
+
"\\weight",
|
| 1938 |
+
"\\oper",
|
| 1939 |
+
"\\fn",
|
| 1940 |
+
"\\sX",
|
| 1941 |
+
"\\smwhtdiamond",
|
| 1942 |
+
"\\bPi",
|
| 1943 |
+
"\\nano",
|
| 1944 |
+
"\\framebox",
|
| 1945 |
+
"\\lstick",
|
| 1946 |
+
"\\inS",
|
| 1947 |
+
"\\dbinom",
|
| 1948 |
+
"\\langleu",
|
| 1949 |
+
"\\aftergroup",
|
| 1950 |
+
"\\Real",
|
| 1951 |
+
"\\Free",
|
| 1952 |
+
"\\ca",
|
| 1953 |
+
"\\EndFunction",
|
| 1954 |
+
"\\fref",
|
| 1955 |
+
"\\psfrag",
|
| 1956 |
+
"\\mathbx",
|
| 1957 |
+
"\\geqq",
|
| 1958 |
+
"\\sqsupseteq",
|
| 1959 |
+
"\\Hc",
|
| 1960 |
+
"\\sP",
|
| 1961 |
+
"\\arr",
|
| 1962 |
+
"\\lp",
|
| 1963 |
+
"\\Gm",
|
| 1964 |
+
"\\sfR",
|
| 1965 |
+
"\\dotso",
|
| 1966 |
+
"\\parfillskip",
|
| 1967 |
+
"\\asg",
|
| 1968 |
+
"\\diagbox",
|
| 1969 |
+
"\\SU",
|
| 1970 |
+
"\\Pb",
|
| 1971 |
+
"\\striche",
|
| 1972 |
+
"\\ns",
|
| 1973 |
+
"\\ForAll",
|
| 1974 |
+
"\\form",
|
| 1975 |
+
"\\operatorfont",
|
| 1976 |
+
"\\Amc",
|
| 1977 |
+
"\\underrightarrow",
|
| 1978 |
+
"\\uY",
|
| 1979 |
+
"\\nleqslant",
|
| 1980 |
+
"\\rp",
|
| 1981 |
+
"\\mcG",
|
| 1982 |
+
"\\young",
|
| 1983 |
+
"\\inI",
|
| 1984 |
+
"\\Seq",
|
| 1985 |
+
"\\ft",
|
| 1986 |
+
"\\runalt",
|
| 1987 |
+
"\\calB",
|
| 1988 |
+
"\\mathcolor",
|
| 1989 |
+
"\\Oo",
|
| 1990 |
+
"\\protected",
|
| 1991 |
+
"\\And",
|
| 1992 |
+
"\\dbar",
|
| 1993 |
+
"\\pos",
|
| 1994 |
+
"\\Ccal",
|
| 1995 |
+
"\\interp",
|
| 1996 |
+
"\\ek",
|
| 1997 |
+
"\\setstretch",
|
| 1998 |
+
"\\meqref",
|
| 1999 |
+
"\\solid",
|
| 2000 |
+
"\\Cantor",
|
| 2001 |
+
"\\Chan",
|
| 2002 |
+
"\\IT",
|
| 2003 |
+
"\\sfH",
|
| 2004 |
+
"\\statevar",
|
| 2005 |
+
"\\fcolorbox",
|
| 2006 |
+
"\\addvspace",
|
| 2007 |
+
"\\mm",
|
| 2008 |
+
"\\CR",
|
| 2009 |
+
"\\calN",
|
| 2010 |
+
"\\cross"
|
| 2011 |
+
],
|
| 2012 |
+
"vocab_size": 48000
|
| 2013 |
+
}
|
tokenizer/latex_tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer/pdf_tags.json
ADDED
|
@@ -0,0 +1,1200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"special_tokens": [
|
| 3 |
+
"[PAD]",
|
| 4 |
+
"[UNK]",
|
| 5 |
+
"[BOS]",
|
| 6 |
+
"[EOS]"
|
| 7 |
+
],
|
| 8 |
+
"tag_tokens": [
|
| 9 |
+
"[CMMI10]",
|
| 10 |
+
"[CMR10]",
|
| 11 |
+
"[BR]",
|
| 12 |
+
"[CMSY10]",
|
| 13 |
+
"[CMMI12]",
|
| 14 |
+
"[CMR12]",
|
| 15 |
+
"[CMMI8]",
|
| 16 |
+
"[CMR8]",
|
| 17 |
+
"[/SUB]",
|
| 18 |
+
"[SUB]",
|
| 19 |
+
"[CMMI7]",
|
| 20 |
+
"[CMR7]",
|
| 21 |
+
"[SUP]",
|
| 22 |
+
"[/SUP]",
|
| 23 |
+
"[PARA]",
|
| 24 |
+
"[CMSY8]",
|
| 25 |
+
"[CMEX10]",
|
| 26 |
+
"[CMSY7]",
|
| 27 |
+
"[CMTI10]",
|
| 28 |
+
"[MSBM10]",
|
| 29 |
+
"[CMR6]",
|
| 30 |
+
"[CMMI6]",
|
| 31 |
+
"[SFRM1000]",
|
| 32 |
+
"[CMBX10]",
|
| 33 |
+
"[SFRM1095]",
|
| 34 |
+
"[CMTI12]",
|
| 35 |
+
"[txsys]",
|
| 36 |
+
"[SFRM1200]",
|
| 37 |
+
"[URWPalladioL-Roma]",
|
| 38 |
+
"[CMR5]",
|
| 39 |
+
"[CMR9]",
|
| 40 |
+
"[CMMI5]",
|
| 41 |
+
"[CMMI9]",
|
| 42 |
+
"[URWPalladioL-Ital]",
|
| 43 |
+
"[EUFM10]",
|
| 44 |
+
"[NewTXMI]",
|
| 45 |
+
"[PAGE]",
|
| 46 |
+
"[TeXGyreTermesX-Regular]",
|
| 47 |
+
"[CMSY6]",
|
| 48 |
+
"[MSAM10]",
|
| 49 |
+
"[CMBX12]",
|
| 50 |
+
"[rtxmi]",
|
| 51 |
+
"[txsy]",
|
| 52 |
+
"[TeX-matha10]",
|
| 53 |
+
"[MnSymbol10]",
|
| 54 |
+
"[CMMIB10]",
|
| 55 |
+
"[LinLibertineT]",
|
| 56 |
+
"[CMSY5]",
|
| 57 |
+
"[Utopia-Regular]",
|
| 58 |
+
"[LibertineMathMI]",
|
| 59 |
+
"[rsfs10]",
|
| 60 |
+
"[SFTI1000]",
|
| 61 |
+
"[rtxr]",
|
| 62 |
+
"[EURM10]",
|
| 63 |
+
"[CMSS10]",
|
| 64 |
+
"[CMSY9]",
|
| 65 |
+
"[NewTXMI7]",
|
| 66 |
+
"[SFTI1095]",
|
| 67 |
+
"[Utopia-Italic]",
|
| 68 |
+
"[CharterBT-Roman]",
|
| 69 |
+
"[SFTI1200]",
|
| 70 |
+
"[EUSM10]",
|
| 71 |
+
"[txmiaX]",
|
| 72 |
+
"[MSBM7]",
|
| 73 |
+
"[CharterBT-Italic]",
|
| 74 |
+
"[PazoMath-Italic]",
|
| 75 |
+
"[TeX-matha12]",
|
| 76 |
+
"[CMCSC10]",
|
| 77 |
+
"[StandardSymL]",
|
| 78 |
+
"[MnSymbol12]",
|
| 79 |
+
"[CMBX8]",
|
| 80 |
+
"[TeX-matha8]",
|
| 81 |
+
"[CMSS8]",
|
| 82 |
+
"[STIXMath-Italic]",
|
| 83 |
+
"[Kp-Regular]",
|
| 84 |
+
"[MnSymbol8]",
|
| 85 |
+
"[LibertineMathMI7]",
|
| 86 |
+
"[pxsys]",
|
| 87 |
+
"[CMBX7]",
|
| 88 |
+
"[STIXMath-Regular]",
|
| 89 |
+
"[txexs]",
|
| 90 |
+
"[NewPXMI]",
|
| 91 |
+
"[TeXGyrePagellaX-Regular]",
|
| 92 |
+
"[SFRM0900]",
|
| 93 |
+
"[MnSymbol7]",
|
| 94 |
+
"[CMBX9]",
|
| 95 |
+
"[EURM7]",
|
| 96 |
+
"[txex]",
|
| 97 |
+
"[CMTI9]",
|
| 98 |
+
"[SFBX1000]",
|
| 99 |
+
"[SFRM0800]",
|
| 100 |
+
"[CMSS12]",
|
| 101 |
+
"[SFBX1095]",
|
| 102 |
+
"[EUFM7]",
|
| 103 |
+
"[txsyb]",
|
| 104 |
+
"[CMTT10]",
|
| 105 |
+
"[BBOLD10]",
|
| 106 |
+
"[SFBX1200]",
|
| 107 |
+
"[TeX-matha7]",
|
| 108 |
+
"[CMR17]",
|
| 109 |
+
"[CenturySchL-Roma]",
|
| 110 |
+
"[Pxsy]",
|
| 111 |
+
"[TeX-mathx10]",
|
| 112 |
+
"[CMEX8]",
|
| 113 |
+
"[TeXGyreTermesX-Italic]",
|
| 114 |
+
"[LinLibertineTI]",
|
| 115 |
+
"[URWPalladioL-Bold]",
|
| 116 |
+
"[Rpxmi]",
|
| 117 |
+
"[CMMIB8]",
|
| 118 |
+
"[STIXGeneral-Regular]",
|
| 119 |
+
"[ArialMT]",
|
| 120 |
+
"[CenturySchL-Ital]",
|
| 121 |
+
"[TeXGyreTermes-Regular]",
|
| 122 |
+
"[PazoMath]",
|
| 123 |
+
"[TeXGyreTermesX-Bold]",
|
| 124 |
+
"[esint10]",
|
| 125 |
+
"[CMMIB7]",
|
| 126 |
+
"[CMEX9]",
|
| 127 |
+
"[MathematicaSans]",
|
| 128 |
+
"[DejaVuSans]",
|
| 129 |
+
"[SFRM0700]",
|
| 130 |
+
"[CMEX7]",
|
| 131 |
+
"[CMTI8]",
|
| 132 |
+
"[stmary10]",
|
| 133 |
+
"[Helvetica]",
|
| 134 |
+
"[PazoMathBlackboardBold]",
|
| 135 |
+
"[dsrom10]",
|
| 136 |
+
"[TimesNewRomanPSMT]",
|
| 137 |
+
"[LinLibertineTB]",
|
| 138 |
+
"[Rpxr]",
|
| 139 |
+
"[CMTT8]",
|
| 140 |
+
"[TeXGyrePagella-Regular]",
|
| 141 |
+
"[Baskervaldx-Reg]",
|
| 142 |
+
"[CMBXTI10]",
|
| 143 |
+
"[COL]",
|
| 144 |
+
"[DejaVuSans-Oblique]",
|
| 145 |
+
"[NewTXMI5]",
|
| 146 |
+
"[BoondoxCalligraphic-Regu]",
|
| 147 |
+
"[txsya]",
|
| 148 |
+
"[LinBiolinumT]",
|
| 149 |
+
"[NimbusSanL-Regu]",
|
| 150 |
+
"[Unnamed-T3]",
|
| 151 |
+
"[XYATIP-Medium]",
|
| 152 |
+
"[MSAM7]",
|
| 153 |
+
"[XCharter-Roman]",
|
| 154 |
+
"[SFRM0600]",
|
| 155 |
+
"[txmia]",
|
| 156 |
+
"[CMSL10]",
|
| 157 |
+
"[Times-Roman]",
|
| 158 |
+
"[MnSymbol9]",
|
| 159 |
+
"[LibertineMathRM]",
|
| 160 |
+
"[STIXGeneral-Italic]",
|
| 161 |
+
"[txsym]",
|
| 162 |
+
"[Symbol]",
|
| 163 |
+
"[LibertinusSerif-Regular]",
|
| 164 |
+
"[SFTT1000]",
|
| 165 |
+
"[CMSSBX10]",
|
| 166 |
+
"[TeX-matha6]",
|
| 167 |
+
"[Yhcmex]",
|
| 168 |
+
"[CMTT12]",
|
| 169 |
+
"[pxmiaX]",
|
| 170 |
+
"[CMBSY10]",
|
| 171 |
+
"[BBOLD7]",
|
| 172 |
+
"[MnSymbol6]",
|
| 173 |
+
"[NimbusMonL-Regu]",
|
| 174 |
+
"[Mathematica]",
|
| 175 |
+
"[DutchCalligraphic-Regula]",
|
| 176 |
+
"[rsfs7]",
|
| 177 |
+
"[fbb-Regular]",
|
| 178 |
+
"[CMBX6]",
|
| 179 |
+
"[CharterBT-Bold]",
|
| 180 |
+
"[TeXPalladioL-SC]",
|
| 181 |
+
"[SFCC1000]",
|
| 182 |
+
"[LinLibertineTZ]",
|
| 183 |
+
"[CMTI7]",
|
| 184 |
+
"[rtxsc]",
|
| 185 |
+
"[EUSM7]",
|
| 186 |
+
"[STIXMathExtensions-Regul]",
|
| 187 |
+
"[TeXGyrePagellaX-Italic]",
|
| 188 |
+
"[txsyc]",
|
| 189 |
+
"[CMMIB9]",
|
| 190 |
+
"[NewTXBMI]",
|
| 191 |
+
"[URWChanceryL-MediItal]",
|
| 192 |
+
"[SFTI0900]",
|
| 193 |
+
"[SFBX0900]",
|
| 194 |
+
"[Arial-BoldMT]",
|
| 195 |
+
"[FdSymbolF-Book]",
|
| 196 |
+
"[LASY10]",
|
| 197 |
+
"[Utopia-Bold]",
|
| 198 |
+
"[CMTT9]",
|
| 199 |
+
"[EUEX10]",
|
| 200 |
+
"[BaskervaldADFStd-Regular]",
|
| 201 |
+
"[SFBX1440]",
|
| 202 |
+
"[SFRM1440]",
|
| 203 |
+
"[XCharterMathMI]",
|
| 204 |
+
"[STIXMathCalligraphy-Regu]",
|
| 205 |
+
"[CMB10]",
|
| 206 |
+
"[MnSymbol5]",
|
| 207 |
+
"[STIXTwoMath]",
|
| 208 |
+
"[Pxex]",
|
| 209 |
+
"[LibertineMathMI5]",
|
| 210 |
+
"[XYDASH-Medium]",
|
| 211 |
+
"[Cmr10]",
|
| 212 |
+
"[CMSS9]",
|
| 213 |
+
"[TimesNewRomanPS-ItalicMT]",
|
| 214 |
+
"[SFORM10]",
|
| 215 |
+
"[SFCC1095]",
|
| 216 |
+
"[Cmmi10]",
|
| 217 |
+
"[SFTT1095]",
|
| 218 |
+
"[OAMathSymbols10]",
|
| 219 |
+
"[SFSS1095]",
|
| 220 |
+
"[CambriaMath]",
|
| 221 |
+
"[EBGaramond-Regular]",
|
| 222 |
+
"[TeXGyreTermes-Italic]",
|
| 223 |
+
"[TeX-matha5]",
|
| 224 |
+
"[NimbusSanL-Bold]",
|
| 225 |
+
"[Arial-ItalicMT]",
|
| 226 |
+
"[CMBX5]",
|
| 227 |
+
"[dsrom12]",
|
| 228 |
+
"[FdSymbolA-Book]",
|
| 229 |
+
"[Baskervaldx-Ita]",
|
| 230 |
+
"[Times-Italic]",
|
| 231 |
+
"[MSBM5]",
|
| 232 |
+
"[rntxmi7]",
|
| 233 |
+
"[TimesNewRomanPS-BoldMT]",
|
| 234 |
+
"[SFCC1200]",
|
| 235 |
+
"[Pxmia]",
|
| 236 |
+
"[LINE10]",
|
| 237 |
+
"[TeXGyreSchola-Regular]",
|
| 238 |
+
"[GFSArtemisia-Regular]",
|
| 239 |
+
"[dsrom8]",
|
| 240 |
+
"[Kp-Italic]",
|
| 241 |
+
"[CMSL12]",
|
| 242 |
+
"[STIXTwoText]",
|
| 243 |
+
"[Courier]",
|
| 244 |
+
"[LinLibertineI]",
|
| 245 |
+
"[MathematicaSans-Bold]",
|
| 246 |
+
"[TeXGyreHeros-Regular]",
|
| 247 |
+
"[SFTI0800]",
|
| 248 |
+
"[Crimson-Roman]",
|
| 249 |
+
"[Pxsyb]",
|
| 250 |
+
"[stxscr]",
|
| 251 |
+
"[CMSSI10]",
|
| 252 |
+
"[CMMIB6]",
|
| 253 |
+
"[BeraSerif-Roman]",
|
| 254 |
+
"[EBGaramond-Italic]",
|
| 255 |
+
"[SFTT0900]",
|
| 256 |
+
"[Cochineal-Roman]",
|
| 257 |
+
"[LCIRCLE10]",
|
| 258 |
+
"[TeXGyrePagella-Italic]",
|
| 259 |
+
"[HFBR10]",
|
| 260 |
+
"[STIXMathScript-Regular]",
|
| 261 |
+
"[VNR10]",
|
| 262 |
+
"[CMSSI12]",
|
| 263 |
+
"[SFSS1000]",
|
| 264 |
+
"[XYCMAT-Medium]",
|
| 265 |
+
"[TeX-mathb10]",
|
| 266 |
+
"[Erewhon-Regular]",
|
| 267 |
+
"[STIXMathBlackboard-Regul]",
|
| 268 |
+
"[TeXGyreHeros-Bold]",
|
| 269 |
+
"[cochMI]",
|
| 270 |
+
"[HFBRMI10]",
|
| 271 |
+
"[EUSB10]",
|
| 272 |
+
"[TeXGyrePagellaX-Bold]",
|
| 273 |
+
"[TeX-matha9]",
|
| 274 |
+
"[Calibri]",
|
| 275 |
+
"[AntykwaTorunska-Italic]",
|
| 276 |
+
"[FdSymbolB-Book]",
|
| 277 |
+
"[Dingbats]",
|
| 278 |
+
"[SFSL1200]",
|
| 279 |
+
"[Helvetica-Bold]",
|
| 280 |
+
"[EUFM5]",
|
| 281 |
+
"[LibertineMathBMI]",
|
| 282 |
+
"[BoondoxDoubleStruck-Regu]",
|
| 283 |
+
"[DejaVuSerif]",
|
| 284 |
+
"[AntykwaTorunska-Regular]",
|
| 285 |
+
"[ComputerModernSans-Mathi]",
|
| 286 |
+
"[ztm-Reg]",
|
| 287 |
+
"[TeXGyreBonum-Regular]",
|
| 288 |
+
"[wasy10]",
|
| 289 |
+
"[erewMI]",
|
| 290 |
+
"[Kp-Medium]",
|
| 291 |
+
"[SFTT0800]",
|
| 292 |
+
"[rtxbmi]",
|
| 293 |
+
"[SFBX1728]",
|
| 294 |
+
"[STIXGeneral-Bold]",
|
| 295 |
+
"[CMSSI8]",
|
| 296 |
+
"[EURM5]",
|
| 297 |
+
"[LinBiolinumTB]",
|
| 298 |
+
"[txmiaSTbb]",
|
| 299 |
+
"[SFBX0800]",
|
| 300 |
+
"[EURB10]",
|
| 301 |
+
"[Times-Bold]",
|
| 302 |
+
"[fbb-Italic]",
|
| 303 |
+
"[Domitian-Roman]",
|
| 304 |
+
"[Alegreya-Regular]",
|
| 305 |
+
"[SFSS1200]",
|
| 306 |
+
"[XCharter-Italic]",
|
| 307 |
+
"[URWPalladioL-BoldItal]",
|
| 308 |
+
"[STIXMath-Bold]",
|
| 309 |
+
"[LinLibertineI7]",
|
| 310 |
+
"[TeXGyreTermes-Bold]",
|
| 311 |
+
"[LibertinusSerif-Italic]",
|
| 312 |
+
"[Utopia-BoldItalic]",
|
| 313 |
+
"[Cmsy10]",
|
| 314 |
+
"[CMMIB5]",
|
| 315 |
+
"[CenturySchL-Bold]",
|
| 316 |
+
"[GeV]",
|
| 317 |
+
"[NotoMathMI]",
|
| 318 |
+
"[ESSTIX-Thirteen]",
|
| 319 |
+
"[SFTT1200]",
|
| 320 |
+
"[SFTI1440]",
|
| 321 |
+
"[SFBI1000]",
|
| 322 |
+
"[SFBI1095]",
|
| 323 |
+
"[SFRM0500]",
|
| 324 |
+
"[NotoSerif-Regular]",
|
| 325 |
+
"[BaskervaldADFStd-Italic]",
|
| 326 |
+
"[Heuristica-Regular]",
|
| 327 |
+
"[newtxtt]",
|
| 328 |
+
"[rsfs5]",
|
| 329 |
+
"[DejaVuSans-Bold]",
|
| 330 |
+
"[SymbolMT]",
|
| 331 |
+
"[BeraSansMono-Roman]",
|
| 332 |
+
"[VnBitstreamCharter]",
|
| 333 |
+
"[Mathematica1]",
|
| 334 |
+
"[stmary8]",
|
| 335 |
+
"[URWBookmanL-Ligh]",
|
| 336 |
+
"[txtt]",
|
| 337 |
+
"[txexa]",
|
| 338 |
+
"[SFSI1095]",
|
| 339 |
+
"[NewTXBMI7]",
|
| 340 |
+
"[Kerkis]",
|
| 341 |
+
"[CMBSY7]",
|
| 342 |
+
"[NimbusSanL-ReguItal]",
|
| 343 |
+
"[SourceSerifPro-Regular]",
|
| 344 |
+
"[CMUSerif-Roman]",
|
| 345 |
+
"[SFSS0800]",
|
| 346 |
+
"[MinLibReg]",
|
| 347 |
+
"[SFSS0900]",
|
| 348 |
+
"[XCharter-Bold]",
|
| 349 |
+
"[stickstooMath-Italic]",
|
| 350 |
+
"[Calibri-Bold]",
|
| 351 |
+
"[TeXPalladioL-BoldOsF]",
|
| 352 |
+
"[CMBSY8]",
|
| 353 |
+
"[SFTI0700]",
|
| 354 |
+
"[MeV]",
|
| 355 |
+
"[SFCC0900]",
|
| 356 |
+
"[Helvetica-Oblique]",
|
| 357 |
+
"[Mathematica-Bold]",
|
| 358 |
+
"[rtxi]",
|
| 359 |
+
"[TeXGyrePagella-Bold]",
|
| 360 |
+
"[LinBiolinumTI]",
|
| 361 |
+
"[XYBSQL-Medium]",
|
| 362 |
+
"[ntxsups-Regular]",
|
| 363 |
+
"[STIXMathSans-Regular]",
|
| 364 |
+
"[LatinModernMath-Regular]",
|
| 365 |
+
"[SFOTI10]",
|
| 366 |
+
"[Aptos]",
|
| 367 |
+
"[CMSS17]",
|
| 368 |
+
"[CharterBT-BoldItalic]",
|
| 369 |
+
"[STIXTwoText-Italic]",
|
| 370 |
+
"[Verdana]",
|
| 371 |
+
"[BOONDOXUprScr-Regular]",
|
| 372 |
+
"[Arial-BoldItalicMT]",
|
| 373 |
+
"[TeXGyreSchola-Italic]",
|
| 374 |
+
"[rtxmi7]",
|
| 375 |
+
"[WNCYR10]",
|
| 376 |
+
"[stmary7]",
|
| 377 |
+
"[rtcxr]",
|
| 378 |
+
"[EUFB10]",
|
| 379 |
+
"[MSAM5]",
|
| 380 |
+
"[Pxsya]",
|
| 381 |
+
"[F70]",
|
| 382 |
+
"[CMITT10]",
|
| 383 |
+
"[OldStandard-Regular]",
|
| 384 |
+
"[Erewhon-Math]",
|
| 385 |
+
"[LibertinusSans-Regular]",
|
| 386 |
+
"[HFBRSY10]",
|
| 387 |
+
"[NewPXBMI]",
|
| 388 |
+
"[CoelacanthExtraLt]",
|
| 389 |
+
"[TeX-mathb12]",
|
| 390 |
+
"[CormorantGaramond-Regula]",
|
| 391 |
+
"[Iwona-Italic]",
|
| 392 |
+
"[SFSX1095]",
|
| 393 |
+
"[Iwona-Regular]",
|
| 394 |
+
"[HelveticaNeue]",
|
| 395 |
+
"[csr10]",
|
| 396 |
+
"[SFRM1728]",
|
| 397 |
+
"[SFBX0700]",
|
| 398 |
+
"[Baskervaldx-Bol]",
|
| 399 |
+
"[PTSerif-Regular]",
|
| 400 |
+
"[VNTI10]",
|
| 401 |
+
"[txbsys]",
|
| 402 |
+
"[STIXMathFraktur-Regular]",
|
| 403 |
+
"[SFORM7]",
|
| 404 |
+
"[TimesLTStd-Roman]",
|
| 405 |
+
"[ComicSansMS]",
|
| 406 |
+
"[SFCC0800]",
|
| 407 |
+
"[HFBRMI8]",
|
| 408 |
+
"[rntxmi]",
|
| 409 |
+
"[LiberationSans]",
|
| 410 |
+
"[fbb-Bold]",
|
| 411 |
+
"[PazoMath-BoldItalic]",
|
| 412 |
+
"[HFBR8]",
|
| 413 |
+
"[TeX-mathc10]",
|
| 414 |
+
"[LinLibertineTBI]",
|
| 415 |
+
"[ArevSans-Roman]",
|
| 416 |
+
"[TimesNewRomanPS-BoldItal]",
|
| 417 |
+
"[txbmiaX]",
|
| 418 |
+
"[STIXTwoText-Bold]",
|
| 419 |
+
"[Pxsyc]",
|
| 420 |
+
"[stmary9]",
|
| 421 |
+
"[SFSL1095]",
|
| 422 |
+
"[SFSL1000]",
|
| 423 |
+
"[fm]",
|
| 424 |
+
"[TeX-vect10]",
|
| 425 |
+
"[BBOLD5]",
|
| 426 |
+
"[NimbusMonL-Bold]",
|
| 427 |
+
"[VenturisADF-Regular]",
|
| 428 |
+
"[NimbusSans-Regular]",
|
| 429 |
+
"[F89]",
|
| 430 |
+
"[Crimson-Italic]",
|
| 431 |
+
"[Times]",
|
| 432 |
+
"[SFSX0900]",
|
| 433 |
+
"[TeXGyreTermesX-BoldItali]",
|
| 434 |
+
"[EUEX8]",
|
| 435 |
+
"[SourceSerifPro-It]",
|
| 436 |
+
"[SFTI0600]",
|
| 437 |
+
"[Mathematica2]",
|
| 438 |
+
"[ComputerModernSans-Regul]",
|
| 439 |
+
"[CormorantGaramond-Light]",
|
| 440 |
+
"[Times-BoldItalic]",
|
| 441 |
+
"[ArevSans-Oblique]",
|
| 442 |
+
"[SFBI1200]",
|
| 443 |
+
"[BoondoxCalligraphic-Bold]",
|
| 444 |
+
"[SourceCodePro-Regular]",
|
| 445 |
+
"[rtxb]",
|
| 446 |
+
"[F109]",
|
| 447 |
+
"[yswab-Regular]",
|
| 448 |
+
"[TeX-mathb8]",
|
| 449 |
+
"[Lato-Regular]",
|
| 450 |
+
"[OptimisticDisp-Bd]",
|
| 451 |
+
"[NimbusMonL-ReguObli]",
|
| 452 |
+
"[LASY7]",
|
| 453 |
+
"[FdSymbolC-Book]",
|
| 454 |
+
"[Rpxsc]",
|
| 455 |
+
"[TeXGyreBonum-Italic]",
|
| 456 |
+
"[MyriadPro-Regular]",
|
| 457 |
+
"[Kerkis-Italic]",
|
| 458 |
+
"[txexas]",
|
| 459 |
+
"[EBGaramond-Bold]",
|
| 460 |
+
"[EUSM5]",
|
| 461 |
+
"[F75]",
|
| 462 |
+
"[grmn1000]",
|
| 463 |
+
"[LibertinusSerif-Bold]",
|
| 464 |
+
"[SFSX1200]",
|
| 465 |
+
"[SFRM2074]",
|
| 466 |
+
"[NCXMathMI]",
|
| 467 |
+
"[CMSL8]",
|
| 468 |
+
"[NimbusSanL-BoldItal]",
|
| 469 |
+
"[F40]",
|
| 470 |
+
"[BaskervaldADFStd-Bold]",
|
| 471 |
+
"[LinLibertine]",
|
| 472 |
+
"[NewCMMath-Regular]",
|
| 473 |
+
"[SFSX1440]",
|
| 474 |
+
"[Palatino-Roman]",
|
| 475 |
+
"[SFCC0700]",
|
| 476 |
+
"[SFBI0800]",
|
| 477 |
+
"[CMBSY9]",
|
| 478 |
+
"[Erewhon-Italic]",
|
| 479 |
+
"[MathematicaMono-Bold]",
|
| 480 |
+
"[LINEW10]",
|
| 481 |
+
"[STIXMath-BoldItalic]",
|
| 482 |
+
"[DejaVuSerif-Italic]",
|
| 483 |
+
"[FdSymbolE-Book]",
|
| 484 |
+
"[Domitian-Italic]",
|
| 485 |
+
"[SFST0900]",
|
| 486 |
+
"[F98]",
|
| 487 |
+
"[GFSArtemisia-Italic]",
|
| 488 |
+
"[F74]",
|
| 489 |
+
"[Consolas-Bold]",
|
| 490 |
+
"[F35]",
|
| 491 |
+
"[CMUSerif-Italic]",
|
| 492 |
+
"[F42]",
|
| 493 |
+
"[SFRB1000]",
|
| 494 |
+
"[TimesLTStd-Italic]",
|
| 495 |
+
"[IwonaLight-Italic]",
|
| 496 |
+
"[F251]",
|
| 497 |
+
"[Consolas]",
|
| 498 |
+
"[Calibri-Italic]",
|
| 499 |
+
"[STIXMathTyperwriter-Regu]",
|
| 500 |
+
"[cmr10]",
|
| 501 |
+
"[F38]",
|
| 502 |
+
"[Aptos-Bold]",
|
| 503 |
+
"[DroidSerif]",
|
| 504 |
+
"[IwonaLight-Regular]",
|
| 505 |
+
"[F88]",
|
| 506 |
+
"[F32]",
|
| 507 |
+
"[HelveticaNeue-Bold]",
|
| 508 |
+
"[Online]",
|
| 509 |
+
"[CMSL9]",
|
| 510 |
+
"[CMBSY6]",
|
| 511 |
+
"[zplx-regular]",
|
| 512 |
+
"[F101]",
|
| 513 |
+
"[F80]",
|
| 514 |
+
"[VnCharterBT-Italic]",
|
| 515 |
+
"[MicrosoftYaHei]",
|
| 516 |
+
"[i]",
|
| 517 |
+
"[LibertinusSans-Bold]",
|
| 518 |
+
"[STEP-Regular]",
|
| 519 |
+
"[LCIRCLEW10]",
|
| 520 |
+
"[F81]",
|
| 521 |
+
"[LibertineMathBMI7]",
|
| 522 |
+
"[PazoMath-Bold]",
|
| 523 |
+
"[Cambria]",
|
| 524 |
+
"[F15]",
|
| 525 |
+
"[FontAwesome]",
|
| 526 |
+
"[Arial]",
|
| 527 |
+
"[BitstreamVeraSans-Roman]",
|
| 528 |
+
"[rntxmi5]",
|
| 529 |
+
"[Cochineal-Italic]",
|
| 530 |
+
"[URWBookmanL-LighItal]",
|
| 531 |
+
"[TeX-mathb7]",
|
| 532 |
+
"[cmmi10]",
|
| 533 |
+
"[F69]",
|
| 534 |
+
"[BeraSansMono-Bold]",
|
| 535 |
+
"[F113]",
|
| 536 |
+
"[m]",
|
| 537 |
+
"[SFSX1728]",
|
| 538 |
+
"[F83]",
|
| 539 |
+
"[BBOLDX-Regular]",
|
| 540 |
+
"[F41]",
|
| 541 |
+
"[SFSI1200]",
|
| 542 |
+
"[LibertinusMono-Regular]",
|
| 543 |
+
"[F97]",
|
| 544 |
+
"[ComicSansMS-Bold]",
|
| 545 |
+
"[Cmex10]",
|
| 546 |
+
"[F90]",
|
| 547 |
+
"[ntxtmri]",
|
| 548 |
+
"[csr12]",
|
| 549 |
+
"[XYCIRC-Medium]",
|
| 550 |
+
"[s]",
|
| 551 |
+
"[LASY8]",
|
| 552 |
+
"[zsfmi-reg]",
|
| 553 |
+
"[F94]",
|
| 554 |
+
"[F72]",
|
| 555 |
+
"[DengXian-Bold]",
|
| 556 |
+
"[DengXian]",
|
| 557 |
+
"[SFSX1000]",
|
| 558 |
+
"[CMU10]",
|
| 559 |
+
"[DejaVuSansMono]",
|
| 560 |
+
"[PTSerif-Italic]",
|
| 561 |
+
"[XCharterMathBMI]",
|
| 562 |
+
"[STIXVariants-Regular]",
|
| 563 |
+
"[F106]",
|
| 564 |
+
"[F45]",
|
| 565 |
+
"[Pxbsyb]",
|
| 566 |
+
"[LinLibertineO]",
|
| 567 |
+
"[TeXGyreSchola-Bold]",
|
| 568 |
+
"[MathematicaMono]",
|
| 569 |
+
"[BeraSans-Roman]",
|
| 570 |
+
"[F33]",
|
| 571 |
+
"[F77]",
|
| 572 |
+
"[hep-ph]",
|
| 573 |
+
"[HFBRSY8]",
|
| 574 |
+
"[HFBRSL10]",
|
| 575 |
+
"[dmjhira]",
|
| 576 |
+
"[F53]",
|
| 577 |
+
"[F79]",
|
| 578 |
+
"[LibertinusMath-Regular]",
|
| 579 |
+
"[Kurier-Regular]",
|
| 580 |
+
"[TeXPalladioL-ItalicOsF]",
|
| 581 |
+
"[F95]",
|
| 582 |
+
"[SFSS0700]",
|
| 583 |
+
"[F39]",
|
| 584 |
+
"[F76]",
|
| 585 |
+
"[A]",
|
| 586 |
+
"[F99]",
|
| 587 |
+
"[Alegreya-Italic]",
|
| 588 |
+
"[dB]",
|
| 589 |
+
"[ygoth-Regular]",
|
| 590 |
+
"[TeXGyreHeros-Italic]",
|
| 591 |
+
"[F96]",
|
| 592 |
+
"[Heuristica-Italic]",
|
| 593 |
+
"[SFSC1000]",
|
| 594 |
+
"[DejaVuSerif-Bold]",
|
| 595 |
+
"[EURB7]",
|
| 596 |
+
"[NotoSerif-Italic]",
|
| 597 |
+
"[F82]",
|
| 598 |
+
"[F110]",
|
| 599 |
+
"[SFXC1000]",
|
| 600 |
+
"[MnSymbol-Bold8]",
|
| 601 |
+
"[F105]",
|
| 602 |
+
"[csti10]",
|
| 603 |
+
"[Tempora-Regular]",
|
| 604 |
+
"[STIXGeneral-BoldItalic]",
|
| 605 |
+
"[SimSun]",
|
| 606 |
+
"[F92]",
|
| 607 |
+
"[F114]",
|
| 608 |
+
"[FiraMono-Regular]",
|
| 609 |
+
"[SFSI1000]",
|
| 610 |
+
"[NCXFourierMI]",
|
| 611 |
+
"[LinLibertineI5]",
|
| 612 |
+
"[CMRoman-Regular]",
|
| 613 |
+
"[grmn0800]",
|
| 614 |
+
"[SourceSansPro-Regular]",
|
| 615 |
+
"[F36]",
|
| 616 |
+
"[txbsy]",
|
| 617 |
+
"[UnBatang]",
|
| 618 |
+
"[F85]",
|
| 619 |
+
"[Cabin-Regular]",
|
| 620 |
+
"[txUprCal-Regular]",
|
| 621 |
+
"[F2]",
|
| 622 |
+
"[F16]",
|
| 623 |
+
"[F63]",
|
| 624 |
+
"[VNBX10]",
|
| 625 |
+
"[F84]",
|
| 626 |
+
"[XCharterMathRM]",
|
| 627 |
+
"[F112]",
|
| 628 |
+
"[MarVoSym]",
|
| 629 |
+
"[DSSerif]",
|
| 630 |
+
"[Euclid]",
|
| 631 |
+
"[LASY9]",
|
| 632 |
+
"[SFIT1000]",
|
| 633 |
+
"[Verdana-Italic]",
|
| 634 |
+
"[NimbusRoman-Regular]",
|
| 635 |
+
"[F78]",
|
| 636 |
+
"[csti12]",
|
| 637 |
+
"[F65]",
|
| 638 |
+
"[Palatino-Italic]",
|
| 639 |
+
"[BeraSerif-Bold]",
|
| 640 |
+
"[TeXGyreAdventor-Regular]",
|
| 641 |
+
"[F1]",
|
| 642 |
+
"[F87]",
|
| 643 |
+
"[GeV2]",
|
| 644 |
+
"[SFRB1095]",
|
| 645 |
+
"[wasy7]",
|
| 646 |
+
"[TeXGyrePagellaX-BoldItal]",
|
| 647 |
+
"[TimesNewRoman]",
|
| 648 |
+
"[bbding]",
|
| 649 |
+
"[BDXsfmr-reg]",
|
| 650 |
+
"[F44]",
|
| 651 |
+
"[cmllr10]",
|
| 652 |
+
"[F120]",
|
| 653 |
+
"[Mathematica3]",
|
| 654 |
+
"[MFBOldstyle-Regular]",
|
| 655 |
+
"[F141]",
|
| 656 |
+
"[LucidaGrande]",
|
| 657 |
+
"[F108]",
|
| 658 |
+
"[HFBRBX10]",
|
| 659 |
+
"[TeXGyreBonum-Bold]",
|
| 660 |
+
"[MnSymbol-Bold10]",
|
| 661 |
+
"[newtxbtt]",
|
| 662 |
+
"[F133]",
|
| 663 |
+
"[F67]",
|
| 664 |
+
"[Crimson-Bold]",
|
| 665 |
+
"[VNR12]",
|
| 666 |
+
"[CMBSY5]",
|
| 667 |
+
"[BookmanOldStyle]",
|
| 668 |
+
"[NotoSans-Regular]",
|
| 669 |
+
"[ztm-RegIta]",
|
| 670 |
+
"[BeraSans-Bold]",
|
| 671 |
+
"[Calibri-BoldItalic]",
|
| 672 |
+
"[LiberationSerif]",
|
| 673 |
+
"[wasy8]",
|
| 674 |
+
"[SourceCodePro-Bold]",
|
| 675 |
+
"[MicrosoftYaHei-Bold]",
|
| 676 |
+
"[F66]",
|
| 677 |
+
"[F43]",
|
| 678 |
+
"[HelveticaNeue-Medium]",
|
| 679 |
+
"[Euclid-Italic]",
|
| 680 |
+
"[F62]",
|
| 681 |
+
"[TeXGyreAdventor-Bold]",
|
| 682 |
+
"[GFSArtemisia-Bold]",
|
| 683 |
+
"[Domitian-Bold]",
|
| 684 |
+
"[Helvetica-BoldOblique]",
|
| 685 |
+
"[F93]",
|
| 686 |
+
"[HFBRMB10]",
|
| 687 |
+
"[B]",
|
| 688 |
+
"[F136]",
|
| 689 |
+
"[CormorantGaramond-Bold]",
|
| 690 |
+
"[F54]",
|
| 691 |
+
"[EUEX7]",
|
| 692 |
+
"[F91]",
|
| 693 |
+
"[M]",
|
| 694 |
+
"[OAMathSymbols8]",
|
| 695 |
+
"[OpenSans-Regular]",
|
| 696 |
+
"[LucidaSansUnicode]",
|
| 697 |
+
"[GoMono]",
|
| 698 |
+
"[SFBI0600]",
|
| 699 |
+
"[zsfmia-reg]",
|
| 700 |
+
"[XYEUAT-Medium]",
|
| 701 |
+
"[S]",
|
| 702 |
+
"[SFORM5]",
|
| 703 |
+
"[Pxexa]",
|
| 704 |
+
"[SFBX0600]",
|
| 705 |
+
"[stmary6]",
|
| 706 |
+
"[j]",
|
| 707 |
+
"[Avenir-Book]",
|
| 708 |
+
"[ByteSans-Bold]",
|
| 709 |
+
"[F30]",
|
| 710 |
+
"[hep-lat]",
|
| 711 |
+
"[CormorantGaramond-Italic]",
|
| 712 |
+
"[SFSC1095]",
|
| 713 |
+
"[GentiumPlusPS]",
|
| 714 |
+
"[LinLibertineMT]",
|
| 715 |
+
"[CMUSansSerif]",
|
| 716 |
+
"[ntxsyralt]",
|
| 717 |
+
"[F68]",
|
| 718 |
+
"[SFBX2074]",
|
| 719 |
+
"[Rpxi]",
|
| 720 |
+
"[CMSSDC10]",
|
| 721 |
+
"[Verdana-Bold]",
|
| 722 |
+
"[F55]",
|
| 723 |
+
"[rntxbmi]",
|
| 724 |
+
"[F219]",
|
| 725 |
+
"[SFProDisplay-Bold]",
|
| 726 |
+
"[K]",
|
| 727 |
+
"[hep-th]",
|
| 728 |
+
"[LASY6]",
|
| 729 |
+
"[C]",
|
| 730 |
+
"[Helvetica-Light]",
|
| 731 |
+
"[Cochineal-Bold]",
|
| 732 |
+
"[TeXGyreHerosMakieRegular]",
|
| 733 |
+
"[Courier-Bold]",
|
| 734 |
+
"[L]",
|
| 735 |
+
"[CMBXSL10]",
|
| 736 |
+
"[LASY5]",
|
| 737 |
+
"[BookmanOldStyle-Italic]",
|
| 738 |
+
"[F71]",
|
| 739 |
+
"[HelveticaNeue-Light]",
|
| 740 |
+
"[CMUSerif-Bold]",
|
| 741 |
+
"[TeX-tipa12]",
|
| 742 |
+
"[F111]",
|
| 743 |
+
"[F176]",
|
| 744 |
+
"[T]",
|
| 745 |
+
"[TeX-tipa10]",
|
| 746 |
+
"[F61]",
|
| 747 |
+
"[F122]",
|
| 748 |
+
"[STIXSizeOneSym-Regular]",
|
| 749 |
+
"[Hz]",
|
| 750 |
+
"[P]",
|
| 751 |
+
"[Roboto-Italic]",
|
| 752 |
+
"[SFRM2488]",
|
| 753 |
+
"[manfnt]",
|
| 754 |
+
"[yfrak-Regular]",
|
| 755 |
+
"[LibertinusSerif-Semibold]",
|
| 756 |
+
"[MdSymbolA-Regular]",
|
| 757 |
+
"[F86]",
|
| 758 |
+
"[Lato-Bold]",
|
| 759 |
+
"[t]",
|
| 760 |
+
"[csbx10]",
|
| 761 |
+
"[ztm-Med]",
|
| 762 |
+
"[F146]",
|
| 763 |
+
"[GillSans]",
|
| 764 |
+
"[Tahoma]",
|
| 765 |
+
"[cochMRM]",
|
| 766 |
+
"[F73]",
|
| 767 |
+
"[DroidSerif-Italic]",
|
| 768 |
+
"[deg]",
|
| 769 |
+
"[BoondoxFraktur-Regular]",
|
| 770 |
+
"[MdSymbolF-Regular]",
|
| 771 |
+
"[TeX-tipa8]",
|
| 772 |
+
"[SegoeUI]",
|
| 773 |
+
"[n]",
|
| 774 |
+
"[ZapfDingbats]",
|
| 775 |
+
"[rtxmi5]",
|
| 776 |
+
"[Erewhon-Bold]",
|
| 777 |
+
"[F123]",
|
| 778 |
+
"[DengXian-Regular]",
|
| 779 |
+
"[F129]",
|
| 780 |
+
"[F100]",
|
| 781 |
+
"[FiraSans-Bold]",
|
| 782 |
+
"[F266]",
|
| 783 |
+
"[OpenSymbol]",
|
| 784 |
+
"[F115]",
|
| 785 |
+
"[G]",
|
| 786 |
+
"[U]",
|
| 787 |
+
"[k]",
|
| 788 |
+
"[TimesNewRomanPSMT-Normal]",
|
| 789 |
+
"[N]",
|
| 790 |
+
"[SFRB1200]",
|
| 791 |
+
"[ArialUnicodeMS]",
|
| 792 |
+
"[Roboto-Regular]",
|
| 793 |
+
"[PalatinoLinotype-Roman]",
|
| 794 |
+
"[Arimo]",
|
| 795 |
+
"[MdSymbolB-Regular]",
|
| 796 |
+
"[R]",
|
| 797 |
+
"[D]",
|
| 798 |
+
"[AppleSymbols]",
|
| 799 |
+
"[grmn0700]",
|
| 800 |
+
"[CMSSI9]",
|
| 801 |
+
"[F24]",
|
| 802 |
+
"[AvenirNext-Regular]",
|
| 803 |
+
"[AppleColorEmoji]",
|
| 804 |
+
"[fgerm10]",
|
| 805 |
+
"[URWBookmanL-DemiBold]",
|
| 806 |
+
"[F102]",
|
| 807 |
+
"[OAMathSymbols7]",
|
| 808 |
+
"[CourierNewPSMT]",
|
| 809 |
+
"[CourierNewPS-BoldMT]",
|
| 810 |
+
"[Charter-Italic]",
|
| 811 |
+
"[VenturisADFStyle-Regular]",
|
| 812 |
+
"[SFBX2488]",
|
| 813 |
+
"[XCharter-BoldItalic]",
|
| 814 |
+
"[H]",
|
| 815 |
+
"[Inter-SemiBold]",
|
| 816 |
+
"[W]",
|
| 817 |
+
"[SFCC0600]",
|
| 818 |
+
"[Italic]",
|
| 819 |
+
"[CMTCSC10]",
|
| 820 |
+
"[LiberationSerif-Italic]",
|
| 821 |
+
"[SFIT1095]",
|
| 822 |
+
"[pb]",
|
| 823 |
+
"[FiraSans-Regular]",
|
| 824 |
+
"[a]",
|
| 825 |
+
"[SFXC1200]",
|
| 826 |
+
"[LibertineMathBRM]",
|
| 827 |
+
"[F117]",
|
| 828 |
+
"[HFBRBS10]",
|
| 829 |
+
"[x]",
|
| 830 |
+
"[TimesNewRoman-NormalItal]",
|
| 831 |
+
"[TeV]",
|
| 832 |
+
"[DutchCalligraphic-Bold]",
|
| 833 |
+
"[CMSLTT10]",
|
| 834 |
+
"[km]",
|
| 835 |
+
"[MnSymbol-Bold9]",
|
| 836 |
+
"[STIXSizeTwoSym-Regular]",
|
| 837 |
+
"[EUFB7]",
|
| 838 |
+
"[LinBiolinumTBO]",
|
| 839 |
+
"[cscsc10]",
|
| 840 |
+
"[eV]",
|
| 841 |
+
"[SFBMR10]",
|
| 842 |
+
"[F118]",
|
| 843 |
+
"[F51]",
|
| 844 |
+
"[ORMKKB-CMR10]",
|
| 845 |
+
"[txbtt]",
|
| 846 |
+
"[gr-qc]",
|
| 847 |
+
"[DejaVuSans-BoldOblique]",
|
| 848 |
+
"[LinLibertineTZI]",
|
| 849 |
+
"[cmsy10]",
|
| 850 |
+
"[Georgia]",
|
| 851 |
+
"[SFXC1095]",
|
| 852 |
+
"[Geneva]",
|
| 853 |
+
"[Helvetica-Italic]",
|
| 854 |
+
"[F103]",
|
| 855 |
+
"[Wingdings-Regular]",
|
| 856 |
+
"[Cambria-Italic]",
|
| 857 |
+
"[GS]",
|
| 858 |
+
"[LiberationSans-Bold]",
|
| 859 |
+
"[PTSerif-Bold]",
|
| 860 |
+
"[SFSX0800]",
|
| 861 |
+
"[npxsups-Regular]",
|
| 862 |
+
"[F]",
|
| 863 |
+
"[Chalkboard]",
|
| 864 |
+
"[CALLIG15]",
|
| 865 |
+
"[SFIT0900]",
|
| 866 |
+
"[NimbusRoman-Italic]",
|
| 867 |
+
"[OldStandard-Italic]",
|
| 868 |
+
"[wasysl10]",
|
| 869 |
+
"[SFIT0800]",
|
| 870 |
+
"[F37]",
|
| 871 |
+
"[SFTI0500]",
|
| 872 |
+
"[WNCYI10]",
|
| 873 |
+
"[VenturisADF-Italic]",
|
| 874 |
+
"[F186]",
|
| 875 |
+
"[SFSX2488]",
|
| 876 |
+
"[TeX-vect9]",
|
| 877 |
+
"[Bold]",
|
| 878 |
+
"[ms]",
|
| 879 |
+
"[XCharter-Slanted]",
|
| 880 |
+
"[rad]",
|
| 881 |
+
"[MyriadPro-It]",
|
| 882 |
+
"[SegoeUISymbol]",
|
| 883 |
+
"[Consolas-BoldItalic]",
|
| 884 |
+
"[AkaashNormal]",
|
| 885 |
+
"[LucidaBright]",
|
| 886 |
+
"[O]",
|
| 887 |
+
"[F119]",
|
| 888 |
+
"[frcr10]",
|
| 889 |
+
"[Optima-Regular]",
|
| 890 |
+
"[VnCharterBT-Bold]",
|
| 891 |
+
"[CenturySchoolbook-Normal]",
|
| 892 |
+
"[Crimson-Semibold]",
|
| 893 |
+
"[Asana-Math]",
|
| 894 |
+
"[MdSymbolC-Regular]",
|
| 895 |
+
"[STEP-Italic]",
|
| 896 |
+
"[VNR9]",
|
| 897 |
+
"[SFPro-Regular]",
|
| 898 |
+
"[TimesNewRomanPS-BoldItalicMT]",
|
| 899 |
+
"[V]",
|
| 900 |
+
"[BS]",
|
| 901 |
+
"[gsmn1000]",
|
| 902 |
+
"[F139]",
|
| 903 |
+
"[SFSL0900]",
|
| 904 |
+
"[SFBX0500]",
|
| 905 |
+
"[BH99]",
|
| 906 |
+
"[F3]",
|
| 907 |
+
"[HFBR9]",
|
| 908 |
+
"[EUEX9]",
|
| 909 |
+
"[AVHersheyComplexMedium]",
|
| 910 |
+
"[id]",
|
| 911 |
+
"[fb]",
|
| 912 |
+
"[LinBiolinumO]",
|
| 913 |
+
"[SFCC0500]",
|
| 914 |
+
"[HFTL10]",
|
| 915 |
+
"[csr9]",
|
| 916 |
+
"[Alegreya-Bold]",
|
| 917 |
+
"[VNR8]",
|
| 918 |
+
"[MS-Gothic]",
|
| 919 |
+
"[Gr]",
|
| 920 |
+
"[F252]",
|
| 921 |
+
"[FiraSans-Medium]",
|
| 922 |
+
"[F104]",
|
| 923 |
+
"[/Helvetica]",
|
| 924 |
+
"[Cmb10]",
|
| 925 |
+
"[F31]",
|
| 926 |
+
"[ESSTIX-Fourteen]",
|
| 927 |
+
"[ComputerModernSans-Mathe]",
|
| 928 |
+
"[SFCC1440]",
|
| 929 |
+
"[Menlo-Regular]",
|
| 930 |
+
"[Gulliver]",
|
| 931 |
+
"[F140]",
|
| 932 |
+
"[SFBI0900]",
|
| 933 |
+
"[GHz]",
|
| 934 |
+
"[stickstooMath-BoldItalic]",
|
| 935 |
+
"[dmjkc]",
|
| 936 |
+
"[/Helvetica-Bold]",
|
| 937 |
+
"[CMSSI17]",
|
| 938 |
+
"[FormataOTFMdIt]",
|
| 939 |
+
"[LucidaNewMath-AltItalic]",
|
| 940 |
+
"[cochBRM]",
|
| 941 |
+
"[STIXTwoText-BoldItalic]",
|
| 942 |
+
"[F48]",
|
| 943 |
+
"[VNCSC10]",
|
| 944 |
+
"[TimesLTStd-Bold]",
|
| 945 |
+
"[grmn1200]",
|
| 946 |
+
"[F52]",
|
| 947 |
+
"[Charter-Roman]",
|
| 948 |
+
"[frcr6]",
|
| 949 |
+
"[HiraKakuProN-W3]",
|
| 950 |
+
"[TeX-vect7]",
|
| 951 |
+
"[GK]",
|
| 952 |
+
"[Roman]",
|
| 953 |
+
"[Kurier-Italic]",
|
| 954 |
+
"[Rpcxr]",
|
| 955 |
+
"[BEGZ10]",
|
| 956 |
+
"[Kerkis-Bold]",
|
| 957 |
+
"[ComputerModern-ItalicReg]",
|
| 958 |
+
"[CMUClassicalSerif-Italic]",
|
| 959 |
+
"[grmn1095]",
|
| 960 |
+
"[Heuristica-Bold]",
|
| 961 |
+
"[stmary5]",
|
| 962 |
+
"[STIXTwoMath-Regular]",
|
| 963 |
+
"[Helvecita]",
|
| 964 |
+
"[cssl10]",
|
| 965 |
+
"[EuclidMathOne]",
|
| 966 |
+
"[FS]",
|
| 967 |
+
"[F57]",
|
| 968 |
+
"[SourceSerifPro-Bold]",
|
| 969 |
+
"[stickstooMath-Regular]",
|
| 970 |
+
"[NewTXBMI5]",
|
| 971 |
+
"[SimHei]",
|
| 972 |
+
"[SFVT1000]",
|
| 973 |
+
"[CLS]",
|
| 974 |
+
"[SFSX2074]",
|
| 975 |
+
"[F125]",
|
| 976 |
+
"[MS-PGothic]",
|
| 977 |
+
"[ComicSansMS-Italic]",
|
| 978 |
+
"[SourceCodePro-Semibold]",
|
| 979 |
+
"[DejaVuMathTeXGyre-Regula]",
|
| 980 |
+
"[I]",
|
| 981 |
+
"[SegoeUI-Bold]",
|
| 982 |
+
"[SFSC0700]",
|
| 983 |
+
"[MASK]",
|
| 984 |
+
"[OpenSans-Bold]",
|
| 985 |
+
"[TeXGyreCursor-Regular]",
|
| 986 |
+
"[PingFangSC-Regular]",
|
| 987 |
+
"[Cambria-Bold]",
|
| 988 |
+
"[MinionPro-Regular]",
|
| 989 |
+
"[MS]",
|
| 990 |
+
"[AVHersheyComplexMediumIt]",
|
| 991 |
+
"[FormataOTFMd]",
|
| 992 |
+
"[F370]",
|
| 993 |
+
"[SFSS1440]",
|
| 994 |
+
"[F56]",
|
| 995 |
+
"[DengXian-Light]",
|
| 996 |
+
"[FreeSerif]",
|
| 997 |
+
"[ESSTIX-Fifteen]",
|
| 998 |
+
"[TeX-mathb6]",
|
| 999 |
+
"[MyriadPro-Semibold]",
|
| 1000 |
+
"[CMRoman-Italic]",
|
| 1001 |
+
"[MT-Extra]",
|
| 1002 |
+
"[Ma]",
|
| 1003 |
+
"[CenturySchL-BoldItal]",
|
| 1004 |
+
"[ntxtmr]",
|
| 1005 |
+
"[KS]",
|
| 1006 |
+
"[AmericanTypewriter]",
|
| 1007 |
+
"[wasy9]",
|
| 1008 |
+
"[SFSL0800]",
|
| 1009 |
+
"[FormataOTF-Reg]",
|
| 1010 |
+
"[Aptos-Italic]",
|
| 1011 |
+
"[F59]",
|
| 1012 |
+
"[SFBI0700]",
|
| 1013 |
+
"[dBm]",
|
| 1014 |
+
"[SFORM9]",
|
| 1015 |
+
"[F126]",
|
| 1016 |
+
"[SegoePrint]",
|
| 1017 |
+
"[SFBMR8]",
|
| 1018 |
+
"[LinBiolinumOB]",
|
| 1019 |
+
"[ArialNarrow-Bold]",
|
| 1020 |
+
"[TeX-vect8]",
|
| 1021 |
+
"[F107]",
|
| 1022 |
+
"[RobotoCondensed-Regular]",
|
| 1023 |
+
"[DroidSerif-Bold]",
|
| 1024 |
+
"[E]",
|
| 1025 |
+
"[F145]",
|
| 1026 |
+
"[Charter]",
|
| 1027 |
+
"[HelveticaNeue-Italic]",
|
| 1028 |
+
"[F21]",
|
| 1029 |
+
"[GM]",
|
| 1030 |
+
"[NimbusSans-Bold]",
|
| 1031 |
+
"[STIXMathBlackboard-Itali]",
|
| 1032 |
+
"[TimesLTStd-BoldItalic]",
|
| 1033 |
+
"[dsss10]",
|
| 1034 |
+
"[VNR7]",
|
| 1035 |
+
"[Gro87]",
|
| 1036 |
+
"[tcxtt]",
|
| 1037 |
+
"[MnSymbol-Bold12]",
|
| 1038 |
+
"[F167]",
|
| 1039 |
+
"[Inter-Regular]",
|
| 1040 |
+
"[EUSB7]",
|
| 1041 |
+
"[NotoMathBMI]",
|
| 1042 |
+
"[H1]",
|
| 1043 |
+
"[rtxbsc]",
|
| 1044 |
+
"[F64]",
|
| 1045 |
+
"[Optima-Bold]",
|
| 1046 |
+
"[AdobeSongStd-Light]",
|
| 1047 |
+
"[PS]",
|
| 1048 |
+
"[FormataOTF-Bold]",
|
| 1049 |
+
"[SFSI0800]",
|
| 1050 |
+
"[NimbusRoman-Bold]",
|
| 1051 |
+
"[DroidSans]",
|
| 1052 |
+
"[mm]",
|
| 1053 |
+
"[pt]",
|
| 1054 |
+
"[SourceSerifPro-Semibold]",
|
| 1055 |
+
"[X]",
|
| 1056 |
+
"[GoogleSansFlexNormal-Bol]",
|
| 1057 |
+
"[F172]",
|
| 1058 |
+
"[CoelacanthBold]",
|
| 1059 |
+
"[BM]",
|
| 1060 |
+
"[LiberationSerif-Bold]",
|
| 1061 |
+
"[degrees]",
|
| 1062 |
+
"[OpenSans-Italic]",
|
| 1063 |
+
"[BCHM10]",
|
| 1064 |
+
"[NotoSans-Bold]",
|
| 1065 |
+
"[F187]",
|
| 1066 |
+
"[TimesNewRomanBold]",
|
| 1067 |
+
"[SFRB0900]",
|
| 1068 |
+
"[b]",
|
| 1069 |
+
"[F131]",
|
| 1070 |
+
"[BG]",
|
| 1071 |
+
"[SFSI0900]",
|
| 1072 |
+
"[BookAntiqua]",
|
| 1073 |
+
"[Lato-Italic]",
|
| 1074 |
+
"[ComicSansMS-BoldItalic]",
|
| 1075 |
+
"[NotoSansCJKjp-Regular]",
|
| 1076 |
+
"[AuriocusKalligraphicus]",
|
| 1077 |
+
"[Lora-Bold]",
|
| 1078 |
+
"[cm]",
|
| 1079 |
+
"[LCMSS8]",
|
| 1080 |
+
"[TimesNRMTPro]",
|
| 1081 |
+
"[Arial-Bold]",
|
| 1082 |
+
"[F214]",
|
| 1083 |
+
"[Cmr12]",
|
| 1084 |
+
"[J]",
|
| 1085 |
+
"[F116]",
|
| 1086 |
+
"[txbmia]",
|
| 1087 |
+
"[pxbsys]",
|
| 1088 |
+
"[CanvaSans-Bold]",
|
| 1089 |
+
"[CM19]",
|
| 1090 |
+
"[VNTI12]",
|
| 1091 |
+
"[GoogleSansFlexNormal-Reg]",
|
| 1092 |
+
"[NewCenturySchlbk-Italic]",
|
| 1093 |
+
"[arial]",
|
| 1094 |
+
"[BitstreamVeraSerif-Roman]",
|
| 1095 |
+
"[Lora-Regular]",
|
| 1096 |
+
"[Georgia-Bold]",
|
| 1097 |
+
"[exp]",
|
| 1098 |
+
"[MS17]",
|
| 1099 |
+
"[MS20]",
|
| 1100 |
+
"[NKWSMS-CMMI10]",
|
| 1101 |
+
"[S1]",
|
| 1102 |
+
"[ArialNarrow]",
|
| 1103 |
+
"[Helvetica-LightOblique]",
|
| 1104 |
+
"[MnSymbol-Bold5]",
|
| 1105 |
+
"[BeraSansMono-Oblique]",
|
| 1106 |
+
"[ArevSans-Bold]",
|
| 1107 |
+
"[LucidaCalligraphy-Italic]",
|
| 1108 |
+
"[Nunito-Regular]",
|
| 1109 |
+
"[KL]",
|
| 1110 |
+
"[MS21]",
|
| 1111 |
+
"[Br]",
|
| 1112 |
+
"[EuclidSymbol]",
|
| 1113 |
+
"[FiraSans-Light]",
|
| 1114 |
+
"[Tahoma-Bold]",
|
| 1115 |
+
"[Sch]",
|
| 1116 |
+
"[BS17]",
|
| 1117 |
+
"[Bo]",
|
| 1118 |
+
"[NewCenturySchlbk-Roman]",
|
| 1119 |
+
"[ClearSans-Medium]",
|
| 1120 |
+
"[BaskervilleF-Regular]",
|
| 1121 |
+
"[AptosDisplay]",
|
| 1122 |
+
"[NS]",
|
| 1123 |
+
"[F26]",
|
| 1124 |
+
"[GL17]",
|
| 1125 |
+
"[BitstreamVeraSerif-Bold]",
|
| 1126 |
+
"[Kp-MediumItalic]",
|
| 1127 |
+
"[Arial-Black]",
|
| 1128 |
+
"[LinLibertineOI]",
|
| 1129 |
+
"[fm2]",
|
| 1130 |
+
"[wasy5]",
|
| 1131 |
+
"[Ba]",
|
| 1132 |
+
"[BB]",
|
| 1133 |
+
"[BT82]",
|
| 1134 |
+
"[OAMathSymbols9]",
|
| 1135 |
+
"[F180]",
|
| 1136 |
+
"[fbb-BoldItalic]",
|
| 1137 |
+
"[LMMO]",
|
| 1138 |
+
"[HelveticaLTStd-Roman]",
|
| 1139 |
+
"[HL]",
|
| 1140 |
+
"[CS]",
|
| 1141 |
+
"[c]",
|
| 1142 |
+
"[Z]",
|
| 1143 |
+
"[p]",
|
| 1144 |
+
"[Ka]",
|
| 1145 |
+
"[LS]",
|
| 1146 |
+
"[SS]",
|
| 1147 |
+
"[AB09]",
|
| 1148 |
+
"[RS]",
|
| 1149 |
+
"[TimesNewRomanRegular]",
|
| 1150 |
+
"[Aptos-BoldItalic]",
|
| 1151 |
+
"[Yau78]",
|
| 1152 |
+
"[FreeSans]",
|
| 1153 |
+
"[GWZ20]",
|
| 1154 |
+
"[CenturySchoolbook]",
|
| 1155 |
+
"[BeraSans-BoldOblique]",
|
| 1156 |
+
"[F124]",
|
| 1157 |
+
"[rntxbmi7]",
|
| 1158 |
+
"[BS22]",
|
| 1159 |
+
"[nucl-th]",
|
| 1160 |
+
"[TeXGyreTermes-BoldItalic]",
|
| 1161 |
+
"[Inter-ExtraBold]",
|
| 1162 |
+
"[BM21]",
|
| 1163 |
+
"[Har77]",
|
| 1164 |
+
"[KS18]",
|
| 1165 |
+
"[Iwona-Bold]",
|
| 1166 |
+
"[Meiryo-Bold]",
|
| 1167 |
+
"[Avenir-Heavy]",
|
| 1168 |
+
"[Crimson-SemiboldItalic]",
|
| 1169 |
+
"[LM]",
|
| 1170 |
+
"[BM17]",
|
| 1171 |
+
"[KS20]",
|
| 1172 |
+
"[VNTI9]",
|
| 1173 |
+
"[F138]",
|
| 1174 |
+
"[AvenirNext-Bold]",
|
| 1175 |
+
"[K1]",
|
| 1176 |
+
"[Li18]",
|
| 1177 |
+
"[BH]",
|
| 1178 |
+
"[HelveticaNeue-MediumItal]",
|
| 1179 |
+
"[Tempora-Bold]",
|
| 1180 |
+
"[Sa]",
|
| 1181 |
+
"[CS19]",
|
| 1182 |
+
"[Ch]",
|
| 1183 |
+
"[ArialRoundedMTBold]",
|
| 1184 |
+
"[F156]",
|
| 1185 |
+
"[Archaic-Phoenician]",
|
| 1186 |
+
"[BookAntiqua-Italic]",
|
| 1187 |
+
"[Y]",
|
| 1188 |
+
"[BS19]",
|
| 1189 |
+
"[P1]",
|
| 1190 |
+
"[ScriptMTBold]",
|
| 1191 |
+
"[Georgia-Italic]",
|
| 1192 |
+
"[YMHWBQ-CMR10]",
|
| 1193 |
+
"[SFVT0900]",
|
| 1194 |
+
"[BCP97]",
|
| 1195 |
+
"[Tinos]",
|
| 1196 |
+
"[CenturyGothic]",
|
| 1197 |
+
"[F179]"
|
| 1198 |
+
],
|
| 1199 |
+
"vocab_size": 48000
|
| 1200 |
+
}
|
tokenizer/pdf_tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|