trainMd commited on
Commit
731dfd6
·
verified ·
1 Parent(s): c8b9013

Publish dataset version 1.0.0

Browse files
Files changed (45) hide show
  1. .gitattributes +1 -0
  2. README.md +143 -90
  3. canonical/hard_negative_relationships.csv +1201 -0
  4. control/record_split_map.csv +0 -0
  5. evaluation/all_positive_pairs.csv +0 -0
  6. evaluation/evaluation_pairs.csv +2 -2
  7. evaluation/ground_truth_entity_map.csv +0 -0
  8. evaluation/record_generation_metadata.csv +0 -0
  9. hub/all_positive_pairs/test.csv +0 -0
  10. hub/all_positive_pairs/train.csv +0 -0
  11. hub/all_positive_pairs/validation.csv +0 -0
  12. hub/business_registry/test.csv +0 -0
  13. hub/business_registry/train.csv +0 -0
  14. hub/business_registry/validation.csv +0 -0
  15. hub/canonical_entity/test.csv +0 -0
  16. hub/canonical_entity/train.csv +0 -0
  17. hub/canonical_entity/validation.csv +0 -0
  18. hub/canonical_entity_history/test.csv +0 -0
  19. hub/canonical_entity_history/train.csv +0 -0
  20. hub/canonical_entity_history/validation.csv +0 -0
  21. hub/evaluation_pairs/test.csv +0 -0
  22. hub/evaluation_pairs/train.csv +3 -0
  23. hub/evaluation_pairs/validation.csv +0 -0
  24. hub/ground_truth_entity_map/test.csv +0 -0
  25. hub/ground_truth_entity_map/train.csv +0 -0
  26. hub/ground_truth_entity_map/validation.csv +0 -0
  27. hub/hard_negative_relationships/test.csv +244 -0
  28. hub/hard_negative_relationships/train.csv +706 -0
  29. hub/hard_negative_relationships/validation.csv +253 -0
  30. hub/inspection_record/test.csv +0 -0
  31. hub/inspection_record/train.csv +0 -0
  32. hub/inspection_record/validation.csv +0 -0
  33. hub/record_generation_metadata/test.csv +0 -0
  34. hub/record_generation_metadata/train.csv +0 -0
  35. hub/record_generation_metadata/validation.csv +0 -0
  36. hub/record_split_map/test.csv +0 -0
  37. hub/record_split_map/train.csv +0 -0
  38. hub/record_split_map/validation.csv +0 -0
  39. hub/tax_registry/test.csv +0 -0
  40. hub/tax_registry/train.csv +0 -0
  41. hub/tax_registry/validation.csv +0 -0
  42. metadata/dataset_manifest.json +66 -0
  43. metadata/dataset_summary.json +14 -128
  44. metadata/generation_config.json +9 -65
  45. metadata/pipeline_column_contract.json +29 -0
.gitattributes CHANGED
@@ -60,3 +60,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
  evaluation/evaluation_pairs.csv filter=lfs diff=lfs merge=lfs -text
62
  huggingface/evaluation_pairs/train.csv filter=lfs diff=lfs merge=lfs -text
 
 
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
  evaluation/evaluation_pairs.csv filter=lfs diff=lfs merge=lfs -text
62
  huggingface/evaluation_pairs/train.csv filter=lfs diff=lfs merge=lfs -text
63
+ hub/evaluation_pairs/train.csv filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,141 +1,194 @@
1
  ---
 
 
 
 
 
 
 
 
 
2
  configs:
3
- - config_name: canonical_entity
 
4
  data_files:
5
  - split: train
6
- path: huggingface/canonical_entity/train.csv
7
  - split: validation
8
- path: huggingface/canonical_entity/validation.csv
9
  - split: test
10
- path: huggingface/canonical_entity/test.csv
11
-
12
- - config_name: canonical_entity_history
13
  data_files:
14
  - split: train
15
- path: huggingface/canonical_entity_history/train.csv
16
  - split: validation
17
- path: huggingface/canonical_entity_history/validation.csv
18
  - split: test
19
- path: huggingface/canonical_entity_history/test.csv
20
-
21
- - config_name: business_registry
22
  data_files:
23
  - split: train
24
- path: huggingface/business_registry/train.csv
25
  - split: validation
26
- path: huggingface/business_registry/validation.csv
27
  - split: test
28
- path: huggingface/business_registry/test.csv
29
-
30
- - config_name: tax_registry
31
  data_files:
32
  - split: train
33
- path: huggingface/tax_registry/train.csv
34
  - split: validation
35
- path: huggingface/tax_registry/validation.csv
36
  - split: test
37
- path: huggingface/tax_registry/test.csv
38
-
39
- - config_name: inspection_record
40
  data_files:
41
  - split: train
42
- path: huggingface/inspection_record/train.csv
43
  - split: validation
44
- path: huggingface/inspection_record/validation.csv
45
  - split: test
46
- path: huggingface/inspection_record/test.csv
47
-
48
- - config_name: ground_truth_entity_map
49
  data_files:
50
  - split: train
51
- path: huggingface/ground_truth_entity_map/train.csv
52
  - split: validation
53
- path: huggingface/ground_truth_entity_map/validation.csv
54
  - split: test
55
- path: huggingface/ground_truth_entity_map/test.csv
56
-
57
  - config_name: evaluation_pairs
58
  data_files:
59
  - split: train
60
- path: huggingface/evaluation_pairs/train.csv
61
  - split: validation
62
- path: huggingface/evaluation_pairs/validation.csv
63
  - split: test
64
- path: huggingface/evaluation_pairs/test.csv
65
-
66
  - config_name: record_generation_metadata
67
  data_files:
68
  - split: train
69
- path: huggingface/record_generation_metadata/train.csv
70
  - split: validation
71
- path: huggingface/record_generation_metadata/validation.csv
72
  - split: test
73
- path: huggingface/record_generation_metadata/test.csv
74
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  ---
 
76
  # Vietnamese Business Entity Resolution Dataset
77
 
78
- Synthetic multi-source dataset for evaluating Entity Resolution and Record Linkage
79
- on Vietnamese business records.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
 
81
- ## Dataset overview
 
 
 
 
 
 
 
82
 
83
- - 12,000 canonical business entities.
84
- - Three observed sources: `business_registry`, `tax_registry`, and `inspection_record`.
85
- - Entity-level `train`, `validation`, and `test` assignments stored in the
86
- `data_split` column and exposed as separate Hugging Face splits.
87
- - Historical canonical versions for evaluating cross-period matching.
88
- - Regular and hard positive/negative evaluation pairs.
89
- - Source-specific missing values, stale values, abbreviations, typos, trade
90
- names, English names, and Vietnamese text variants.
91
 
92
- ## Directory structure
93
 
94
- ```text
95
- canonical/
96
- canonical_entity.csv
97
- canonical_entity_history.csv
98
- observed/
99
- business_registry.csv
100
- tax_registry.csv
101
- inspection_record.csv
102
- evaluation/
103
- ground_truth_entity_map.csv
104
- evaluation_pairs.csv
105
- record_generation_metadata.csv
106
- huggingface/
107
- <config_name>/train.csv
108
- <config_name>/validation.csv
109
- <config_name>/test.csv
110
- metadata/
111
- generation_config.json
112
- source_field_map.json
113
- matching_field_allowlist.json
114
- dataset_summary.json
115
  ```
116
 
117
- ## Intended usage
118
 
119
- Matching pipelines should only read:
 
120
 
121
- - `observed/*.csv`
122
- - `metadata/source_field_map.json`
123
- - `metadata/matching_field_allowlist.json`
 
124
 
125
- Files under `canonical/` and `evaluation/` contain generator truth and must not
126
- be used as matching features. They are intended only for dataset inspection,
127
- split handling, and final evaluation.
128
 
129
- The notebook does not export a pre-built linkage view. Matching pipelines
130
- should standardize the three observed source tables using
131
- `metadata/source_field_map.json`.
 
 
132
 
133
- ## Important evaluation notes
134
 
135
- - `ground_truth_entity_map.csv` maps each observed record to its true entity.
136
- - `evaluation_pairs.csv` contains sampled pairs; metrics calculated on this
137
- file represent the sampled evaluation set, not all-pairs prevalence.
138
- - `record_generation_metadata.csv` records the canonical version and synthetic
139
- error types used to generate each observed record.
140
- - Hard-negative families and all records belonging to one entity remain in the
141
- same `data_split` to prevent split leakage.
 
1
  ---
2
+ language:
3
+ - vi
4
+ pretty_name: Vietnamese Business Entity Resolution Dataset
5
+ tags:
6
+ - entity-resolution
7
+ - record-linkage
8
+ - tabular
9
+ - synthetic
10
+ - splink
11
  configs:
12
+ - config_name: business_registry
13
+ default: true
14
  data_files:
15
  - split: train
16
+ path: hub/business_registry/train.csv
17
  - split: validation
18
+ path: hub/business_registry/validation.csv
19
  - split: test
20
+ path: hub/business_registry/test.csv
21
+ - config_name: tax_registry
 
22
  data_files:
23
  - split: train
24
+ path: hub/tax_registry/train.csv
25
  - split: validation
26
+ path: hub/tax_registry/validation.csv
27
  - split: test
28
+ path: hub/tax_registry/test.csv
29
+ - config_name: inspection_record
 
30
  data_files:
31
  - split: train
32
+ path: hub/inspection_record/train.csv
33
  - split: validation
34
+ path: hub/inspection_record/validation.csv
35
  - split: test
36
+ path: hub/inspection_record/test.csv
37
+ - config_name: record_split_map
 
38
  data_files:
39
  - split: train
40
+ path: hub/record_split_map/train.csv
41
  - split: validation
42
+ path: hub/record_split_map/validation.csv
43
  - split: test
44
+ path: hub/record_split_map/test.csv
45
+ - config_name: ground_truth_entity_map
 
46
  data_files:
47
  - split: train
48
+ path: hub/ground_truth_entity_map/train.csv
49
  - split: validation
50
+ path: hub/ground_truth_entity_map/validation.csv
51
  - split: test
52
+ path: hub/ground_truth_entity_map/test.csv
53
+ - config_name: all_positive_pairs
 
54
  data_files:
55
  - split: train
56
+ path: hub/all_positive_pairs/train.csv
57
  - split: validation
58
+ path: hub/all_positive_pairs/validation.csv
59
  - split: test
60
+ path: hub/all_positive_pairs/test.csv
 
61
  - config_name: evaluation_pairs
62
  data_files:
63
  - split: train
64
+ path: hub/evaluation_pairs/train.csv
65
  - split: validation
66
+ path: hub/evaluation_pairs/validation.csv
67
  - split: test
68
+ path: hub/evaluation_pairs/test.csv
 
69
  - config_name: record_generation_metadata
70
  data_files:
71
  - split: train
72
+ path: hub/record_generation_metadata/train.csv
73
  - split: validation
74
+ path: hub/record_generation_metadata/validation.csv
75
  - split: test
76
+ path: hub/record_generation_metadata/test.csv
77
+ - config_name: canonical_entity
78
+ data_files:
79
+ - split: train
80
+ path: hub/canonical_entity/train.csv
81
+ - split: validation
82
+ path: hub/canonical_entity/validation.csv
83
+ - split: test
84
+ path: hub/canonical_entity/test.csv
85
+ - config_name: canonical_entity_history
86
+ data_files:
87
+ - split: train
88
+ path: hub/canonical_entity_history/train.csv
89
+ - split: validation
90
+ path: hub/canonical_entity_history/validation.csv
91
+ - split: test
92
+ path: hub/canonical_entity_history/test.csv
93
+ - config_name: hard_negative_relationships
94
+ data_files:
95
+ - split: train
96
+ path: hub/hard_negative_relationships/train.csv
97
+ - split: validation
98
+ path: hub/hard_negative_relationships/validation.csv
99
+ - split: test
100
+ path: hub/hard_negative_relationships/test.csv
101
  ---
102
+
103
  # Vietnamese Business Entity Resolution Dataset
104
 
105
+ Synthetic multi-source Vietnamese business records for Entity Resolution and
106
+ Record Linkage experiments.
107
+
108
+ ## Dataset Summary
109
+
110
+ - Dataset version: `1.0.0`
111
+ - Canonical entities: 12,000
112
+ - Observed records: 37,748
113
+ - Complete positive pairs: 81,462
114
+ - Cross-period positive pairs: 23,148
115
+ - Hard positive pairs: 72,642
116
+ - Sampled hard negative pairs: 2,298
117
+ - Splits are assigned by entity: `train` 60%, `validation` 20%, `test` 20%.
118
+
119
+ ## Data Sources
120
+
121
+ | Config | Role | Matching input |
122
+ | --- | --- | --- |
123
+ | `business_registry` | Business registration records | Yes |
124
+ | `tax_registry` | Tax administration records | Yes |
125
+ | `inspection_record` | Noisy inspection records | Yes |
126
+ | `record_split_map` | Split orchestration without labels | Control only |
127
+ | `ground_truth_entity_map` | Record-to-entity ground truth | Evaluation only |
128
+ | `all_positive_pairs` | Complete positive-pair universe | Evaluation only |
129
+ | `evaluation_pairs` | Sampled positive/negative pairs and diagnostics | Evaluation only |
130
+ | `record_generation_metadata` | Synthetic errors and temporal provenance | Evaluation only |
131
+ | `canonical_entity` | Generator entity truth | Never matching input |
132
+ | `canonical_entity_history` | Generator history truth | Never matching input |
133
+ | `hard_negative_relationships` | Generator hard-negative families | Never matching input |
134
+
135
+ ## Repository Structure
136
 
137
+ ```text
138
+ canonical/ # Generator truth; never matching input
139
+ observed/ # Original source tables allowed as matching input
140
+ control/ # Split orchestration without ground truth
141
+ evaluation/ # Labels and evaluation-only metadata
142
+ metadata/ # Schema contracts, generation config, summary and manifest
143
+ hub/ # Split views declared for Dataset Viewer and load_dataset
144
+ ```
145
 
146
+ Hugging Face Hub supports nested folders. The `hub/` directory does not replace
147
+ the layered artifacts; it exposes each logical table as a separate dataset
148
+ configuration with physical `train`, `validation`, and `test` files.
 
 
 
 
 
149
 
150
+ ## Loading
151
 
152
+ ```python
153
+ from datasets import load_dataset
154
+
155
+ business_registry = load_dataset("USER/REPO", "business_registry")
156
+ tax_registry = load_dataset("USER/REPO", "tax_registry")
157
+ inspection_record = load_dataset("USER/REPO", "inspection_record")
158
+ record_split_map = load_dataset("USER/REPO", "record_split_map")
159
+ ```
160
+
161
+ Download a metadata contract:
162
+
163
+ ```python
164
+ from huggingface_hub import hf_hub_download
165
+
166
+ contract_path = hf_hub_download(
167
+ repo_id="USER/REPO",
168
+ repo_type="dataset",
169
+ filename="metadata/pipeline_column_contract.json",
170
+ )
 
 
171
  ```
172
 
173
+ ## Access Boundaries
174
 
175
+ Matching, candidate generation, and prediction may read only the three observed
176
+ source configs, `record_split_map`, and files under `metadata/`.
177
 
178
+ Files/configs under `canonical/` and `evaluation/` contain generator truth.
179
+ They must not be used as matching evidence or for Splink parameter estimation.
180
+ Test evaluation artifacts remain sealed until the final experiment manifest is
181
+ frozen and test prediction has completed.
182
 
183
+ ## Evaluation Notes
 
 
184
 
185
+ - Blocking recall must be calculated exactly on `all_positive_pairs`.
186
+ - `evaluation_pairs` contains sampled negatives. Population-level metrics must
187
+ use `sampling_weight` and state the represented sampling population.
188
+ - Entity clusters and hard-negative families never cross data splits.
189
+ - Checksums and row counts are recorded in `metadata/dataset_manifest.json`.
190
 
191
+ ## Limitations
192
 
193
+ This is synthetic Vietnamese business data. Metrics measured on it do not
194
+ directly represent production prevalence, data quality, or error distributions.
 
 
 
 
 
canonical/hard_negative_relationships.csv ADDED
@@ -0,0 +1,1201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ entity_id_l,entity_id_r,hard_negative_reason,shared_or_similar_value_type,hard_negative_group_id
2
+ E001255,E004572,same_representative,same_representative,HNG00001
3
+ E001942,E004753,same_short_name,same_short_name,HNG00002
4
+ E000186,E008428,similar_tax_code,similar_tax_code,HNG00003
5
+ E003280,E010218,same_name_and_industry,same_name_and_industry,HNG00004
6
+ E003256,E004832,similar_tax_code,similar_tax_code,HNG00005
7
+ E003023,E010571,same_representative,same_representative,HNG00006
8
+ E002308,E003862,same_name_and_industry,same_name_and_industry,HNG00007
9
+ E008270,E010211,similar_tax_code,similar_tax_code,HNG00008
10
+ E004725,E010916,same_name_and_industry,same_name_and_industry,HNG00009
11
+ E003825,E009890,same_short_name,same_short_name,HNG00010
12
+ E009464,E011407,similar_tax_code,similar_tax_code,HNG00011
13
+ E009090,E009150,same_address,same_address,HNG00012
14
+ E002988,E006603,same_representative,same_representative,HNG00013
15
+ E000998,E011372,same_name_and_industry,same_name_and_industry,HNG00014
16
+ E003115,E010030,same_short_name,same_short_name,HNG00015
17
+ E002964,E007157,same_representative,same_representative,HNG00016
18
+ E000623,E001622,same_representative,same_representative,HNG00017
19
+ E006063,E010043,same_representative,same_representative,HNG00018
20
+ E003428,E011175,same_address,same_address,HNG00019
21
+ E000808,E003156,same_representative,same_representative,HNG00020
22
+ E000481,E009560,same_representative,same_representative,HNG00021
23
+ E000358,E000364,same_representative,same_representative,HNG00022
24
+ E000694,E005371,same_representative,same_representative,HNG00023
25
+ E008189,E008255,same_short_name,same_short_name,HNG00024
26
+ E001337,E004492,same_address,same_address,HNG00025
27
+ E000702,E011714,same_address,same_address,HNG00026
28
+ E004641,E007235,same_name_and_industry,same_name_and_industry,HNG00027
29
+ E006028,E010780,same_short_name,same_short_name,HNG00028
30
+ E002859,E007267,similar_tax_code,similar_tax_code,HNG00029
31
+ E002267,E008492,same_short_name,same_short_name,HNG00030
32
+ E003905,E011208,same_representative,same_representative,HNG00031
33
+ E005849,E007613,same_address,same_address,HNG00032
34
+ E000507,E007008,same_representative,same_representative,HNG00033
35
+ E007446,E010580,same_address,same_address,HNG00034
36
+ E001797,E007618,same_short_name,same_short_name,HNG00035
37
+ E006961,E010021,same_name_and_industry,same_name_and_industry,HNG00036
38
+ E000111,E006440,same_name_and_industry,same_name_and_industry,HNG00037
39
+ E004086,E011197,same_short_name,same_short_name,HNG00038
40
+ E003786,E004338,same_name_and_industry,same_name_and_industry,HNG00039
41
+ E003040,E003975,same_address,same_address,HNG00040
42
+ E001924,E011093,same_representative,same_representative,HNG00041
43
+ E003852,E005246,similar_tax_code,similar_tax_code,HNG00042
44
+ E000708,E002841,same_address,same_address,HNG00043
45
+ E003801,E004540,same_short_name,same_short_name,HNG00044
46
+ E002971,E011834,similar_tax_code,similar_tax_code,HNG00045
47
+ E000900,E001619,same_name_and_industry,same_name_and_industry,HNG00046
48
+ E001800,E005166,same_name_and_industry,same_name_and_industry,HNG00047
49
+ E006308,E006835,same_name_and_industry,same_name_and_industry,HNG00048
50
+ E001236,E005563,similar_tax_code,similar_tax_code,HNG00049
51
+ E001437,E005922,same_short_name,same_short_name,HNG00050
52
+ E004167,E005175,similar_tax_code,similar_tax_code,HNG00051
53
+ E003662,E009019,same_short_name,same_short_name,HNG00052
54
+ E000323,E008371,similar_tax_code,similar_tax_code,HNG00053
55
+ E009574,E011273,same_short_name,same_short_name,HNG00054
56
+ E002578,E006808,same_representative,same_representative,HNG00055
57
+ E005109,E006844,similar_tax_code,similar_tax_code,HNG00056
58
+ E007725,E008638,same_representative,same_representative,HNG00057
59
+ E007992,E008591,same_address,same_address,HNG00058
60
+ E000455,E009737,same_name_and_industry,same_name_and_industry,HNG00059
61
+ E001349,E006716,same_representative,same_representative,HNG00060
62
+ E009512,E010791,same_name_and_industry,same_name_and_industry,HNG00061
63
+ E001968,E007986,same_representative,same_representative,HNG00062
64
+ E007662,E011463,same_short_name,same_short_name,HNG00063
65
+ E000987,E008116,same_address,same_address,HNG00064
66
+ E007545,E008980,similar_tax_code,similar_tax_code,HNG00065
67
+ E003854,E007689,similar_tax_code,similar_tax_code,HNG00066
68
+ E000144,E006124,similar_tax_code,similar_tax_code,HNG00067
69
+ E002766,E007231,similar_tax_code,similar_tax_code,HNG00068
70
+ E005267,E010635,same_name_and_industry,same_name_and_industry,HNG00069
71
+ E002708,E007748,same_name_and_industry,same_name_and_industry,HNG00070
72
+ E003581,E011860,same_representative,same_representative,HNG00071
73
+ E008075,E011979,same_name_and_industry,same_name_and_industry,HNG00072
74
+ E007765,E011878,similar_tax_code,similar_tax_code,HNG00073
75
+ E000315,E005303,same_name_and_industry,same_name_and_industry,HNG00074
76
+ E004775,E011388,same_short_name,same_short_name,HNG00075
77
+ E000975,E004769,same_representative,same_representative,HNG00076
78
+ E009698,E011350,same_representative,same_representative,HNG00077
79
+ E002336,E009674,same_representative,same_representative,HNG00078
80
+ E010187,E011342,similar_tax_code,similar_tax_code,HNG00079
81
+ E009129,E011020,similar_tax_code,similar_tax_code,HNG00080
82
+ E004844,E006780,same_short_name,same_short_name,HNG00081
83
+ E001919,E002351,same_short_name,same_short_name,HNG00082
84
+ E007477,E010228,similar_tax_code,similar_tax_code,HNG00083
85
+ E002997,E005517,similar_tax_code,similar_tax_code,HNG00084
86
+ E010262,E011127,similar_tax_code,similar_tax_code,HNG00085
87
+ E004257,E010578,same_representative,same_representative,HNG00086
88
+ E004248,E007081,same_name_and_industry,same_name_and_industry,HNG00087
89
+ E003186,E011115,same_name_and_industry,same_name_and_industry,HNG00088
90
+ E003988,E008947,same_representative,same_representative,HNG00089
91
+ E006259,E007591,same_short_name,same_short_name,HNG00090
92
+ E000132,E002385,same_name_and_industry,same_name_and_industry,HNG00091
93
+ E001078,E008444,same_name_and_industry,same_name_and_industry,HNG00092
94
+ E007664,E007891,same_short_name,same_short_name,HNG00093
95
+ E008459,E009338,same_short_name,same_short_name,HNG00094
96
+ E003321,E008497,same_representative,same_representative,HNG00095
97
+ E002700,E010368,same_name_and_industry,same_name_and_industry,HNG00096
98
+ E004851,E009406,same_address,same_address,HNG00097
99
+ E001892,E010707,same_name_and_industry,same_name_and_industry,HNG00098
100
+ E007333,E009902,similar_tax_code,similar_tax_code,HNG00099
101
+ E001195,E011937,same_representative,same_representative,HNG00100
102
+ E003458,E004662,same_short_name,same_short_name,HNG00101
103
+ E002083,E007285,similar_tax_code,similar_tax_code,HNG00102
104
+ E000208,E011229,same_name_and_industry,same_name_and_industry,HNG00103
105
+ E005148,E010427,same_representative,same_representative,HNG00104
106
+ E004486,E006051,same_representative,same_representative,HNG00105
107
+ E000408,E010015,same_name_and_industry,same_name_and_industry,HNG00106
108
+ E004513,E010772,same_name_and_industry,same_name_and_industry,HNG00107
109
+ E001553,E004998,similar_tax_code,similar_tax_code,HNG00108
110
+ E001463,E009969,same_name_and_industry,same_name_and_industry,HNG00109
111
+ E008592,E008760,same_short_name,same_short_name,HNG00110
112
+ E003839,E011559,similar_tax_code,similar_tax_code,HNG00111
113
+ E009584,E011482,same_short_name,same_short_name,HNG00112
114
+ E007009,E010776,same_short_name,same_short_name,HNG00113
115
+ E007131,E009291,similar_tax_code,similar_tax_code,HNG00114
116
+ E001554,E011890,same_name_and_industry,same_name_and_industry,HNG00115
117
+ E000372,E006433,same_short_name,same_short_name,HNG00116
118
+ E000130,E011469,similar_tax_code,similar_tax_code,HNG00117
119
+ E003805,E005824,same_address,same_address,HNG00118
120
+ E003597,E005444,same_short_name,same_short_name,HNG00119
121
+ E002761,E009996,same_short_name,same_short_name,HNG00120
122
+ E001490,E004990,same_name_and_industry,same_name_and_industry,HNG00121
123
+ E006772,E008856,same_address,same_address,HNG00122
124
+ E001709,E011048,same_address,same_address,HNG00123
125
+ E008782,E011200,same_name_and_industry,same_name_and_industry,HNG00124
126
+ E007010,E009846,same_address,same_address,HNG00125
127
+ E004928,E010403,same_name_and_industry,same_name_and_industry,HNG00126
128
+ E000678,E007091,similar_tax_code,similar_tax_code,HNG00127
129
+ E001019,E011315,same_address,same_address,HNG00128
130
+ E006304,E006738,same_short_name,same_short_name,HNG00129
131
+ E003812,E009701,similar_tax_code,similar_tax_code,HNG00130
132
+ E004609,E010951,same_name_and_industry,same_name_and_industry,HNG00131
133
+ E005480,E006665,same_short_name,same_short_name,HNG00132
134
+ E002867,E002956,same_name_and_industry,same_name_and_industry,HNG00133
135
+ E002679,E003453,same_representative,same_representative,HNG00134
136
+ E008799,E008998,same_name_and_industry,same_name_and_industry,HNG00135
137
+ E005216,E008034,same_short_name,same_short_name,HNG00136
138
+ E004382,E010478,same_address,same_address,HNG00137
139
+ E003547,E010601,same_short_name,same_short_name,HNG00138
140
+ E009108,E010914,same_address,same_address,HNG00139
141
+ E000444,E001270,similar_tax_code,similar_tax_code,HNG00140
142
+ E001986,E008639,same_short_name,same_short_name,HNG00141
143
+ E005065,E007084,similar_tax_code,similar_tax_code,HNG00142
144
+ E001667,E007827,same_representative,same_representative,HNG00143
145
+ E000595,E009675,same_representative,same_representative,HNG00144
146
+ E005896,E011748,same_representative,same_representative,HNG00145
147
+ E000519,E006236,same_short_name,same_short_name,HNG00146
148
+ E006393,E008816,same_address,same_address,HNG00147
149
+ E004482,E009363,same_representative,same_representative,HNG00148
150
+ E007994,E008175,same_name_and_industry,same_name_and_industry,HNG00149
151
+ E002832,E011345,similar_tax_code,similar_tax_code,HNG00150
152
+ E004730,E010758,same_address,same_address,HNG00151
153
+ E003694,E007550,same_representative,same_representative,HNG00152
154
+ E005481,E008698,same_representative,same_representative,HNG00153
155
+ E003619,E009230,similar_tax_code,similar_tax_code,HNG00154
156
+ E005674,E007118,same_short_name,same_short_name,HNG00155
157
+ E003882,E010633,same_address,same_address,HNG00156
158
+ E001262,E003224,same_name_and_industry,same_name_and_industry,HNG00157
159
+ E006042,E007022,same_representative,same_representative,HNG00158
160
+ E005423,E009149,same_name_and_industry,same_name_and_industry,HNG00159
161
+ E006009,E007642,same_address,same_address,HNG00160
162
+ E007821,E010149,same_short_name,same_short_name,HNG00161
163
+ E000017,E008456,same_short_name,same_short_name,HNG00162
164
+ E000494,E010231,same_address,same_address,HNG00163
165
+ E002235,E011571,same_address,same_address,HNG00164
166
+ E001071,E007288,same_representative,same_representative,HNG00165
167
+ E004099,E004835,same_short_name,same_short_name,HNG00166
168
+ E003128,E003281,same_name_and_industry,same_name_and_industry,HNG00167
169
+ E002686,E003651,same_name_and_industry,same_name_and_industry,HNG00168
170
+ E009166,E010100,similar_tax_code,similar_tax_code,HNG00169
171
+ E002052,E003618,same_name_and_industry,same_name_and_industry,HNG00170
172
+ E008736,E010308,same_short_name,same_short_name,HNG00171
173
+ E006591,E007814,same_short_name,same_short_name,HNG00172
174
+ E004301,E009311,same_short_name,same_short_name,HNG00173
175
+ E007230,E008522,same_name_and_industry,same_name_and_industry,HNG00174
176
+ E000679,E000986,same_name_and_industry,same_name_and_industry,HNG00175
177
+ E000502,E004703,same_representative,same_representative,HNG00176
178
+ E002056,E008055,same_name_and_industry,same_name_and_industry,HNG00177
179
+ E003935,E003980,same_representative,same_representative,HNG00178
180
+ E006672,E010899,same_address,same_address,HNG00179
181
+ E008505,E010659,similar_tax_code,similar_tax_code,HNG00180
182
+ E006887,E011996,same_address,same_address,HNG00181
183
+ E000232,E000365,same_name_and_industry,same_name_and_industry,HNG00182
184
+ E005403,E010906,same_representative,same_representative,HNG00183
185
+ E002878,E010202,same_address,same_address,HNG00184
186
+ E000464,E007395,similar_tax_code,similar_tax_code,HNG00185
187
+ E003515,E004709,same_short_name,same_short_name,HNG00186
188
+ E007099,E007996,same_address,same_address,HNG00187
189
+ E002332,E007203,same_address,same_address,HNG00188
190
+ E000175,E006941,same_representative,same_representative,HNG00189
191
+ E001651,E011133,same_representative,same_representative,HNG00190
192
+ E007747,E007796,same_representative,same_representative,HNG00191
193
+ E000723,E006114,same_address,same_address,HNG00192
194
+ E008272,E009429,same_short_name,same_short_name,HNG00193
195
+ E000024,E001311,same_short_name,same_short_name,HNG00194
196
+ E003840,E010323,same_address,same_address,HNG00195
197
+ E005304,E008039,same_short_name,same_short_name,HNG00196
198
+ E006928,E007610,same_address,same_address,HNG00197
199
+ E003430,E005435,same_address,same_address,HNG00198
200
+ E001638,E001696,same_address,same_address,HNG00199
201
+ E005557,E007961,same_address,same_address,HNG00200
202
+ E006347,E011992,similar_tax_code,similar_tax_code,HNG00201
203
+ E011061,E011434,same_representative,same_representative,HNG00202
204
+ E005738,E008483,same_short_name,same_short_name,HNG00203
205
+ E005747,E007159,same_name_and_industry,same_name_and_industry,HNG00204
206
+ E002600,E008364,same_representative,same_representative,HNG00205
207
+ E005575,E007991,same_address,same_address,HNG00206
208
+ E004020,E007571,similar_tax_code,similar_tax_code,HNG00207
209
+ E005566,E010321,same_name_and_industry,same_name_and_industry,HNG00208
210
+ E005577,E011664,same_address,same_address,HNG00209
211
+ E004006,E010579,same_short_name,same_short_name,HNG00210
212
+ E008346,E009541,same_name_and_industry,same_name_and_industry,HNG00211
213
+ E001779,E010999,similar_tax_code,similar_tax_code,HNG00212
214
+ E003028,E011887,same_name_and_industry,same_name_and_industry,HNG00213
215
+ E006776,E010433,same_name_and_industry,same_name_and_industry,HNG00214
216
+ E002343,E002608,same_representative,same_representative,HNG00215
217
+ E003018,E010207,same_short_name,same_short_name,HNG00216
218
+ E000974,E010923,same_representative,same_representative,HNG00217
219
+ E004836,E004884,same_name_and_industry,same_name_and_industry,HNG00218
220
+ E000732,E003060,same_name_and_industry,same_name_and_industry,HNG00219
221
+ E000189,E000584,same_address,same_address,HNG00220
222
+ E000893,E005915,same_name_and_industry,same_name_and_industry,HNG00221
223
+ E008584,E008795,same_name_and_industry,same_name_and_industry,HNG00222
224
+ E001164,E003717,same_short_name,same_short_name,HNG00223
225
+ E000711,E007585,same_address,same_address,HNG00224
226
+ E005290,E009130,similar_tax_code,similar_tax_code,HNG00225
227
+ E001983,E004144,similar_tax_code,similar_tax_code,HNG00226
228
+ E004412,E009179,same_address,same_address,HNG00227
229
+ E002356,E010972,same_representative,same_representative,HNG00228
230
+ E003817,E004402,similar_tax_code,similar_tax_code,HNG00229
231
+ E001637,E006878,same_address,same_address,HNG00230
232
+ E003126,E011165,similar_tax_code,similar_tax_code,HNG00231
233
+ E000355,E008728,same_address,same_address,HNG00232
234
+ E010305,E011567,same_name_and_industry,same_name_and_industry,HNG00233
235
+ E001307,E011169,same_representative,same_representative,HNG00234
236
+ E001022,E007134,same_short_name,same_short_name,HNG00235
237
+ E002107,E011239,same_short_name,same_short_name,HNG00236
238
+ E003162,E007560,same_address,same_address,HNG00237
239
+ E000832,E002839,same_representative,same_representative,HNG00238
240
+ E010039,E010533,same_representative,same_representative,HNG00239
241
+ E008225,E009542,similar_tax_code,similar_tax_code,HNG00240
242
+ E009341,E009456,same_address,same_address,HNG00241
243
+ E002756,E006156,same_name_and_industry,same_name_and_industry,HNG00242
244
+ E006498,E011453,same_representative,same_representative,HNG00243
245
+ E008871,E010544,same_address,same_address,HNG00244
246
+ E005746,E008711,same_address,same_address,HNG00245
247
+ E008875,E010710,same_representative,same_representative,HNG00246
248
+ E008470,E009974,same_representative,same_representative,HNG00247
249
+ E000313,E000984,same_address,same_address,HNG00248
250
+ E007782,E010389,same_address,same_address,HNG00249
251
+ E006217,E006606,same_short_name,same_short_name,HNG00250
252
+ E006646,E009623,same_address,same_address,HNG00251
253
+ E000225,E005170,same_address,same_address,HNG00252
254
+ E000838,E011795,similar_tax_code,similar_tax_code,HNG00253
255
+ E000810,E002247,same_representative,same_representative,HNG00254
256
+ E001268,E007016,same_address,same_address,HNG00255
257
+ E000513,E008355,same_short_name,same_short_name,HNG00256
258
+ E003283,E008647,same_name_and_industry,same_name_and_industry,HNG00257
259
+ E006242,E011813,similar_tax_code,similar_tax_code,HNG00258
260
+ E005507,E006229,similar_tax_code,similar_tax_code,HNG00259
261
+ E001606,E005856,similar_tax_code,similar_tax_code,HNG00260
262
+ E005841,E011827,same_name_and_industry,same_name_and_industry,HNG00261
263
+ E001736,E009389,same_name_and_industry,same_name_and_industry,HNG00262
264
+ E002039,E005478,same_representative,same_representative,HNG00263
265
+ E000973,E002805,same_short_name,same_short_name,HNG00264
266
+ E000953,E004420,same_short_name,same_short_name,HNG00265
267
+ E002403,E011030,similar_tax_code,similar_tax_code,HNG00266
268
+ E005091,E006727,similar_tax_code,similar_tax_code,HNG00267
269
+ E004343,E006394,same_representative,same_representative,HNG00268
270
+ E002606,E005368,same_representative,same_representative,HNG00269
271
+ E002082,E007306,same_representative,same_representative,HNG00270
272
+ E001377,E008321,same_representative,same_representative,HNG00271
273
+ E004330,E011152,same_short_name,same_short_name,HNG00272
274
+ E001560,E010614,same_short_name,same_short_name,HNG00273
275
+ E004578,E010989,same_representative,same_representative,HNG00274
276
+ E002363,E008915,same_short_name,same_short_name,HNG00275
277
+ E002611,E003873,same_representative,same_representative,HNG00276
278
+ E001287,E010847,same_address,same_address,HNG00277
279
+ E007746,E010902,same_address,same_address,HNG00278
280
+ E009068,E011497,same_address,same_address,HNG00279
281
+ E004748,E010926,similar_tax_code,similar_tax_code,HNG00280
282
+ E002053,E008725,same_short_name,same_short_name,HNG00281
283
+ E004671,E004726,same_address,same_address,HNG00282
284
+ E010850,E011102,same_short_name,same_short_name,HNG00283
285
+ E002103,E005190,same_address,same_address,HNG00284
286
+ E005742,E008095,same_name_and_industry,same_name_and_industry,HNG00285
287
+ E004751,E011000,same_short_name,same_short_name,HNG00286
288
+ E006202,E008777,same_representative,same_representative,HNG00287
289
+ E003584,E008963,same_name_and_industry,same_name_and_industry,HNG00288
290
+ E000647,E007752,same_address,same_address,HNG00289
291
+ E001317,E003900,same_name_and_industry,same_name_and_industry,HNG00290
292
+ E000882,E006465,same_address,same_address,HNG00291
293
+ E000601,E010005,same_name_and_industry,same_name_and_industry,HNG00292
294
+ E006875,E009442,same_short_name,same_short_name,HNG00293
295
+ E002452,E006295,same_name_and_industry,same_name_and_industry,HNG00294
296
+ E001556,E005292,similar_tax_code,similar_tax_code,HNG00295
297
+ E010137,E011452,same_address,same_address,HNG00296
298
+ E007045,E010816,same_representative,same_representative,HNG00297
299
+ E000193,E008004,same_address,same_address,HNG00298
300
+ E004407,E011575,same_short_name,same_short_name,HNG00299
301
+ E000577,E010861,same_name_and_industry,same_name_and_industry,HNG00300
302
+ E002377,E008552,same_name_and_industry,same_name_and_industry,HNG00301
303
+ E004394,E011626,same_name_and_industry,same_name_and_industry,HNG00302
304
+ E001472,E011857,same_representative,same_representative,HNG00303
305
+ E000938,E006338,same_short_name,same_short_name,HNG00304
306
+ E009859,E010435,similar_tax_code,similar_tax_code,HNG00305
307
+ E002626,E010665,same_representative,same_representative,HNG00306
308
+ E001460,E005458,same_name_and_industry,same_name_and_industry,HNG00307
309
+ E005845,E006915,same_short_name,same_short_name,HNG00308
310
+ E004821,E006699,similar_tax_code,similar_tax_code,HNG00309
311
+ E002520,E010348,same_name_and_industry,same_name_and_industry,HNG00310
312
+ E002220,E002670,same_name_and_industry,same_name_and_industry,HNG00311
313
+ E006072,E010882,same_address,same_address,HNG00312
314
+ E001538,E009087,same_name_and_industry,same_name_and_industry,HNG00313
315
+ E000397,E003423,same_short_name,same_short_name,HNG00314
316
+ E004576,E011594,similar_tax_code,similar_tax_code,HNG00315
317
+ E000043,E001048,same_short_name,same_short_name,HNG00316
318
+ E003761,E004297,same_short_name,same_short_name,HNG00317
319
+ E007067,E008540,same_name_and_industry,same_name_and_industry,HNG00318
320
+ E002272,E006449,same_name_and_industry,same_name_and_industry,HNG00319
321
+ E003352,E003563,same_representative,same_representative,HNG00320
322
+ E000766,E004899,similar_tax_code,similar_tax_code,HNG00321
323
+ E007244,E008775,same_address,same_address,HNG00322
324
+ E003557,E004444,same_short_name,same_short_name,HNG00323
325
+ E000528,E001218,same_name_and_industry,same_name_and_industry,HNG00324
326
+ E002977,E007643,similar_tax_code,similar_tax_code,HNG00325
327
+ E003286,E005230,same_name_and_industry,same_name_and_industry,HNG00326
328
+ E002895,E004989,same_address,same_address,HNG00327
329
+ E002425,E011435,same_short_name,same_short_name,HNG00328
330
+ E000933,E009221,same_name_and_industry,same_name_and_industry,HNG00329
331
+ E000657,E005196,similar_tax_code,similar_tax_code,HNG00330
332
+ E001441,E002044,same_representative,same_representative,HNG00331
333
+ E001399,E002209,same_short_name,same_short_name,HNG00332
334
+ E007606,E010526,same_representative,same_representative,HNG00333
335
+ E006568,E010034,similar_tax_code,similar_tax_code,HNG00334
336
+ E000058,E006569,same_representative,same_representative,HNG00335
337
+ E004727,E007860,same_representative,same_representative,HNG00336
338
+ E004854,E005343,same_representative,same_representative,HNG00337
339
+ E008607,E011194,same_name_and_industry,same_name_and_industry,HNG00338
340
+ E006355,E007163,same_address,same_address,HNG00339
341
+ E007481,E010744,same_short_name,same_short_name,HNG00340
342
+ E000738,E004570,same_representative,same_representative,HNG00341
343
+ E006185,E010506,same_representative,same_representative,HNG00342
344
+ E002028,E007885,same_short_name,same_short_name,HNG00343
345
+ E009768,E010736,same_representative,same_representative,HNG00344
346
+ E000977,E002916,same_name_and_industry,same_name_and_industry,HNG00345
347
+ E001920,E008657,same_name_and_industry,same_name_and_industry,HNG00346
348
+ E002516,E005503,same_name_and_industry,same_name_and_industry,HNG00347
349
+ E003092,E003860,same_address,same_address,HNG00348
350
+ E006923,E009500,same_short_name,same_short_name,HNG00349
351
+ E003602,E006563,similar_tax_code,similar_tax_code,HNG00350
352
+ E000241,E010189,same_short_name,same_short_name,HNG00351
353
+ E000540,E004119,same_name_and_industry,same_name_and_industry,HNG00352
354
+ E001700,E002424,same_representative,same_representative,HNG00353
355
+ E004883,E005592,same_name_and_industry,same_name_and_industry,HNG00354
356
+ E002222,E004070,same_name_and_industry,same_name_and_industry,HNG00355
357
+ E002849,E004677,same_name_and_industry,same_name_and_industry,HNG00356
358
+ E002948,E003247,same_representative,same_representative,HNG00357
359
+ E002418,E003667,same_short_name,same_short_name,HNG00358
360
+ E002395,E003161,same_representative,same_representative,HNG00359
361
+ E004202,E009437,same_address,same_address,HNG00360
362
+ E005897,E011233,similar_tax_code,similar_tax_code,HNG00361
363
+ E007001,E007997,same_representative,same_representative,HNG00362
364
+ E007243,E011492,similar_tax_code,similar_tax_code,HNG00363
365
+ E001896,E010257,same_short_name,same_short_name,HNG00364
366
+ E000807,E000955,same_name_and_industry,same_name_and_industry,HNG00365
367
+ E005801,E007678,same_address,same_address,HNG00366
368
+ E001111,E002262,same_address,same_address,HNG00367
369
+ E001906,E007529,same_address,same_address,HNG00368
370
+ E001434,E011459,same_address,same_address,HNG00369
371
+ E001418,E005160,similar_tax_code,similar_tax_code,HNG00370
372
+ E002636,E010771,same_address,same_address,HNG00371
373
+ E001851,E011364,similar_tax_code,similar_tax_code,HNG00372
374
+ E004115,E009366,same_address,same_address,HNG00373
375
+ E003236,E007326,same_address,same_address,HNG00374
376
+ E005611,E007792,same_name_and_industry,same_name_and_industry,HNG00375
377
+ E003718,E008886,same_name_and_industry,same_name_and_industry,HNG00376
378
+ E004266,E009426,same_short_name,same_short_name,HNG00377
379
+ E002515,E008662,same_address,same_address,HNG00378
380
+ E000188,E001056,similar_tax_code,similar_tax_code,HNG00379
381
+ E004213,E008882,same_short_name,same_short_name,HNG00380
382
+ E003606,E010848,same_representative,same_representative,HNG00381
383
+ E007293,E010455,same_short_name,same_short_name,HNG00382
384
+ E003971,E005748,same_address,same_address,HNG00383
385
+ E004413,E006323,same_short_name,same_short_name,HNG00384
386
+ E004050,E006179,same_address,same_address,HNG00385
387
+ E010911,E010920,same_address,same_address,HNG00386
388
+ E007302,E011248,same_name_and_industry,same_name_and_industry,HNG00387
389
+ E006838,E009076,similar_tax_code,similar_tax_code,HNG00388
390
+ E004535,E004693,same_representative,same_representative,HNG00389
391
+ E009568,E011163,same_name_and_industry,same_name_and_industry,HNG00390
392
+ E008490,E010958,same_name_and_industry,same_name_and_industry,HNG00391
393
+ E000025,E008327,same_address,same_address,HNG00392
394
+ E006589,E011356,same_short_name,same_short_name,HNG00393
395
+ E000057,E003270,same_name_and_industry,same_name_and_industry,HNG00394
396
+ E005095,E011687,same_name_and_industry,same_name_and_industry,HNG00395
397
+ E004898,E006779,same_name_and_industry,same_name_and_industry,HNG00396
398
+ E001435,E009567,same_address,same_address,HNG00397
399
+ E007381,E008717,similar_tax_code,similar_tax_code,HNG00398
400
+ E002210,E006936,similar_tax_code,similar_tax_code,HNG00399
401
+ E001480,E010944,same_representative,same_representative,HNG00400
402
+ E002280,E009345,similar_tax_code,similar_tax_code,HNG00401
403
+ E003151,E003666,same_name_and_industry,same_name_and_industry,HNG00402
404
+ E005541,E007075,same_address,same_address,HNG00403
405
+ E000199,E007323,same_representative,same_representative,HNG00404
406
+ E002793,E004738,same_short_name,same_short_name,HNG00405
407
+ E001648,E010830,same_short_name,same_short_name,HNG00406
408
+ E003491,E009559,similar_tax_code,similar_tax_code,HNG00407
409
+ E006576,E007453,similar_tax_code,similar_tax_code,HNG00408
410
+ E006765,E011243,similar_tax_code,similar_tax_code,HNG00409
411
+ E003830,E005193,same_short_name,same_short_name,HNG00410
412
+ E008002,E011056,same_short_name,same_short_name,HNG00411
413
+ E006512,E007139,similar_tax_code,similar_tax_code,HNG00412
414
+ E006445,E008254,similar_tax_code,similar_tax_code,HNG00413
415
+ E003142,E003910,same_name_and_industry,same_name_and_industry,HNG00414
416
+ E005953,E008826,same_short_name,same_short_name,HNG00415
417
+ E000176,E010607,same_short_name,same_short_name,HNG00416
418
+ E004433,E009713,similar_tax_code,similar_tax_code,HNG00417
419
+ E000523,E005498,same_name_and_industry,same_name_and_industry,HNG00418
420
+ E003762,E008188,similar_tax_code,similar_tax_code,HNG00419
421
+ E003212,E004163,same_representative,same_representative,HNG00420
422
+ E000795,E005030,similar_tax_code,similar_tax_code,HNG00421
423
+ E000958,E005964,similar_tax_code,similar_tax_code,HNG00422
424
+ E000888,E003398,same_representative,same_representative,HNG00423
425
+ E000803,E003434,similar_tax_code,similar_tax_code,HNG00424
426
+ E004479,E010097,same_representative,same_representative,HNG00425
427
+ E006027,E008046,same_name_and_industry,same_name_and_industry,HNG00426
428
+ E002640,E010078,same_address,same_address,HNG00427
429
+ E001999,E007317,same_address,same_address,HNG00428
430
+ E006558,E007015,same_short_name,same_short_name,HNG00429
431
+ E007347,E007582,same_representative,same_representative,HNG00430
432
+ E007082,E011437,same_short_name,same_short_name,HNG00431
433
+ E001649,E011108,same_representative,same_representative,HNG00432
434
+ E003841,E008445,same_short_name,same_short_name,HNG00433
435
+ E004995,E007938,same_representative,same_representative,HNG00434
436
+ E001020,E011719,similar_tax_code,similar_tax_code,HNG00435
437
+ E002555,E005889,same_short_name,same_short_name,HNG00436
438
+ E000614,E002998,similar_tax_code,similar_tax_code,HNG00437
439
+ E003096,E005794,same_short_name,same_short_name,HNG00438
440
+ E005790,E009327,same_name_and_industry,same_name_and_industry,HNG00439
441
+ E002737,E004280,same_representative,same_representative,HNG00440
442
+ E000816,E011034,same_address,same_address,HNG00441
443
+ E007266,E009990,same_representative,same_representative,HNG00442
444
+ E005406,E009060,same_representative,same_representative,HNG00443
445
+ E005591,E008917,same_short_name,same_short_name,HNG00444
446
+ E005995,E009419,same_address,same_address,HNG00445
447
+ E006805,E007691,same_short_name,same_short_name,HNG00446
448
+ E007567,E011552,same_address,same_address,HNG00447
449
+ E006851,E010524,same_short_name,same_short_name,HNG00448
450
+ E000442,E002382,same_short_name,same_short_name,HNG00449
451
+ E008542,E010572,same_address,same_address,HNG00450
452
+ E001960,E009700,same_address,same_address,HNG00451
453
+ E005265,E006855,same_short_name,same_short_name,HNG00452
454
+ E001390,E008602,same_representative,same_representative,HNG00453
455
+ E007253,E009225,same_name_and_industry,same_name_and_industry,HNG00454
456
+ E000846,E001697,same_short_name,same_short_name,HNG00455
457
+ E003976,E004291,same_address,same_address,HNG00456
458
+ E002877,E009917,same_short_name,same_short_name,HNG00457
459
+ E002705,E008305,same_short_name,same_short_name,HNG00458
460
+ E003890,E007727,similar_tax_code,similar_tax_code,HNG00459
461
+ E009083,E010060,same_short_name,same_short_name,HNG00460
462
+ E003510,E008847,same_short_name,same_short_name,HNG00461
463
+ E007766,E011313,same_short_name,same_short_name,HNG00462
464
+ E000921,E002030,same_short_name,same_short_name,HNG00463
465
+ E002399,E005191,similar_tax_code,similar_tax_code,HNG00464
466
+ E001740,E004389,same_address,same_address,HNG00465
467
+ E002769,E008061,similar_tax_code,similar_tax_code,HNG00466
468
+ E002954,E006155,same_representative,same_representative,HNG00467
469
+ E007256,E011120,same_representative,same_representative,HNG00468
470
+ E005477,E006771,same_name_and_industry,same_name_and_industry,HNG00469
471
+ E002610,E005743,same_short_name,same_short_name,HNG00470
472
+ E002684,E003382,same_address,same_address,HNG00471
473
+ E002236,E003373,same_name_and_industry,same_name_and_industry,HNG00472
474
+ E003367,E006362,similar_tax_code,similar_tax_code,HNG00473
475
+ E001031,E003514,same_short_name,same_short_name,HNG00474
476
+ E007368,E008489,same_short_name,same_short_name,HNG00475
477
+ E004452,E007399,same_representative,same_representative,HNG00476
478
+ E004648,E007136,same_short_name,same_short_name,HNG00477
479
+ E002174,E011542,similar_tax_code,similar_tax_code,HNG00478
480
+ E002992,E009174,same_short_name,same_short_name,HNG00479
481
+ E005540,E010840,same_short_name,same_short_name,HNG00480
482
+ E004102,E010637,same_short_name,same_short_name,HNG00481
483
+ E010481,E011517,same_representative,same_representative,HNG00482
484
+ E000276,E003299,similar_tax_code,similar_tax_code,HNG00483
485
+ E005783,E011166,similar_tax_code,similar_tax_code,HNG00484
486
+ E003145,E007165,similar_tax_code,similar_tax_code,HNG00485
487
+ E002450,E002496,same_short_name,same_short_name,HNG00486
488
+ E001293,E011398,same_address,same_address,HNG00487
489
+ E001299,E008709,similar_tax_code,similar_tax_code,HNG00488
490
+ E000013,E000662,same_address,same_address,HNG00489
491
+ E004121,E008114,same_address,same_address,HNG00490
492
+ E000401,E009206,similar_tax_code,similar_tax_code,HNG00491
493
+ E010963,E011662,same_short_name,same_short_name,HNG00492
494
+ E004515,E006037,similar_tax_code,similar_tax_code,HNG00493
495
+ E002540,E008523,similar_tax_code,similar_tax_code,HNG00494
496
+ E003245,E010215,similar_tax_code,similar_tax_code,HNG00495
497
+ E007292,E007429,same_address,same_address,HNG00496
498
+ E003400,E004056,same_name_and_industry,same_name_and_industry,HNG00497
499
+ E006731,E011863,same_address,same_address,HNG00498
500
+ E005917,E011335,same_short_name,same_short_name,HNG00499
501
+ E003213,E006233,same_representative,same_representative,HNG00500
502
+ E001857,E006703,same_name_and_industry,same_name_and_industry,HNG00501
503
+ E005970,E007132,same_short_name,same_short_name,HNG00502
504
+ E007464,E008013,same_name_and_industry,same_name_and_industry,HNG00503
505
+ E001530,E010845,same_short_name,same_short_name,HNG00504
506
+ E001344,E006351,same_name_and_industry,same_name_and_industry,HNG00505
507
+ E002827,E010288,same_short_name,same_short_name,HNG00506
508
+ E006052,E011427,same_short_name,same_short_name,HNG00507
509
+ E001083,E005053,same_address,same_address,HNG00508
510
+ E004337,E011204,same_short_name,same_short_name,HNG00509
511
+ E006492,E009543,same_short_name,same_short_name,HNG00510
512
+ E008714,E009260,similar_tax_code,similar_tax_code,HNG00511
513
+ E001693,E004875,similar_tax_code,similar_tax_code,HNG00512
514
+ E005346,E006560,same_short_name,same_short_name,HNG00513
515
+ E000421,E005812,same_short_name,same_short_name,HNG00514
516
+ E001992,E008846,same_address,same_address,HNG00515
517
+ E002580,E007156,same_representative,same_representative,HNG00516
518
+ E005864,E007265,same_short_name,same_short_name,HNG00517
519
+ E009918,E010350,same_name_and_industry,same_name_and_industry,HNG00518
520
+ E001588,E002426,similar_tax_code,similar_tax_code,HNG00519
521
+ E000761,E009407,same_representative,same_representative,HNG00520
522
+ E000074,E007736,same_address,same_address,HNG00521
523
+ E006967,E011278,same_representative,same_representative,HNG00522
524
+ E000891,E007672,same_name_and_industry,same_name_and_industry,HNG00523
525
+ E001833,E002373,similar_tax_code,similar_tax_code,HNG00524
526
+ E005112,E005356,similar_tax_code,similar_tax_code,HNG00525
527
+ E000050,E000677,same_name_and_industry,same_name_and_industry,HNG00526
528
+ E001067,E010591,same_name_and_industry,same_name_and_industry,HNG00527
529
+ E000778,E006907,similar_tax_code,similar_tax_code,HNG00528
530
+ E002246,E009052,same_name_and_industry,same_name_and_industry,HNG00529
531
+ E005944,E008426,same_address,same_address,HNG00530
532
+ E004384,E011478,same_short_name,same_short_name,HNG00531
533
+ E008793,E010504,same_address,same_address,HNG00532
534
+ E008440,E008668,same_representative,same_representative,HNG00533
535
+ E004013,E011438,same_address,same_address,HNG00534
536
+ E001991,E006314,same_address,same_address,HNG00535
537
+ E007676,E009987,same_short_name,same_short_name,HNG00536
538
+ E001253,E008603,same_representative,same_representative,HNG00537
539
+ E001961,E009330,same_address,same_address,HNG00538
540
+ E009045,E011300,similar_tax_code,similar_tax_code,HNG00539
541
+ E001852,E003816,same_name_and_industry,same_name_and_industry,HNG00540
542
+ E002843,E005818,same_short_name,same_short_name,HNG00541
543
+ E000252,E003770,same_short_name,same_short_name,HNG00542
544
+ E005070,E006061,same_name_and_industry,same_name_and_industry,HNG00543
545
+ E005422,E006117,same_address,same_address,HNG00544
546
+ E004390,E004999,same_address,same_address,HNG00545
547
+ E004204,E005120,same_name_and_industry,same_name_and_industry,HNG00546
548
+ E009324,E009501,same_short_name,same_short_name,HNG00547
549
+ E001168,E002502,same_name_and_industry,same_name_and_industry,HNG00548
550
+ E000758,E010417,same_representative,same_representative,HNG00549
551
+ E004172,E009964,same_name_and_industry,same_name_and_industry,HNG00550
552
+ E010178,E011943,same_representative,same_representative,HNG00551
553
+ E001660,E003388,same_short_name,same_short_name,HNG00552
554
+ E004417,E010076,same_address,same_address,HNG00553
555
+ E003011,E004232,similar_tax_code,similar_tax_code,HNG00554
556
+ E007925,E008517,same_representative,same_representative,HNG00555
557
+ E004663,E009851,same_representative,same_representative,HNG00556
558
+ E007614,E010752,same_representative,same_representative,HNG00557
559
+ E000375,E006704,same_name_and_industry,same_name_and_industry,HNG00558
560
+ E009989,E011258,same_address,same_address,HNG00559
561
+ E001298,E004910,similar_tax_code,similar_tax_code,HNG00560
562
+ E000557,E004956,similar_tax_code,similar_tax_code,HNG00561
563
+ E002685,E008556,similar_tax_code,similar_tax_code,HNG00562
564
+ E001545,E010053,same_representative,same_representative,HNG00563
565
+ E000068,E001681,same_representative,same_representative,HNG00564
566
+ E002691,E003742,same_short_name,same_short_name,HNG00565
567
+ E001641,E005439,similar_tax_code,similar_tax_code,HNG00566
568
+ E000931,E001159,same_name_and_industry,same_name_and_industry,HNG00567
569
+ E004915,E007255,same_name_and_industry,same_name_and_industry,HNG00568
570
+ E008157,E010222,similar_tax_code,similar_tax_code,HNG00569
571
+ E002717,E004758,same_representative,same_representative,HNG00570
572
+ E003869,E004958,same_short_name,same_short_name,HNG00571
573
+ E003457,E003870,same_short_name,same_short_name,HNG00572
574
+ E005390,E006671,same_short_name,same_short_name,HNG00573
575
+ E000479,E009415,same_address,same_address,HNG00574
576
+ E000010,E004868,similar_tax_code,similar_tax_code,HNG00575
577
+ E007305,E010226,similar_tax_code,similar_tax_code,HNG00576
578
+ E002313,E009647,similar_tax_code,similar_tax_code,HNG00577
579
+ E006255,E009289,same_short_name,same_short_name,HNG00578
580
+ E001321,E008974,same_representative,same_representative,HNG00579
581
+ E001419,E007384,same_name_and_industry,same_name_and_industry,HNG00580
582
+ E006336,E010867,same_name_and_industry,same_name_and_industry,HNG00581
583
+ E003863,E010801,similar_tax_code,similar_tax_code,HNG00582
584
+ E006650,E007573,same_name_and_industry,same_name_and_industry,HNG00583
585
+ E009815,E011923,same_short_name,same_short_name,HNG00584
586
+ E009845,E010644,same_name_and_industry,same_name_and_industry,HNG00585
587
+ E003231,E007825,same_short_name,same_short_name,HNG00586
588
+ E008635,E011829,same_representative,same_representative,HNG00587
589
+ E010409,E010536,same_address,same_address,HNG00588
590
+ E005445,E010166,same_address,same_address,HNG00589
591
+ E007459,E010550,same_address,same_address,HNG00590
592
+ E002024,E010869,same_address,same_address,HNG00591
593
+ E001198,E008417,same_name_and_industry,same_name_and_industry,HNG00592
594
+ E008807,E011523,same_name_and_industry,same_name_and_industry,HNG00593
595
+ E002175,E006030,same_representative,same_representative,HNG00594
596
+ E005573,E010317,similar_tax_code,similar_tax_code,HNG00595
597
+ E002159,E002933,same_representative,same_representative,HNG00596
598
+ E005338,E005872,same_representative,same_representative,HNG00597
599
+ E004894,E005979,same_representative,same_representative,HNG00598
600
+ E001816,E007426,similar_tax_code,similar_tax_code,HNG00599
601
+ E006957,E011912,similar_tax_code,similar_tax_code,HNG00600
602
+ E000426,E009579,same_representative,same_representative,HNG00601
603
+ E000224,E005069,similar_tax_code,similar_tax_code,HNG00602
604
+ E000674,E003266,same_address,same_address,HNG00603
605
+ E000217,E006974,same_address,same_address,HNG00604
606
+ E009336,E010223,similar_tax_code,similar_tax_code,HNG00605
607
+ E002454,E009136,same_representative,same_representative,HNG00606
608
+ E000898,E008108,same_short_name,same_short_name,HNG00607
609
+ E007116,E009271,same_representative,same_representative,HNG00608
610
+ E000254,E011338,same_name_and_industry,same_name_and_industry,HNG00609
611
+ E005204,E007290,similar_tax_code,similar_tax_code,HNG00610
612
+ E005107,E005737,same_short_name,same_short_name,HNG00611
613
+ E000812,E005710,same_short_name,same_short_name,HNG00612
614
+ E002127,E011904,similar_tax_code,similar_tax_code,HNG00613
615
+ E003714,E010634,same_name_and_industry,same_name_and_industry,HNG00614
616
+ E001789,E006249,same_address,same_address,HNG00615
617
+ E000203,E006214,same_name_and_industry,same_name_and_industry,HNG00616
618
+ E004471,E008461,similar_tax_code,similar_tax_code,HNG00617
619
+ E010131,E011004,same_name_and_industry,same_name_and_industry,HNG00618
620
+ E001000,E010833,same_representative,same_representative,HNG00619
621
+ E000516,E002475,similar_tax_code,similar_tax_code,HNG00620
622
+ E005188,E007101,same_short_name,same_short_name,HNG00621
623
+ E003041,E008430,same_address,same_address,HNG00622
624
+ E006460,E010283,same_name_and_industry,same_name_and_industry,HNG00623
625
+ E000600,E007512,same_short_name,same_short_name,HNG00624
626
+ E003529,E004214,same_representative,same_representative,HNG00625
627
+ E001199,E010988,same_short_name,same_short_name,HNG00626
628
+ E000419,E006317,similar_tax_code,similar_tax_code,HNG00627
629
+ E002788,E011686,same_address,same_address,HNG00628
630
+ E001889,E004870,same_address,same_address,HNG00629
631
+ E009530,E011480,same_representative,same_representative,HNG00630
632
+ E008989,E010924,same_name_and_industry,same_name_and_industry,HNG00631
633
+ E001866,E010419,same_name_and_industry,same_name_and_industry,HNG00632
634
+ E000390,E002946,same_short_name,same_short_name,HNG00633
635
+ E006293,E009679,same_address,same_address,HNG00634
636
+ E004171,E004830,same_name_and_industry,same_name_and_industry,HNG00635
637
+ E000205,E005133,same_address,same_address,HNG00636
638
+ E004211,E008569,similar_tax_code,similar_tax_code,HNG00637
639
+ E002453,E010813,same_name_and_industry,same_name_and_industry,HNG00638
640
+ E004302,E006627,similar_tax_code,similar_tax_code,HNG00639
641
+ E002273,E004760,similar_tax_code,similar_tax_code,HNG00640
642
+ E007435,E009359,same_short_name,same_short_name,HNG00641
643
+ E005526,E005598,same_short_name,same_short_name,HNG00642
644
+ E003979,E007063,same_name_and_industry,same_name_and_industry,HNG00643
645
+ E009697,E010052,same_name_and_industry,same_name_and_industry,HNG00644
646
+ E001458,E010690,same_short_name,same_short_name,HNG00645
647
+ E007518,E008158,same_short_name,same_short_name,HNG00646
648
+ E001284,E005584,similar_tax_code,similar_tax_code,HNG00647
649
+ E000970,E010632,same_short_name,same_short_name,HNG00648
650
+ E010415,E010428,same_address,same_address,HNG00649
651
+ E000319,E003791,same_address,same_address,HNG00650
652
+ E006984,E007970,same_address,same_address,HNG00651
653
+ E003014,E006325,same_address,same_address,HNG00652
654
+ E006919,E011694,same_representative,same_representative,HNG00653
655
+ E001252,E010430,same_name_and_industry,same_name_and_industry,HNG00654
656
+ E009603,E011160,same_address,same_address,HNG00655
657
+ E001208,E005002,same_representative,same_representative,HNG00656
658
+ E001817,E002075,similar_tax_code,similar_tax_code,HNG00657
659
+ E003302,E005784,same_address,same_address,HNG00658
660
+ E009432,E010496,same_short_name,same_short_name,HNG00659
661
+ E000436,E011322,same_representative,same_representative,HNG00660
662
+ E006555,E010059,same_address,same_address,HNG00661
663
+ E006965,E011369,same_short_name,same_short_name,HNG00662
664
+ E006947,E008618,same_short_name,same_short_name,HNG00663
665
+ E000848,E011716,same_address,same_address,HNG00664
666
+ E010775,E011843,same_name_and_industry,same_name_and_industry,HNG00665
667
+ E003569,E006948,same_name_and_industry,same_name_and_industry,HNG00666
668
+ E001831,E002412,same_short_name,same_short_name,HNG00667
669
+ E002813,E008052,similar_tax_code,similar_tax_code,HNG00668
670
+ E003225,E010364,same_representative,same_representative,HNG00669
671
+ E002539,E006272,same_representative,same_representative,HNG00670
672
+ E002876,E009371,same_name_and_industry,same_name_and_industry,HNG00671
673
+ E000920,E009122,same_name_and_industry,same_name_and_industry,HNG00672
674
+ E002942,E011128,same_name_and_industry,same_name_and_industry,HNG00673
675
+ E000653,E002319,same_short_name,same_short_name,HNG00674
676
+ E004027,E005954,similar_tax_code,similar_tax_code,HNG00675
677
+ E000473,E010342,similar_tax_code,similar_tax_code,HNG00676
678
+ E000297,E011450,same_name_and_industry,same_name_and_industry,HNG00677
679
+ E008509,E011467,similar_tax_code,similar_tax_code,HNG00678
680
+ E006825,E009308,same_representative,same_representative,HNG00679
681
+ E005959,E007957,same_address,same_address,HNG00680
682
+ E002429,E010436,same_name_and_industry,same_name_and_industry,HNG00681
683
+ E001439,E004145,same_address,same_address,HNG00682
684
+ E006620,E007581,same_representative,same_representative,HNG00683
685
+ E008750,E010753,same_representative,same_representative,HNG00684
686
+ E003309,E009507,same_address,same_address,HNG00685
687
+ E004218,E008902,same_address,same_address,HNG00686
688
+ E008605,E011605,same_representative,same_representative,HNG00687
689
+ E004113,E011303,same_short_name,same_short_name,HNG00688
690
+ E009740,E011242,same_address,same_address,HNG00689
691
+ E010479,E011266,similar_tax_code,similar_tax_code,HNG00690
692
+ E005286,E005939,similar_tax_code,similar_tax_code,HNG00691
693
+ E007836,E008571,same_address,same_address,HNG00692
694
+ E003957,E011279,same_name_and_industry,same_name_and_industry,HNG00693
695
+ E002286,E002498,similar_tax_code,similar_tax_code,HNG00694
696
+ E010284,E011563,same_name_and_industry,same_name_and_industry,HNG00695
697
+ E000089,E001204,same_representative,same_representative,HNG00696
698
+ E006002,E011199,same_address,same_address,HNG00697
699
+ E001126,E011616,same_representative,same_representative,HNG00698
700
+ E008727,E010392,similar_tax_code,similar_tax_code,HNG00699
701
+ E000387,E005878,same_representative,same_representative,HNG00700
702
+ E010198,E011639,similar_tax_code,similar_tax_code,HNG00701
703
+ E003702,E010946,same_short_name,same_short_name,HNG00702
704
+ E003207,E011518,same_name_and_industry,same_name_and_industry,HNG00703
705
+ E001887,E008933,same_short_name,same_short_name,HNG00704
706
+ E000946,E006411,same_name_and_industry,same_name_and_industry,HNG00705
707
+ E003620,E009754,same_representative,same_representative,HNG00706
708
+ E002409,E004867,same_name_and_industry,same_name_and_industry,HNG00707
709
+ E000941,E006615,same_address,same_address,HNG00708
710
+ E001645,E003481,similar_tax_code,similar_tax_code,HNG00709
711
+ E001001,E004409,same_address,same_address,HNG00710
712
+ E003978,E005962,same_short_name,same_short_name,HNG00711
713
+ E005715,E005792,same_representative,same_representative,HNG00712
714
+ E001978,E005975,similar_tax_code,similar_tax_code,HNG00713
715
+ E001763,E003148,same_short_name,same_short_name,HNG00714
716
+ E001464,E005463,same_name_and_industry,same_name_and_industry,HNG00715
717
+ E005965,E008329,same_short_name,same_short_name,HNG00716
718
+ E002190,E007558,same_short_name,same_short_name,HNG00717
719
+ E005834,E007498,same_address,same_address,HNG00718
720
+ E001361,E002345,same_name_and_industry,same_name_and_industry,HNG00719
721
+ E001451,E008056,same_short_name,same_short_name,HNG00720
722
+ E001445,E005520,similar_tax_code,similar_tax_code,HNG00721
723
+ E005576,E006490,similar_tax_code,similar_tax_code,HNG00722
724
+ E003412,E011505,same_address,same_address,HNG00723
725
+ E009951,E011135,similar_tax_code,similar_tax_code,HNG00724
726
+ E003029,E007655,similar_tax_code,similar_tax_code,HNG00725
727
+ E008892,E009587,same_name_and_industry,same_name_and_industry,HNG00726
728
+ E003211,E006340,similar_tax_code,similar_tax_code,HNG00727
729
+ E001985,E005220,same_address,same_address,HNG00728
730
+ E000686,E003972,same_address,same_address,HNG00729
731
+ E001314,E008545,same_address,same_address,HNG00730
732
+ E001165,E003993,same_address,same_address,HNG00731
733
+ E007144,E009643,similar_tax_code,similar_tax_code,HNG00732
734
+ E004348,E009920,same_address,same_address,HNG00733
735
+ E005452,E005525,same_name_and_industry,same_name_and_industry,HNG00734
736
+ E004000,E004631,same_address,same_address,HNG00735
737
+ E006048,E007546,same_short_name,same_short_name,HNG00736
738
+ E007621,E011501,same_address,same_address,HNG00737
739
+ E011471,E011999,same_name_and_industry,same_name_and_industry,HNG00738
740
+ E007228,E009394,same_representative,same_representative,HNG00739
741
+ E009678,E011811,similar_tax_code,similar_tax_code,HNG00740
742
+ E000394,E011457,similar_tax_code,similar_tax_code,HNG00741
743
+ E000815,E005345,same_address,same_address,HNG00742
744
+ E006318,E009386,same_name_and_industry,same_name_and_industry,HNG00743
745
+ E001973,E007607,similar_tax_code,similar_tax_code,HNG00744
746
+ E008769,E010329,same_short_name,same_short_name,HNG00745
747
+ E004327,E007028,similar_tax_code,similar_tax_code,HNG00746
748
+ E003919,E010250,same_address,same_address,HNG00747
749
+ E001411,E004931,same_representative,same_representative,HNG00748
750
+ E004378,E005859,same_representative,same_representative,HNG00749
751
+ E002566,E006330,same_address,same_address,HNG00750
752
+ E003278,E006619,same_name_and_industry,same_name_and_industry,HNG00751
753
+ E001597,E009475,same_short_name,same_short_name,HNG00752
754
+ E002066,E008219,same_representative,same_representative,HNG00753
755
+ E003947,E010124,same_short_name,same_short_name,HNG00754
756
+ E001805,E010749,same_name_and_industry,same_name_and_industry,HNG00755
757
+ E003448,E003764,similar_tax_code,similar_tax_code,HNG00756
758
+ E006068,E011254,same_representative,same_representative,HNG00757
759
+ E000305,E006400,same_short_name,same_short_name,HNG00758
760
+ E006990,E010359,similar_tax_code,similar_tax_code,HNG00759
761
+ E004538,E005203,similar_tax_code,similar_tax_code,HNG00760
762
+ E000546,E009070,same_short_name,same_short_name,HNG00761
763
+ E001608,E004778,same_short_name,same_short_name,HNG00762
764
+ E004597,E006732,same_address,same_address,HNG00763
765
+ E003306,E008733,same_name_and_industry,same_name_and_industry,HNG00764
766
+ E000047,E000518,same_representative,same_representative,HNG00765
767
+ E004794,E005270,same_address,same_address,HNG00766
768
+ E003191,E003206,same_address,same_address,HNG00767
769
+ E001018,E007653,same_representative,same_representative,HNG00768
770
+ E002407,E004923,same_address,same_address,HNG00769
771
+ E002074,E010084,similar_tax_code,similar_tax_code,HNG00770
772
+ E009040,E009895,same_representative,same_representative,HNG00771
773
+ E006918,E010267,same_short_name,same_short_name,HNG00772
774
+ E007155,E011180,same_name_and_industry,same_name_and_industry,HNG00773
775
+ E001711,E011191,same_representative,same_representative,HNG00774
776
+ E003572,E007597,same_address,same_address,HNG00775
777
+ E004517,E004657,similar_tax_code,similar_tax_code,HNG00776
778
+ E005194,E009552,same_short_name,same_short_name,HNG00777
779
+ E000360,E005005,same_name_and_industry,same_name_and_industry,HNG00778
780
+ E002256,E009143,similar_tax_code,similar_tax_code,HNG00779
781
+ E002753,E011875,same_address,same_address,HNG00780
782
+ E004351,E011241,same_address,same_address,HNG00781
783
+ E009854,E011149,same_address,same_address,HNG00782
784
+ E006978,E007807,similar_tax_code,similar_tax_code,HNG00783
785
+ E008007,E011808,similar_tax_code,similar_tax_code,HNG00784
786
+ E004866,E006441,similar_tax_code,similar_tax_code,HNG00785
787
+ E001750,E006926,same_name_and_industry,same_name_and_industry,HNG00786
788
+ E007865,E009214,same_representative,same_representative,HNG00787
789
+ E000692,E009479,same_representative,same_representative,HNG00788
790
+ E000214,E011101,similar_tax_code,similar_tax_code,HNG00789
791
+ E004587,E005835,same_short_name,same_short_name,HNG00790
792
+ E004307,E007373,same_short_name,same_short_name,HNG00791
793
+ E001082,E002436,same_representative,same_representative,HNG00792
794
+ E001057,E010194,similar_tax_code,similar_tax_code,HNG00793
795
+ E005364,E009050,similar_tax_code,similar_tax_code,HNG00794
796
+ E005988,E008794,same_name_and_industry,same_name_and_industry,HNG00795
797
+ E006628,E010012,similar_tax_code,similar_tax_code,HNG00796
798
+ E007296,E007683,same_address,same_address,HNG00797
799
+ E001060,E002944,same_representative,same_representative,HNG00798
800
+ E009105,E009721,same_representative,same_representative,HNG00799
801
+ E004066,E004548,same_address,same_address,HNG00800
802
+ E000719,E005215,same_address,same_address,HNG00801
803
+ E007934,E010091,similar_tax_code,similar_tax_code,HNG00802
804
+ E005764,E010620,similar_tax_code,similar_tax_code,HNG00803
805
+ E006820,E011246,same_short_name,same_short_name,HNG00804
806
+ E004485,E006146,same_name_and_industry,same_name_and_industry,HNG00805
807
+ E000950,E005883,same_address,same_address,HNG00806
808
+ E001743,E009985,same_name_and_industry,same_name_and_industry,HNG00807
809
+ E003296,E006899,same_short_name,same_short_name,HNG00808
810
+ E000918,E008670,same_address,same_address,HNG00809
811
+ E004684,E008577,same_name_and_industry,same_name_and_industry,HNG00810
812
+ E006091,E007626,similar_tax_code,similar_tax_code,HNG00811
813
+ E008756,E010332,same_name_and_industry,same_name_and_industry,HNG00812
814
+ E002738,E010497,same_representative,same_representative,HNG00813
815
+ E006226,E011072,similar_tax_code,similar_tax_code,HNG00814
816
+ E001584,E001724,same_representative,same_representative,HNG00815
817
+ E008751,E010437,same_name_and_industry,same_name_and_industry,HNG00816
818
+ E003676,E010768,same_name_and_industry,same_name_and_industry,HNG00817
819
+ E001781,E004312,same_name_and_industry,same_name_and_industry,HNG00818
820
+ E001459,E003654,similar_tax_code,similar_tax_code,HNG00819
821
+ E010169,E010277,similar_tax_code,similar_tax_code,HNG00820
822
+ E005339,E010306,same_representative,same_representative,HNG00821
823
+ E000021,E005102,same_representative,same_representative,HNG00822
824
+ E001189,E010158,similar_tax_code,similar_tax_code,HNG00823
825
+ E003080,E008064,same_short_name,same_short_name,HNG00824
826
+ E002081,E009131,same_short_name,same_short_name,HNG00825
827
+ E005003,E011658,similar_tax_code,similar_tax_code,HNG00826
828
+ E002352,E002456,same_short_name,same_short_name,HNG00827
829
+ E000136,E006940,same_address,same_address,HNG00828
830
+ E001825,E006076,similar_tax_code,similar_tax_code,HNG00829
831
+ E000420,E010919,similar_tax_code,similar_tax_code,HNG00830
832
+ E008855,E010199,same_address,same_address,HNG00831
833
+ E000878,E002448,same_short_name,same_short_name,HNG00832
834
+ E000336,E000429,same_short_name,same_short_name,HNG00833
835
+ E000944,E005544,same_name_and_industry,same_name_and_industry,HNG00834
836
+ E006045,E010139,same_short_name,same_short_name,HNG00835
837
+ E001008,E009020,same_name_and_industry,same_name_and_industry,HNG00836
838
+ E005125,E011368,same_name_and_industry,same_name_and_industry,HNG00837
839
+ E006977,E008292,same_representative,same_representative,HNG00838
840
+ E002415,E004100,similar_tax_code,similar_tax_code,HNG00839
841
+ E006549,E007709,same_name_and_industry,same_name_and_industry,HNG00840
842
+ E010014,E010809,similar_tax_code,similar_tax_code,HNG00841
843
+ E000318,E001128,same_address,same_address,HNG00842
844
+ E007926,E011824,same_address,same_address,HNG00843
845
+ E007107,E011118,same_address,same_address,HNG00844
846
+ E006901,E010783,same_address,same_address,HNG00845
847
+ E006577,E010675,same_representative,same_representative,HNG00846
848
+ E001934,E008494,same_representative,same_representative,HNG00847
849
+ E001644,E004616,similar_tax_code,similar_tax_code,HNG00848
850
+ E000076,E002874,same_short_name,same_short_name,HNG00849
851
+ E004286,E006536,same_address,same_address,HNG00850
852
+ E002579,E008179,same_representative,same_representative,HNG00851
853
+ E002919,E007122,same_address,same_address,HNG00852
854
+ E001412,E003872,same_short_name,same_short_name,HNG00853
855
+ E000671,E008164,same_address,same_address,HNG00854
856
+ E000022,E002361,same_name_and_industry,same_name_and_industry,HNG00855
857
+ E001590,E011396,same_short_name,same_short_name,HNG00856
858
+ E007311,E008806,same_short_name,same_short_name,HNG00857
859
+ E008133,E011096,same_representative,same_representative,HNG00858
860
+ E000899,E002821,same_short_name,same_short_name,HNG00859
861
+ E002088,E011100,same_representative,same_representative,HNG00860
862
+ E001122,E004756,same_address,same_address,HNG00861
863
+ E003324,E004590,similar_tax_code,similar_tax_code,HNG00862
864
+ E001266,E009458,same_name_and_industry,same_name_and_industry,HNG00863
865
+ E004182,E004796,same_address,same_address,HNG00864
866
+ E003999,E010811,similar_tax_code,similar_tax_code,HNG00865
867
+ E003411,E010185,similar_tax_code,similar_tax_code,HNG00866
868
+ E000196,E004481,same_address,same_address,HNG00867
869
+ E000644,E011901,same_representative,same_representative,HNG00868
870
+ E001650,E008538,similar_tax_code,similar_tax_code,HNG00869
871
+ E000038,E010563,similar_tax_code,similar_tax_code,HNG00870
872
+ E006669,E011399,same_address,same_address,HNG00871
873
+ E001047,E004946,same_representative,same_representative,HNG00872
874
+ E001420,E005378,same_name_and_industry,same_name_and_industry,HNG00873
875
+ E005038,E005925,same_address,same_address,HNG00874
876
+ E008101,E008615,same_name_and_industry,same_name_and_industry,HNG00875
877
+ E000548,E009141,same_address,same_address,HNG00876
878
+ E002185,E004853,same_name_and_industry,same_name_and_industry,HNG00877
879
+ E002768,E004820,same_representative,same_representative,HNG00878
880
+ E006038,E010822,same_representative,same_representative,HNG00879
881
+ E002326,E002966,same_short_name,same_short_name,HNG00880
882
+ E002511,E009392,same_representative,same_representative,HNG00881
883
+ E000526,E005877,same_short_name,same_short_name,HNG00882
884
+ E005771,E011095,similar_tax_code,similar_tax_code,HNG00883
885
+ E007895,E009839,same_representative,same_representative,HNG00884
886
+ E007793,E008691,similar_tax_code,similar_tax_code,HNG00885
887
+ E005311,E007897,same_short_name,same_short_name,HNG00886
888
+ E000847,E001028,same_address,same_address,HNG00887
889
+ E001193,E006075,same_short_name,same_short_name,HNG00888
890
+ E006321,E007414,same_representative,same_representative,HNG00889
891
+ E001457,E010880,similar_tax_code,similar_tax_code,HNG00890
892
+ E004862,E008259,similar_tax_code,similar_tax_code,HNG00891
893
+ E001086,E005724,same_name_and_industry,same_name_and_industry,HNG00892
894
+ E002096,E006991,similar_tax_code,similar_tax_code,HNG00893
895
+ E002476,E010630,similar_tax_code,similar_tax_code,HNG00894
896
+ E001564,E010083,same_representative,same_representative,HNG00895
897
+ E003034,E006101,same_name_and_industry,same_name_and_industry,HNG00896
898
+ E000384,E009663,same_representative,same_representative,HNG00897
899
+ E000714,E009146,same_name_and_industry,same_name_and_industry,HNG00898
900
+ E000780,E004777,same_name_and_industry,same_name_and_industry,HNG00899
901
+ E008062,E009892,same_short_name,same_short_name,HNG00900
902
+ E000517,E009383,same_short_name,same_short_name,HNG00901
903
+ E007234,E010538,same_address,same_address,HNG00902
904
+ E007339,E007592,similar_tax_code,similar_tax_code,HNG00903
905
+ E005205,E010266,similar_tax_code,similar_tax_code,HNG00904
906
+ E005234,E007374,similar_tax_code,similar_tax_code,HNG00905
907
+ E005001,E006916,same_name_and_industry,same_name_and_industry,HNG00906
908
+ E004432,E007370,similar_tax_code,similar_tax_code,HNG00907
909
+ E002553,E009770,same_representative,same_representative,HNG00908
910
+ E003025,E005165,same_short_name,same_short_name,HNG00909
911
+ E001470,E010741,same_representative,same_representative,HNG00910
912
+ E001381,E007967,same_name_and_industry,same_name_and_industry,HNG00911
913
+ E001845,E009480,same_name_and_industry,same_name_and_industry,HNG00912
914
+ E003845,E004308,same_address,same_address,HNG00913
915
+ E003700,E009547,same_address,same_address,HNG00914
916
+ E000902,E004672,same_name_and_industry,same_name_and_industry,HNG00915
917
+ E010022,E010316,same_name_and_industry,same_name_and_industry,HNG00916
918
+ E007278,E008349,same_address,same_address,HNG00917
919
+ E000909,E008102,similar_tax_code,similar_tax_code,HNG00918
920
+ E000418,E000775,same_address,same_address,HNG00919
921
+ E000345,E001375,same_representative,same_representative,HNG00920
922
+ E000830,E004790,similar_tax_code,similar_tax_code,HNG00921
923
+ E005607,E011203,same_short_name,same_short_name,HNG00922
924
+ E001210,E005778,same_short_name,same_short_name,HNG00923
925
+ E010743,E011223,same_address,same_address,HNG00924
926
+ E003686,E007279,same_address,same_address,HNG00925
927
+ E004138,E011442,same_representative,same_representative,HNG00926
928
+ E004493,E007338,same_short_name,same_short_name,HNG00927
929
+ E004511,E007175,same_short_name,same_short_name,HNG00928
930
+ E003959,E004907,same_name_and_industry,same_name_and_industry,HNG00929
931
+ E004774,E006688,same_name_and_industry,same_name_and_industry,HNG00930
932
+ E001134,E001413,same_short_name,same_short_name,HNG00931
933
+ E002892,E009110,same_representative,same_representative,HNG00932
934
+ E000501,E008238,same_short_name,same_short_name,HNG00933
935
+ E004225,E006204,same_address,same_address,HNG00934
936
+ E003241,E011301,same_name_and_industry,same_name_and_industry,HNG00935
937
+ E007385,E009607,same_address,same_address,HNG00936
938
+ E003289,E005581,similar_tax_code,similar_tax_code,HNG00937
939
+ E002164,E006283,similar_tax_code,similar_tax_code,HNG00938
940
+ E001058,E005226,same_address,same_address,HNG00939
941
+ E001838,E003189,same_short_name,same_short_name,HNG00940
942
+ E005495,E011858,same_name_and_industry,same_name_and_industry,HNG00941
943
+ E007944,E008120,same_short_name,same_short_name,HNG00942
944
+ E004896,E011871,same_representative,same_representative,HNG00943
945
+ E010295,E010747,same_representative,same_representative,HNG00944
946
+ E002530,E005419,same_address,same_address,HNG00945
947
+ E010017,E011532,same_representative,same_representative,HNG00946
948
+ E000046,E007043,same_name_and_industry,same_name_and_industry,HNG00947
949
+ E001070,E010750,same_address,same_address,HNG00948
950
+ E000381,E002248,same_representative,same_representative,HNG00949
951
+ E007394,E011683,similar_tax_code,similar_tax_code,HNG00950
952
+ E003091,E008047,same_representative,same_representative,HNG00951
953
+ E003287,E007532,same_name_and_industry,same_name_and_industry,HNG00952
954
+ E000630,E008536,same_name_and_industry,same_name_and_industry,HNG00953
955
+ E004988,E008567,similar_tax_code,similar_tax_code,HNG00954
956
+ E001051,E006121,same_short_name,same_short_name,HNG00955
957
+ E002180,E009746,same_short_name,same_short_name,HNG00956
958
+ E005677,E011103,same_address,same_address,HNG00957
959
+ E000011,E005697,same_representative,same_representative,HNG00958
960
+ E002327,E004388,same_address,same_address,HNG00959
961
+ E006425,E009545,same_short_name,same_short_name,HNG00960
962
+ E003920,E008300,similar_tax_code,similar_tax_code,HNG00961
963
+ E006694,E010971,same_short_name,same_short_name,HNG00962
964
+ E004852,E007954,same_name_and_industry,same_name_and_industry,HNG00963
965
+ E001322,E005136,same_representative,same_representative,HNG00964
966
+ E001509,E006798,same_address,same_address,HNG00965
967
+ E000362,E004374,same_name_and_industry,same_name_and_industry,HNG00966
968
+ E004787,E004865,same_address,same_address,HNG00967
969
+ E003467,E003640,same_address,same_address,HNG00968
970
+ E007965,E011319,same_name_and_industry,same_name_and_industry,HNG00969
971
+ E003144,E008405,same_name_and_industry,same_name_and_industry,HNG00970
972
+ E003167,E003516,same_name_and_industry,same_name_and_industry,HNG00971
973
+ E002481,E003440,same_representative,same_representative,HNG00972
974
+ E001613,E005408,same_address,same_address,HNG00973
975
+ E001589,E011422,same_name_and_industry,same_name_and_industry,HNG00974
976
+ E000943,E011603,same_short_name,same_short_name,HNG00975
977
+ E003954,E010103,same_short_name,same_short_name,HNG00976
978
+ E003637,E009736,similar_tax_code,similar_tax_code,HNG00977
979
+ E000783,E003518,similar_tax_code,similar_tax_code,HNG00978
980
+ E002001,E009380,similar_tax_code,similar_tax_code,HNG00979
981
+ E001102,E001525,same_name_and_industry,same_name_and_industry,HNG00980
982
+ E003810,E005043,same_address,same_address,HNG00981
983
+ E003174,E005187,similar_tax_code,similar_tax_code,HNG00982
984
+ E003894,E005379,same_short_name,same_short_name,HNG00983
985
+ E002541,E005119,same_name_and_industry,same_name_and_industry,HNG00984
986
+ E003103,E007064,same_representative,same_representative,HNG00985
987
+ E009120,E009398,same_name_and_industry,same_name_and_industry,HNG00986
988
+ E004123,E005955,same_short_name,same_short_name,HNG00987
989
+ E001474,E007657,same_representative,same_representative,HNG00988
990
+ E000593,E007735,same_short_name,same_short_name,HNG00989
991
+ E001895,E008817,same_address,same_address,HNG00990
992
+ E004566,E010075,same_name_and_industry,same_name_and_industry,HNG00991
993
+ E003431,E008077,similar_tax_code,similar_tax_code,HNG00992
994
+ E003386,E010243,same_name_and_industry,same_name_and_industry,HNG00993
995
+ E001792,E005377,same_short_name,same_short_name,HNG00994
996
+ E009281,E009883,same_name_and_industry,same_name_and_industry,HNG00995
997
+ E007886,E009772,same_address,same_address,HNG00996
998
+ E002432,E003848,same_representative,same_representative,HNG00997
999
+ E000268,E006508,same_address,same_address,HNG00998
1000
+ E003351,E010714,same_representative,same_representative,HNG00999
1001
+ E001760,E004880,same_representative,same_representative,HNG01000
1002
+ E006342,E009006,same_short_name,same_short_name,HNG01001
1003
+ E002282,E009506,same_short_name,same_short_name,HNG01002
1004
+ E005928,E010672,same_short_name,same_short_name,HNG01003
1005
+ E002009,E002137,same_short_name,same_short_name,HNG01004
1006
+ E002022,E005056,same_representative,same_representative,HNG01005
1007
+ E010873,E011807,same_representative,same_representative,HNG01006
1008
+ E006132,E010909,same_representative,same_representative,HNG01007
1009
+ E003922,E004651,same_name_and_industry,same_name_and_industry,HNG01008
1010
+ E003284,E010235,same_address,same_address,HNG01009
1011
+ E005295,E006316,same_address,same_address,HNG01010
1012
+ E007849,E009995,same_address,same_address,HNG01011
1013
+ E008382,E009630,same_short_name,same_short_name,HNG01012
1014
+ E002567,E005685,same_address,same_address,HNG01013
1015
+ E004983,E010795,same_short_name,same_short_name,HNG01014
1016
+ E003297,E004833,same_representative,same_representative,HNG01015
1017
+ E005313,E006684,similar_tax_code,similar_tax_code,HNG01016
1018
+ E004595,E006326,similar_tax_code,similar_tax_code,HNG01017
1019
+ E000350,E010444,same_short_name,same_short_name,HNG01018
1020
+ E004255,E006580,similar_tax_code,similar_tax_code,HNG01019
1021
+ E003648,E008614,same_short_name,same_short_name,HNG01020
1022
+ E000638,E005780,same_short_name,same_short_name,HNG01021
1023
+ E001497,E008988,similar_tax_code,similar_tax_code,HNG01022
1024
+ E009856,E011787,similar_tax_code,similar_tax_code,HNG01023
1025
+ E006741,E010210,same_name_and_industry,same_name_and_industry,HNG01024
1026
+ E000388,E005653,same_short_name,same_short_name,HNG01025
1027
+ E000468,E011780,same_address,same_address,HNG01026
1028
+ E005143,E005811,same_name_and_industry,same_name_and_industry,HNG01027
1029
+ E004743,E011217,same_name_and_industry,same_name_and_industry,HNG01028
1030
+ E001036,E002983,same_representative,same_representative,HNG01029
1031
+ E011456,E011783,same_address,same_address,HNG01030
1032
+ E003708,E009408,similar_tax_code,similar_tax_code,HNG01031
1033
+ E003325,E006815,similar_tax_code,similar_tax_code,HNG01032
1034
+ E001666,E001971,same_name_and_industry,same_name_and_industry,HNG01033
1035
+ E009010,E010027,same_name_and_industry,same_name_and_industry,HNG01034
1036
+ E001987,E010895,same_address,same_address,HNG01035
1037
+ E005257,E006670,same_address,same_address,HNG01036
1038
+ E002275,E004669,same_short_name,same_short_name,HNG01037
1039
+ E007213,E009712,same_address,same_address,HNG01038
1040
+ E000367,E007121,similar_tax_code,similar_tax_code,HNG01039
1041
+ E004465,E006793,same_short_name,same_short_name,HNG01040
1042
+ E002903,E010070,similar_tax_code,similar_tax_code,HNG01041
1043
+ E009743,E011333,same_short_name,same_short_name,HNG01042
1044
+ E001477,E006559,same_address,same_address,HNG01043
1045
+ E001261,E004155,similar_tax_code,similar_tax_code,HNG01044
1046
+ E005798,E010184,same_address,same_address,HNG01045
1047
+ E007485,E011823,same_short_name,same_short_name,HNG01046
1048
+ E004185,E005800,same_name_and_industry,same_name_and_industry,HNG01047
1049
+ E004561,E005192,same_name_and_industry,same_name_and_industry,HNG01048
1050
+ E000197,E004448,same_representative,same_representative,HNG01049
1051
+ E003610,E008427,similar_tax_code,similar_tax_code,HNG01050
1052
+ E001409,E011113,same_name_and_industry,same_name_and_industry,HNG01051
1053
+ E003994,E005199,same_name_and_industry,same_name_and_industry,HNG01052
1054
+ E000579,E005099,same_short_name,same_short_name,HNG01053
1055
+ E003690,E009307,same_representative,same_representative,HNG01054
1056
+ E008366,E008689,same_address,same_address,HNG01055
1057
+ E001318,E011774,same_name_and_industry,same_name_and_industry,HNG01056
1058
+ E007783,E011882,same_address,same_address,HNG01057
1059
+ E000957,E004269,same_address,same_address,HNG01058
1060
+ E009428,E011885,same_name_and_industry,same_name_and_industry,HNG01059
1061
+ E011137,E011481,same_representative,same_representative,HNG01060
1062
+ E006481,E008815,same_representative,same_representative,HNG01061
1063
+ E010401,E010724,same_name_and_industry,same_name_and_industry,HNG01062
1064
+ E001876,E002094,same_representative,same_representative,HNG01063
1065
+ E008506,E010519,similar_tax_code,similar_tax_code,HNG01064
1066
+ E001065,E011365,same_address,same_address,HNG01065
1067
+ E007003,E009493,same_address,same_address,HNG01066
1068
+ E009925,E011260,same_representative,same_representative,HNG01067
1069
+ E003464,E008059,similar_tax_code,similar_tax_code,HNG01068
1070
+ E000236,E006697,same_address,same_address,HNG01069
1071
+ E005051,E011057,same_address,same_address,HNG01070
1072
+ E005491,E007468,same_name_and_industry,same_name_and_industry,HNG01071
1073
+ E007739,E010168,same_address,same_address,HNG01072
1074
+ E004383,E007878,same_address,same_address,HNG01073
1075
+ E000817,E005259,same_representative,same_representative,HNG01074
1076
+ E000079,E001891,same_representative,same_representative,HNG01075
1077
+ E000669,E007501,same_address,same_address,HNG01076
1078
+ E007430,E011883,similar_tax_code,similar_tax_code,HNG01077
1079
+ E002417,E005933,similar_tax_code,similar_tax_code,HNG01078
1080
+ E001879,E009343,same_address,same_address,HNG01079
1081
+ E001769,E005239,same_name_and_industry,same_name_and_industry,HNG01080
1082
+ E004284,E009577,similar_tax_code,similar_tax_code,HNG01081
1083
+ E008448,E010594,same_address,same_address,HNG01082
1084
+ E004031,E011109,same_address,same_address,HNG01083
1085
+ E000744,E008802,same_short_name,same_short_name,HNG01084
1086
+ E001502,E008477,same_short_name,same_short_name,HNG01085
1087
+ E005787,E007741,similar_tax_code,similar_tax_code,HNG01086
1088
+ E004737,E005817,same_representative,same_representative,HNG01087
1089
+ E001330,E006195,same_short_name,same_short_name,HNG01088
1090
+ E000904,E010705,same_name_and_industry,same_name_and_industry,HNG01089
1091
+ E004224,E006102,same_name_and_industry,same_name_and_industry,HNG01090
1092
+ E003308,E010138,same_address,same_address,HNG01091
1093
+ E000200,E011696,same_short_name,same_short_name,HNG01092
1094
+ E008707,E009449,similar_tax_code,similar_tax_code,HNG01093
1095
+ E001520,E003102,same_representative,same_representative,HNG01094
1096
+ E003337,E009439,same_name_and_industry,same_name_and_industry,HNG01095
1097
+ E003012,E011906,same_address,same_address,HNG01096
1098
+ E003555,E006273,same_address,same_address,HNG01097
1099
+ E004643,E008306,same_short_name,same_short_name,HNG01098
1100
+ E004317,E008194,same_name_and_industry,same_name_and_industry,HNG01099
1101
+ E001488,E006621,same_representative,same_representative,HNG01100
1102
+ E002016,E011988,same_representative,same_representative,HNG01101
1103
+ E007006,E011741,same_representative,same_representative,HNG01102
1104
+ E005614,E008928,similar_tax_code,similar_tax_code,HNG01103
1105
+ E002293,E010253,same_representative,same_representative,HNG01104
1106
+ E001943,E002334,similar_tax_code,similar_tax_code,HNG01105
1107
+ E006695,E011997,same_short_name,same_short_name,HNG01106
1108
+ E002847,E010219,same_representative,same_representative,HNG01107
1109
+ E002278,E009029,same_name_and_industry,same_name_and_industry,HNG01108
1110
+ E006631,E007902,same_short_name,same_short_name,HNG01109
1111
+ E004592,E008234,same_name_and_industry,same_name_and_industry,HNG01110
1112
+ E005963,E006388,same_representative,same_representative,HNG01111
1113
+ E000055,E005456,same_address,same_address,HNG01112
1114
+ E009591,E010617,same_address,same_address,HNG01113
1115
+ E001141,E011649,same_representative,same_representative,HNG01114
1116
+ E002259,E011209,same_address,same_address,HNG01115
1117
+ E002551,E010669,same_name_and_industry,same_name_and_industry,HNG01116
1118
+ E002912,E007353,similar_tax_code,similar_tax_code,HNG01117
1119
+ E002967,E009003,same_short_name,same_short_name,HNG01118
1120
+ E001427,E003068,similar_tax_code,similar_tax_code,HNG01119
1121
+ E002263,E002364,same_address,same_address,HNG01120
1122
+ E000573,E007408,same_short_name,same_short_name,HNG01121
1123
+ E001902,E002852,same_name_and_industry,same_name_and_industry,HNG01122
1124
+ E003066,E011851,same_address,same_address,HNG01123
1125
+ E006944,E011660,same_name_and_industry,same_name_and_industry,HNG01124
1126
+ E004613,E007863,same_short_name,same_short_name,HNG01125
1127
+ E003490,E007219,same_name_and_industry,same_name_and_industry,HNG01126
1128
+ E005937,E009818,same_name_and_industry,same_name_and_industry,HNG01127
1129
+ E000999,E011265,same_representative,same_representative,HNG01128
1130
+ E007605,E011867,similar_tax_code,similar_tax_code,HNG01129
1131
+ E005071,E011833,same_representative,same_representative,HNG01130
1132
+ E004488,E005218,similar_tax_code,similar_tax_code,HNG01131
1133
+ E003098,E010186,similar_tax_code,similar_tax_code,HNG01132
1134
+ E003125,E009748,same_short_name,same_short_name,HNG01133
1135
+ E006766,E011404,same_address,same_address,HNG01134
1136
+ E008719,E009688,same_address,same_address,HNG01135
1137
+ E003728,E003760,similar_tax_code,similar_tax_code,HNG01136
1138
+ E004842,E011640,same_short_name,same_short_name,HNG01137
1139
+ E006227,E010125,same_address,same_address,HNG01138
1140
+ E002683,E006196,same_name_and_industry,same_name_and_industry,HNG01139
1141
+ E002446,E007669,same_representative,same_representative,HNG01140
1142
+ E010978,E011470,same_representative,same_representative,HNG01141
1143
+ E010794,E011775,same_name_and_industry,same_name_and_industry,HNG01142
1144
+ E003798,E011154,similar_tax_code,similar_tax_code,HNG01143
1145
+ E005287,E005916,same_representative,same_representative,HNG01144
1146
+ E005885,E008381,same_address,same_address,HNG01145
1147
+ E001391,E003517,similar_tax_code,similar_tax_code,HNG01146
1148
+ E000056,E006041,same_representative,same_representative,HNG01147
1149
+ E007469,E010101,similar_tax_code,similar_tax_code,HNG01148
1150
+ E007681,E010523,same_short_name,same_short_name,HNG01149
1151
+ E006115,E010248,similar_tax_code,similar_tax_code,HNG01150
1152
+ E002660,E009522,same_name_and_industry,same_name_and_industry,HNG01151
1153
+ E006232,E008037,same_name_and_industry,same_name_and_industry,HNG01152
1154
+ E005141,E007907,same_address,same_address,HNG01153
1155
+ E003048,E003446,same_representative,same_representative,HNG01154
1156
+ E004747,E011537,same_representative,same_representative,HNG01155
1157
+ E005469,E007914,same_address,same_address,HNG01156
1158
+ E000887,E002243,same_representative,same_representative,HNG01157
1159
+ E008669,E009555,same_name_and_industry,same_name_and_industry,HNG01158
1160
+ E002277,E004804,same_short_name,same_short_name,HNG01159
1161
+ E004531,E005077,same_address,same_address,HNG01160
1162
+ E001776,E009162,same_short_name,same_short_name,HNG01161
1163
+ E008600,E010964,same_name_and_industry,same_name_and_industry,HNG01162
1164
+ E006507,E009516,same_address,same_address,HNG01163
1165
+ E001206,E008969,same_short_name,same_short_name,HNG01164
1166
+ E001626,E010443,same_address,same_address,HNG01165
1167
+ E002358,E007920,same_address,same_address,HNG01166
1168
+ E003039,E005719,same_name_and_industry,same_name_and_industry,HNG01167
1169
+ E004746,E008937,same_short_name,same_short_name,HNG01168
1170
+ E002869,E006194,same_address,same_address,HNG01169
1171
+ E007337,E007952,similar_tax_code,similar_tax_code,HNG01170
1172
+ E003216,E007407,similar_tax_code,similar_tax_code,HNG01171
1173
+ E000223,E003168,same_short_name,same_short_name,HNG01172
1174
+ E003705,E009575,same_name_and_industry,same_name_and_industry,HNG01173
1175
+ E006430,E008586,similar_tax_code,similar_tax_code,HNG01174
1176
+ E002025,E003568,same_short_name,same_short_name,HNG01175
1177
+ E004476,E007976,same_name_and_industry,same_name_and_industry,HNG01176
1178
+ E000354,E005880,same_name_and_industry,same_name_and_industry,HNG01177
1179
+ E001989,E008244,same_representative,same_representative,HNG01178
1180
+ E004239,E009850,same_short_name,same_short_name,HNG01179
1181
+ E000635,E001683,same_short_name,same_short_name,HNG01180
1182
+ E000239,E002328,same_name_and_industry,same_name_and_industry,HNG01181
1183
+ E005550,E010708,similar_tax_code,similar_tax_code,HNG01182
1184
+ E001081,E011307,same_name_and_industry,same_name_and_industry,HNG01183
1185
+ E003475,E004265,similar_tax_code,similar_tax_code,HNG01184
1186
+ E009092,E009249,same_representative,same_representative,HNG01185
1187
+ E003419,E006438,same_address,same_address,HNG01186
1188
+ E009233,E010439,same_representative,same_representative,HNG01187
1189
+ E002130,E009303,same_name_and_industry,same_name_and_industry,HNG01188
1190
+ E007732,E010132,same_short_name,same_short_name,HNG01189
1191
+ E002265,E006836,same_name_and_industry,same_name_and_industry,HNG01190
1192
+ E009791,E011977,same_name_and_industry,same_name_and_industry,HNG01191
1193
+ E001931,E005431,same_short_name,same_short_name,HNG01192
1194
+ E002762,E004201,same_name_and_industry,same_name_and_industry,HNG01193
1195
+ E000804,E001289,same_address,same_address,HNG01194
1196
+ E000163,E005293,same_short_name,same_short_name,HNG01195
1197
+ E008597,E008790,same_short_name,same_short_name,HNG01196
1198
+ E010839,E011921,same_representative,same_representative,HNG01197
1199
+ E002950,E009144,same_short_name,same_short_name,HNG01198
1200
+ E002258,E003258,same_short_name,same_short_name,HNG01199
1201
+ E000580,E000664,same_short_name,same_short_name,HNG01200
control/record_split_map.csv ADDED
The diff for this file is too large to render. See raw diff
 
evaluation/all_positive_pairs.csv ADDED
The diff for this file is too large to render. See raw diff
 
evaluation/evaluation_pairs.csv CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ee43cca02a06827d66c575ad804e772e768f26f7e1df70b3ac151569c4d7cdbe
3
- size 20589878
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e282e1f2f743bf1dffdef05200f57a96d16becaf10a65d9eb25705a491cbe276
3
+ size 36323287
evaluation/ground_truth_entity_map.csv CHANGED
The diff for this file is too large to render. See raw diff
 
evaluation/record_generation_metadata.csv CHANGED
The diff for this file is too large to render. See raw diff
 
hub/all_positive_pairs/test.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/all_positive_pairs/train.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/all_positive_pairs/validation.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/business_registry/test.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/business_registry/train.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/business_registry/validation.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/canonical_entity/test.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/canonical_entity/train.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/canonical_entity/validation.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/canonical_entity_history/test.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/canonical_entity_history/train.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/canonical_entity_history/validation.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/evaluation_pairs/test.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/evaluation_pairs/train.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f34bc9b56abcf6303cd06aafbb68b48b5a4c636270aa98e148cc941375cfbb1e
3
+ size 20547129
hub/evaluation_pairs/validation.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/ground_truth_entity_map/test.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/ground_truth_entity_map/train.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/ground_truth_entity_map/validation.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/hard_negative_relationships/test.csv ADDED
@@ -0,0 +1,244 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ entity_id_l,entity_id_r,hard_negative_reason,shared_or_similar_value_type,hard_negative_group_id
2
+ E003023,E010571,same_representative,same_representative,HNG00006
3
+ E004725,E010916,same_name_and_industry,same_name_and_industry,HNG00009
4
+ E003825,E009890,same_short_name,same_short_name,HNG00010
5
+ E002988,E006603,same_representative,same_representative,HNG00013
6
+ E000998,E011372,same_name_and_industry,same_name_and_industry,HNG00014
7
+ E006063,E010043,same_representative,same_representative,HNG00018
8
+ E000808,E003156,same_representative,same_representative,HNG00020
9
+ E000481,E009560,same_representative,same_representative,HNG00021
10
+ E000694,E005371,same_representative,same_representative,HNG00023
11
+ E004641,E007235,same_name_and_industry,same_name_and_industry,HNG00027
12
+ E000900,E001619,same_name_and_industry,same_name_and_industry,HNG00046
13
+ E005109,E006844,similar_tax_code,similar_tax_code,HNG00056
14
+ E001349,E006716,same_representative,same_representative,HNG00060
15
+ E000144,E006124,similar_tax_code,similar_tax_code,HNG00067
16
+ E002766,E007231,similar_tax_code,similar_tax_code,HNG00068
17
+ E005267,E010635,same_name_and_industry,same_name_and_industry,HNG00069
18
+ E002708,E007748,same_name_and_industry,same_name_and_industry,HNG00070
19
+ E007765,E011878,similar_tax_code,similar_tax_code,HNG00073
20
+ E000315,E005303,same_name_and_industry,same_name_and_industry,HNG00074
21
+ E009698,E011350,same_representative,same_representative,HNG00077
22
+ E001919,E002351,same_short_name,same_short_name,HNG00082
23
+ E007477,E010228,similar_tax_code,similar_tax_code,HNG00083
24
+ E001078,E008444,same_name_and_industry,same_name_and_industry,HNG00092
25
+ E000208,E011229,same_name_and_industry,same_name_and_industry,HNG00103
26
+ E004486,E006051,same_representative,same_representative,HNG00105
27
+ E000408,E010015,same_name_and_industry,same_name_and_industry,HNG00106
28
+ E001554,E011890,same_name_and_industry,same_name_and_industry,HNG00115
29
+ E000130,E011469,similar_tax_code,similar_tax_code,HNG00117
30
+ E001490,E004990,same_name_and_industry,same_name_and_industry,HNG00121
31
+ E004609,E010951,same_name_and_industry,same_name_and_industry,HNG00131
32
+ E005065,E007084,similar_tax_code,similar_tax_code,HNG00142
33
+ E006393,E008816,same_address,same_address,HNG00147
34
+ E004482,E009363,same_representative,same_representative,HNG00148
35
+ E004730,E010758,same_address,same_address,HNG00151
36
+ E003694,E007550,same_representative,same_representative,HNG00152
37
+ E006887,E011996,same_address,same_address,HNG00181
38
+ E005403,E010906,same_representative,same_representative,HNG00183
39
+ E000024,E001311,same_short_name,same_short_name,HNG00194
40
+ E003840,E010323,same_address,same_address,HNG00195
41
+ E001638,E001696,same_address,same_address,HNG00199
42
+ E006347,E011992,similar_tax_code,similar_tax_code,HNG00201
43
+ E011061,E011434,same_representative,same_representative,HNG00202
44
+ E005738,E008483,same_short_name,same_short_name,HNG00203
45
+ E004020,E007571,similar_tax_code,similar_tax_code,HNG00207
46
+ E000711,E007585,same_address,same_address,HNG00224
47
+ E000355,E008728,same_address,same_address,HNG00232
48
+ E002107,E011239,same_short_name,same_short_name,HNG00236
49
+ E008225,E009542,similar_tax_code,similar_tax_code,HNG00240
50
+ E009341,E009456,same_address,same_address,HNG00241
51
+ E006498,E011453,same_representative,same_representative,HNG00243
52
+ E008871,E010544,same_address,same_address,HNG00244
53
+ E006217,E006606,same_short_name,same_short_name,HNG00250
54
+ E000513,E008355,same_short_name,same_short_name,HNG00256
55
+ E003283,E008647,same_name_and_industry,same_name_and_industry,HNG00257
56
+ E004343,E006394,same_representative,same_representative,HNG00268
57
+ E002606,E005368,same_representative,same_representative,HNG00269
58
+ E002082,E007306,same_representative,same_representative,HNG00270
59
+ E004330,E011152,same_short_name,same_short_name,HNG00272
60
+ E004748,E010926,similar_tax_code,similar_tax_code,HNG00280
61
+ E002053,E008725,same_short_name,same_short_name,HNG00281
62
+ E000647,E007752,same_address,same_address,HNG00289
63
+ E002452,E006295,same_name_and_industry,same_name_and_industry,HNG00294
64
+ E007045,E010816,same_representative,same_representative,HNG00297
65
+ E000193,E008004,same_address,same_address,HNG00298
66
+ E000577,E010861,same_name_and_industry,same_name_and_industry,HNG00300
67
+ E005845,E006915,same_short_name,same_short_name,HNG00308
68
+ E004821,E006699,similar_tax_code,similar_tax_code,HNG00309
69
+ E003761,E004297,same_short_name,same_short_name,HNG00317
70
+ E002977,E007643,similar_tax_code,similar_tax_code,HNG00325
71
+ E003286,E005230,same_name_and_industry,same_name_and_industry,HNG00326
72
+ E000657,E005196,similar_tax_code,similar_tax_code,HNG00330
73
+ E001399,E002209,same_short_name,same_short_name,HNG00332
74
+ E001700,E002424,same_representative,same_representative,HNG00353
75
+ E004202,E009437,same_address,same_address,HNG00360
76
+ E001851,E011364,similar_tax_code,similar_tax_code,HNG00372
77
+ E010911,E010920,same_address,same_address,HNG00386
78
+ E000057,E003270,same_name_and_industry,same_name_and_industry,HNG00394
79
+ E007381,E008717,similar_tax_code,similar_tax_code,HNG00398
80
+ E002210,E006936,similar_tax_code,similar_tax_code,HNG00399
81
+ E005541,E007075,same_address,same_address,HNG00403
82
+ E000199,E007323,same_representative,same_representative,HNG00404
83
+ E001648,E010830,same_short_name,same_short_name,HNG00406
84
+ E006576,E007453,similar_tax_code,similar_tax_code,HNG00408
85
+ E003830,E005193,same_short_name,same_short_name,HNG00410
86
+ E003212,E004163,same_representative,same_representative,HNG00420
87
+ E000888,E003398,same_representative,same_representative,HNG00423
88
+ E002640,E010078,same_address,same_address,HNG00427
89
+ E001999,E007317,same_address,same_address,HNG00428
90
+ E007347,E007582,same_representative,same_representative,HNG00430
91
+ E002555,E005889,same_short_name,same_short_name,HNG00436
92
+ E007266,E009990,same_representative,same_representative,HNG00442
93
+ E005591,E008917,same_short_name,same_short_name,HNG00444
94
+ E005265,E006855,same_short_name,same_short_name,HNG00452
95
+ E001390,E008602,same_representative,same_representative,HNG00453
96
+ E002705,E008305,same_short_name,same_short_name,HNG00458
97
+ E003510,E008847,same_short_name,same_short_name,HNG00461
98
+ E002684,E003382,same_address,same_address,HNG00471
99
+ E002236,E003373,same_name_and_industry,same_name_and_industry,HNG00472
100
+ E002992,E009174,same_short_name,same_short_name,HNG00479
101
+ E005540,E010840,same_short_name,same_short_name,HNG00480
102
+ E003400,E004056,same_name_and_industry,same_name_and_industry,HNG00497
103
+ E005917,E011335,same_short_name,same_short_name,HNG00499
104
+ E001857,E006703,same_name_and_industry,same_name_and_industry,HNG00501
105
+ E002827,E010288,same_short_name,same_short_name,HNG00506
106
+ E005346,E006560,same_short_name,same_short_name,HNG00513
107
+ E006967,E011278,same_representative,same_representative,HNG00522
108
+ E000891,E007672,same_name_and_industry,same_name_and_industry,HNG00523
109
+ E007676,E009987,same_short_name,same_short_name,HNG00536
110
+ E005070,E006061,same_name_and_industry,same_name_and_industry,HNG00543
111
+ E004390,E004999,same_address,same_address,HNG00545
112
+ E004172,E009964,same_name_and_industry,same_name_and_industry,HNG00550
113
+ E010178,E011943,same_representative,same_representative,HNG00551
114
+ E004663,E009851,same_representative,same_representative,HNG00556
115
+ E000557,E004956,similar_tax_code,similar_tax_code,HNG00561
116
+ E001545,E010053,same_representative,same_representative,HNG00563
117
+ E002717,E004758,same_representative,same_representative,HNG00570
118
+ E003869,E004958,same_short_name,same_short_name,HNG00571
119
+ E005390,E006671,same_short_name,same_short_name,HNG00573
120
+ E000479,E009415,same_address,same_address,HNG00574
121
+ E000010,E004868,similar_tax_code,similar_tax_code,HNG00575
122
+ E002313,E009647,similar_tax_code,similar_tax_code,HNG00577
123
+ E008635,E011829,same_representative,same_representative,HNG00587
124
+ E002159,E002933,same_representative,same_representative,HNG00596
125
+ E002454,E009136,same_representative,same_representative,HNG00606
126
+ E000898,E008108,same_short_name,same_short_name,HNG00607
127
+ E002127,E011904,similar_tax_code,similar_tax_code,HNG00613
128
+ E006460,E010283,same_name_and_industry,same_name_and_industry,HNG00623
129
+ E002788,E011686,same_address,same_address,HNG00628
130
+ E001889,E004870,same_address,same_address,HNG00629
131
+ E000390,E002946,same_short_name,same_short_name,HNG00633
132
+ E001284,E005584,similar_tax_code,similar_tax_code,HNG00647
133
+ E000319,E003791,same_address,same_address,HNG00650
134
+ E003014,E006325,same_address,same_address,HNG00652
135
+ E006947,E008618,same_short_name,same_short_name,HNG00663
136
+ E001831,E002412,same_short_name,same_short_name,HNG00667
137
+ E003225,E010364,same_representative,same_representative,HNG00669
138
+ E000920,E009122,same_name_and_industry,same_name_and_industry,HNG00672
139
+ E002942,E011128,same_name_and_industry,same_name_and_industry,HNG00673
140
+ E000473,E010342,similar_tax_code,similar_tax_code,HNG00676
141
+ E000297,E011450,same_name_and_industry,same_name_and_industry,HNG00677
142
+ E005959,E007957,same_address,same_address,HNG00680
143
+ E006620,E007581,same_representative,same_representative,HNG00683
144
+ E010479,E011266,similar_tax_code,similar_tax_code,HNG00690
145
+ E005286,E005939,similar_tax_code,similar_tax_code,HNG00691
146
+ E010284,E011563,same_name_and_industry,same_name_and_industry,HNG00695
147
+ E003702,E010946,same_short_name,same_short_name,HNG00702
148
+ E003207,E011518,same_name_and_industry,same_name_and_industry,HNG00703
149
+ E003620,E009754,same_representative,same_representative,HNG00706
150
+ E002190,E007558,same_short_name,same_short_name,HNG00717
151
+ E001451,E008056,same_short_name,same_short_name,HNG00720
152
+ E003029,E007655,similar_tax_code,similar_tax_code,HNG00725
153
+ E000686,E003972,same_address,same_address,HNG00729
154
+ E001314,E008545,same_address,same_address,HNG00730
155
+ E006048,E007546,same_short_name,same_short_name,HNG00736
156
+ E007621,E011501,same_address,same_address,HNG00737
157
+ E000394,E011457,similar_tax_code,similar_tax_code,HNG00741
158
+ E004378,E005859,same_representative,same_representative,HNG00749
159
+ E003278,E006619,same_name_and_industry,same_name_and_industry,HNG00751
160
+ E001597,E009475,same_short_name,same_short_name,HNG00752
161
+ E001608,E004778,same_short_name,same_short_name,HNG00762
162
+ E001018,E007653,same_representative,same_representative,HNG00768
163
+ E009040,E009895,same_representative,same_representative,HNG00771
164
+ E005194,E009552,same_short_name,same_short_name,HNG00777
165
+ E001750,E006926,same_name_and_industry,same_name_and_industry,HNG00786
166
+ E004307,E007373,same_short_name,same_short_name,HNG00791
167
+ E005364,E009050,similar_tax_code,similar_tax_code,HNG00794
168
+ E004066,E004548,same_address,same_address,HNG00800
169
+ E006820,E011246,same_short_name,same_short_name,HNG00804
170
+ E000021,E005102,same_representative,same_representative,HNG00822
171
+ E003080,E008064,same_short_name,same_short_name,HNG00824
172
+ E002081,E009131,same_short_name,same_short_name,HNG00825
173
+ E000336,E000429,same_short_name,same_short_name,HNG00833
174
+ E006045,E010139,same_short_name,same_short_name,HNG00835
175
+ E010014,E010809,similar_tax_code,similar_tax_code,HNG00841
176
+ E006901,E010783,same_address,same_address,HNG00845
177
+ E004286,E006536,same_address,same_address,HNG00850
178
+ E002579,E008179,same_representative,same_representative,HNG00851
179
+ E001122,E004756,same_address,same_address,HNG00861
180
+ E003324,E004590,similar_tax_code,similar_tax_code,HNG00862
181
+ E001266,E009458,same_name_and_industry,same_name_and_industry,HNG00863
182
+ E000196,E004481,same_address,same_address,HNG00867
183
+ E000038,E010563,similar_tax_code,similar_tax_code,HNG00870
184
+ E008101,E008615,same_name_and_industry,same_name_and_industry,HNG00875
185
+ E000548,E009141,same_address,same_address,HNG00876
186
+ E002326,E002966,same_short_name,same_short_name,HNG00880
187
+ E000526,E005877,same_short_name,same_short_name,HNG00882
188
+ E004862,E008259,similar_tax_code,similar_tax_code,HNG00891
189
+ E008062,E009892,same_short_name,same_short_name,HNG00900
190
+ E005205,E010266,similar_tax_code,similar_tax_code,HNG00904
191
+ E004432,E007370,similar_tax_code,similar_tax_code,HNG00907
192
+ E010022,E010316,same_name_and_industry,same_name_and_industry,HNG00916
193
+ E000830,E004790,similar_tax_code,similar_tax_code,HNG00921
194
+ E003959,E004907,same_name_and_industry,same_name_and_industry,HNG00929
195
+ E004774,E006688,same_name_and_industry,same_name_and_industry,HNG00930
196
+ E004225,E006204,same_address,same_address,HNG00934
197
+ E000046,E007043,same_name_and_industry,same_name_and_industry,HNG00947
198
+ E005677,E011103,same_address,same_address,HNG00957
199
+ E002327,E004388,same_address,same_address,HNG00959
200
+ E006425,E009545,same_short_name,same_short_name,HNG00960
201
+ E003920,E008300,similar_tax_code,similar_tax_code,HNG00961
202
+ E003144,E008405,same_name_and_industry,same_name_and_industry,HNG00970
203
+ E000943,E011603,same_short_name,same_short_name,HNG00975
204
+ E003174,E005187,similar_tax_code,similar_tax_code,HNG00982
205
+ E000593,E007735,same_short_name,same_short_name,HNG00989
206
+ E001792,E005377,same_short_name,same_short_name,HNG00994
207
+ E002432,E003848,same_representative,same_representative,HNG00997
208
+ E000268,E006508,same_address,same_address,HNG00998
209
+ E002009,E002137,same_short_name,same_short_name,HNG01004
210
+ E006132,E010909,same_representative,same_representative,HNG01007
211
+ E003922,E004651,same_name_and_industry,same_name_and_industry,HNG01008
212
+ E007849,E009995,same_address,same_address,HNG01011
213
+ E004595,E006326,similar_tax_code,similar_tax_code,HNG01017
214
+ E000388,E005653,same_short_name,same_short_name,HNG01025
215
+ E000468,E011780,same_address,same_address,HNG01026
216
+ E001036,E002983,same_representative,same_representative,HNG01029
217
+ E001987,E010895,same_address,same_address,HNG01035
218
+ E005257,E006670,same_address,same_address,HNG01036
219
+ E004561,E005192,same_name_and_industry,same_name_and_industry,HNG01048
220
+ E003610,E008427,similar_tax_code,similar_tax_code,HNG01050
221
+ E001409,E011113,same_name_and_industry,same_name_and_industry,HNG01051
222
+ E000957,E004269,same_address,same_address,HNG01058
223
+ E009428,E011885,same_name_and_industry,same_name_and_industry,HNG01059
224
+ E010401,E010724,same_name_and_industry,same_name_and_industry,HNG01062
225
+ E005491,E007468,same_name_and_industry,same_name_and_industry,HNG01071
226
+ E002417,E005933,similar_tax_code,similar_tax_code,HNG01078
227
+ E001769,E005239,same_name_and_industry,same_name_and_industry,HNG01080
228
+ E004031,E011109,same_address,same_address,HNG01083
229
+ E003012,E011906,same_address,same_address,HNG01096
230
+ E004317,E008194,same_name_and_industry,same_name_and_industry,HNG01099
231
+ E002293,E010253,same_representative,same_representative,HNG01104
232
+ E002847,E010219,same_representative,same_representative,HNG01107
233
+ E005963,E006388,same_representative,same_representative,HNG01111
234
+ E000573,E007408,same_short_name,same_short_name,HNG01121
235
+ E005071,E011833,same_representative,same_representative,HNG01130
236
+ E003728,E003760,similar_tax_code,similar_tax_code,HNG01136
237
+ E007469,E010101,similar_tax_code,similar_tax_code,HNG01148
238
+ E002660,E009522,same_name_and_industry,same_name_and_industry,HNG01151
239
+ E006232,E008037,same_name_and_industry,same_name_and_industry,HNG01152
240
+ E003705,E009575,same_name_and_industry,same_name_and_industry,HNG01173
241
+ E004476,E007976,same_name_and_industry,same_name_and_industry,HNG01176
242
+ E005550,E010708,similar_tax_code,similar_tax_code,HNG01182
243
+ E009233,E010439,same_representative,same_representative,HNG01187
244
+ E002950,E009144,same_short_name,same_short_name,HNG01198
hub/hard_negative_relationships/train.csv ADDED
@@ -0,0 +1,706 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ entity_id_l,entity_id_r,hard_negative_reason,shared_or_similar_value_type,hard_negative_group_id
2
+ E001255,E004572,same_representative,same_representative,HNG00001
3
+ E000186,E008428,similar_tax_code,similar_tax_code,HNG00003
4
+ E003280,E010218,same_name_and_industry,same_name_and_industry,HNG00004
5
+ E008270,E010211,similar_tax_code,similar_tax_code,HNG00008
6
+ E009464,E011407,similar_tax_code,similar_tax_code,HNG00011
7
+ E009090,E009150,same_address,same_address,HNG00012
8
+ E003115,E010030,same_short_name,same_short_name,HNG00015
9
+ E002964,E007157,same_representative,same_representative,HNG00016
10
+ E000623,E001622,same_representative,same_representative,HNG00017
11
+ E000358,E000364,same_representative,same_representative,HNG00022
12
+ E008189,E008255,same_short_name,same_short_name,HNG00024
13
+ E000702,E011714,same_address,same_address,HNG00026
14
+ E002859,E007267,similar_tax_code,similar_tax_code,HNG00029
15
+ E002267,E008492,same_short_name,same_short_name,HNG00030
16
+ E003905,E011208,same_representative,same_representative,HNG00031
17
+ E007446,E010580,same_address,same_address,HNG00034
18
+ E001797,E007618,same_short_name,same_short_name,HNG00035
19
+ E006961,E010021,same_name_and_industry,same_name_and_industry,HNG00036
20
+ E000111,E006440,same_name_and_industry,same_name_and_industry,HNG00037
21
+ E004086,E011197,same_short_name,same_short_name,HNG00038
22
+ E003786,E004338,same_name_and_industry,same_name_and_industry,HNG00039
23
+ E002971,E011834,similar_tax_code,similar_tax_code,HNG00045
24
+ E001800,E005166,same_name_and_industry,same_name_and_industry,HNG00047
25
+ E001236,E005563,similar_tax_code,similar_tax_code,HNG00049
26
+ E001437,E005922,same_short_name,same_short_name,HNG00050
27
+ E003662,E009019,same_short_name,same_short_name,HNG00052
28
+ E000323,E008371,similar_tax_code,similar_tax_code,HNG00053
29
+ E009574,E011273,same_short_name,same_short_name,HNG00054
30
+ E002578,E006808,same_representative,same_representative,HNG00055
31
+ E007725,E008638,same_representative,same_representative,HNG00057
32
+ E009512,E010791,same_name_and_industry,same_name_and_industry,HNG00061
33
+ E001968,E007986,same_representative,same_representative,HNG00062
34
+ E007662,E011463,same_short_name,same_short_name,HNG00063
35
+ E003854,E007689,similar_tax_code,similar_tax_code,HNG00066
36
+ E003581,E011860,same_representative,same_representative,HNG00071
37
+ E008075,E011979,same_name_and_industry,same_name_and_industry,HNG00072
38
+ E004775,E011388,same_short_name,same_short_name,HNG00075
39
+ E010187,E011342,similar_tax_code,similar_tax_code,HNG00079
40
+ E009129,E011020,similar_tax_code,similar_tax_code,HNG00080
41
+ E004844,E006780,same_short_name,same_short_name,HNG00081
42
+ E010262,E011127,similar_tax_code,similar_tax_code,HNG00085
43
+ E004248,E007081,same_name_and_industry,same_name_and_industry,HNG00087
44
+ E003988,E008947,same_representative,same_representative,HNG00089
45
+ E006259,E007591,same_short_name,same_short_name,HNG00090
46
+ E007664,E007891,same_short_name,same_short_name,HNG00093
47
+ E008459,E009338,same_short_name,same_short_name,HNG00094
48
+ E003321,E008497,same_representative,same_representative,HNG00095
49
+ E002700,E010368,same_name_and_industry,same_name_and_industry,HNG00096
50
+ E007333,E009902,similar_tax_code,similar_tax_code,HNG00099
51
+ E001195,E011937,same_representative,same_representative,HNG00100
52
+ E003458,E004662,same_short_name,same_short_name,HNG00101
53
+ E005148,E010427,same_representative,same_representative,HNG00104
54
+ E004513,E010772,same_name_and_industry,same_name_and_industry,HNG00107
55
+ E001553,E004998,similar_tax_code,similar_tax_code,HNG00108
56
+ E003839,E011559,similar_tax_code,similar_tax_code,HNG00111
57
+ E009584,E011482,same_short_name,same_short_name,HNG00112
58
+ E007009,E010776,same_short_name,same_short_name,HNG00113
59
+ E007131,E009291,similar_tax_code,similar_tax_code,HNG00114
60
+ E003805,E005824,same_address,same_address,HNG00118
61
+ E003597,E005444,same_short_name,same_short_name,HNG00119
62
+ E002761,E009996,same_short_name,same_short_name,HNG00120
63
+ E001709,E011048,same_address,same_address,HNG00123
64
+ E008782,E011200,same_name_and_industry,same_name_and_industry,HNG00124
65
+ E007010,E009846,same_address,same_address,HNG00125
66
+ E004928,E010403,same_name_and_industry,same_name_and_industry,HNG00126
67
+ E000678,E007091,similar_tax_code,similar_tax_code,HNG00127
68
+ E001019,E011315,same_address,same_address,HNG00128
69
+ E006304,E006738,same_short_name,same_short_name,HNG00129
70
+ E003812,E009701,similar_tax_code,similar_tax_code,HNG00130
71
+ E005480,E006665,same_short_name,same_short_name,HNG00132
72
+ E002867,E002956,same_name_and_industry,same_name_and_industry,HNG00133
73
+ E002679,E003453,same_representative,same_representative,HNG00134
74
+ E005216,E008034,same_short_name,same_short_name,HNG00136
75
+ E004382,E010478,same_address,same_address,HNG00137
76
+ E003547,E010601,same_short_name,same_short_name,HNG00138
77
+ E009108,E010914,same_address,same_address,HNG00139
78
+ E000444,E001270,similar_tax_code,similar_tax_code,HNG00140
79
+ E001667,E007827,same_representative,same_representative,HNG00143
80
+ E000595,E009675,same_representative,same_representative,HNG00144
81
+ E005896,E011748,same_representative,same_representative,HNG00145
82
+ E000519,E006236,same_short_name,same_short_name,HNG00146
83
+ E007994,E008175,same_name_and_industry,same_name_and_industry,HNG00149
84
+ E002832,E011345,similar_tax_code,similar_tax_code,HNG00150
85
+ E005481,E008698,same_representative,same_representative,HNG00153
86
+ E003619,E009230,similar_tax_code,similar_tax_code,HNG00154
87
+ E005674,E007118,same_short_name,same_short_name,HNG00155
88
+ E003882,E010633,same_address,same_address,HNG00156
89
+ E001262,E003224,same_name_and_industry,same_name_and_industry,HNG00157
90
+ E006042,E007022,same_representative,same_representative,HNG00158
91
+ E007821,E010149,same_short_name,same_short_name,HNG00161
92
+ E000017,E008456,same_short_name,same_short_name,HNG00162
93
+ E000494,E010231,same_address,same_address,HNG00163
94
+ E002235,E011571,same_address,same_address,HNG00164
95
+ E001071,E007288,same_representative,same_representative,HNG00165
96
+ E004099,E004835,same_short_name,same_short_name,HNG00166
97
+ E003128,E003281,same_name_and_industry,same_name_and_industry,HNG00167
98
+ E002686,E003651,same_name_and_industry,same_name_and_industry,HNG00168
99
+ E009166,E010100,similar_tax_code,similar_tax_code,HNG00169
100
+ E008736,E010308,same_short_name,same_short_name,HNG00171
101
+ E006591,E007814,same_short_name,same_short_name,HNG00172
102
+ E004301,E009311,same_short_name,same_short_name,HNG00173
103
+ E000679,E000986,same_name_and_industry,same_name_and_industry,HNG00175
104
+ E000502,E004703,same_representative,same_representative,HNG00176
105
+ E002056,E008055,same_name_and_industry,same_name_and_industry,HNG00177
106
+ E003935,E003980,same_representative,same_representative,HNG00178
107
+ E006672,E010899,same_address,same_address,HNG00179
108
+ E008505,E010659,similar_tax_code,similar_tax_code,HNG00180
109
+ E000232,E000365,same_name_and_industry,same_name_and_industry,HNG00182
110
+ E002878,E010202,same_address,same_address,HNG00184
111
+ E000464,E007395,similar_tax_code,similar_tax_code,HNG00185
112
+ E003515,E004709,same_short_name,same_short_name,HNG00186
113
+ E002332,E007203,same_address,same_address,HNG00188
114
+ E000175,E006941,same_representative,same_representative,HNG00189
115
+ E001651,E011133,same_representative,same_representative,HNG00190
116
+ E007747,E007796,same_representative,same_representative,HNG00191
117
+ E000723,E006114,same_address,same_address,HNG00192
118
+ E008272,E009429,same_short_name,same_short_name,HNG00193
119
+ E006928,E007610,same_address,same_address,HNG00197
120
+ E003430,E005435,same_address,same_address,HNG00198
121
+ E005557,E007961,same_address,same_address,HNG00200
122
+ E005747,E007159,same_name_and_industry,same_name_and_industry,HNG00204
123
+ E002600,E008364,same_representative,same_representative,HNG00205
124
+ E005575,E007991,same_address,same_address,HNG00206
125
+ E005566,E010321,same_name_and_industry,same_name_and_industry,HNG00208
126
+ E004006,E010579,same_short_name,same_short_name,HNG00210
127
+ E001779,E010999,similar_tax_code,similar_tax_code,HNG00212
128
+ E003028,E011887,same_name_and_industry,same_name_and_industry,HNG00213
129
+ E006776,E010433,same_name_and_industry,same_name_and_industry,HNG00214
130
+ E002343,E002608,same_representative,same_representative,HNG00215
131
+ E003018,E010207,same_short_name,same_short_name,HNG00216
132
+ E004836,E004884,same_name_and_industry,same_name_and_industry,HNG00218
133
+ E000732,E003060,same_name_and_industry,same_name_and_industry,HNG00219
134
+ E000189,E000584,same_address,same_address,HNG00220
135
+ E000893,E005915,same_name_and_industry,same_name_and_industry,HNG00221
136
+ E008584,E008795,same_name_and_industry,same_name_and_industry,HNG00222
137
+ E005290,E009130,similar_tax_code,similar_tax_code,HNG00225
138
+ E001983,E004144,similar_tax_code,similar_tax_code,HNG00226
139
+ E004412,E009179,same_address,same_address,HNG00227
140
+ E002356,E010972,same_representative,same_representative,HNG00228
141
+ E003817,E004402,similar_tax_code,similar_tax_code,HNG00229
142
+ E001637,E006878,same_address,same_address,HNG00230
143
+ E003126,E011165,similar_tax_code,similar_tax_code,HNG00231
144
+ E010305,E011567,same_name_and_industry,same_name_and_industry,HNG00233
145
+ E001307,E011169,same_representative,same_representative,HNG00234
146
+ E001022,E007134,same_short_name,same_short_name,HNG00235
147
+ E000832,E002839,same_representative,same_representative,HNG00238
148
+ E010039,E010533,same_representative,same_representative,HNG00239
149
+ E002756,E006156,same_name_and_industry,same_name_and_industry,HNG00242
150
+ E005746,E008711,same_address,same_address,HNG00245
151
+ E008470,E009974,same_representative,same_representative,HNG00247
152
+ E000313,E000984,same_address,same_address,HNG00248
153
+ E007782,E010389,same_address,same_address,HNG00249
154
+ E000838,E011795,similar_tax_code,similar_tax_code,HNG00253
155
+ E001268,E007016,same_address,same_address,HNG00255
156
+ E001606,E005856,similar_tax_code,similar_tax_code,HNG00260
157
+ E005841,E011827,same_name_and_industry,same_name_and_industry,HNG00261
158
+ E001736,E009389,same_name_and_industry,same_name_and_industry,HNG00262
159
+ E000973,E002805,same_short_name,same_short_name,HNG00264
160
+ E000953,E004420,same_short_name,same_short_name,HNG00265
161
+ E002403,E011030,similar_tax_code,similar_tax_code,HNG00266
162
+ E005091,E006727,similar_tax_code,similar_tax_code,HNG00267
163
+ E001560,E010614,same_short_name,same_short_name,HNG00273
164
+ E001287,E010847,same_address,same_address,HNG00277
165
+ E007746,E010902,same_address,same_address,HNG00278
166
+ E004671,E004726,same_address,same_address,HNG00282
167
+ E002103,E005190,same_address,same_address,HNG00284
168
+ E005742,E008095,same_name_and_industry,same_name_and_industry,HNG00285
169
+ E004751,E011000,same_short_name,same_short_name,HNG00286
170
+ E003584,E008963,same_name_and_industry,same_name_and_industry,HNG00288
171
+ E000882,E006465,same_address,same_address,HNG00291
172
+ E000601,E010005,same_name_and_industry,same_name_and_industry,HNG00292
173
+ E006875,E009442,same_short_name,same_short_name,HNG00293
174
+ E001556,E005292,similar_tax_code,similar_tax_code,HNG00295
175
+ E010137,E011452,same_address,same_address,HNG00296
176
+ E004407,E011575,same_short_name,same_short_name,HNG00299
177
+ E002377,E008552,same_name_and_industry,same_name_and_industry,HNG00301
178
+ E004394,E011626,same_name_and_industry,same_name_and_industry,HNG00302
179
+ E001472,E011857,same_representative,same_representative,HNG00303
180
+ E000938,E006338,same_short_name,same_short_name,HNG00304
181
+ E009859,E010435,similar_tax_code,similar_tax_code,HNG00305
182
+ E002626,E010665,same_representative,same_representative,HNG00306
183
+ E001460,E005458,same_name_and_industry,same_name_and_industry,HNG00307
184
+ E002220,E002670,same_name_and_industry,same_name_and_industry,HNG00311
185
+ E006072,E010882,same_address,same_address,HNG00312
186
+ E000397,E003423,same_short_name,same_short_name,HNG00314
187
+ E004576,E011594,similar_tax_code,similar_tax_code,HNG00315
188
+ E007067,E008540,same_name_and_industry,same_name_and_industry,HNG00318
189
+ E002272,E006449,same_name_and_industry,same_name_and_industry,HNG00319
190
+ E003352,E003563,same_representative,same_representative,HNG00320
191
+ E000766,E004899,similar_tax_code,similar_tax_code,HNG00321
192
+ E003557,E004444,same_short_name,same_short_name,HNG00323
193
+ E000528,E001218,same_name_and_industry,same_name_and_industry,HNG00324
194
+ E002895,E004989,same_address,same_address,HNG00327
195
+ E001441,E002044,same_representative,same_representative,HNG00331
196
+ E007606,E010526,same_representative,same_representative,HNG00333
197
+ E000058,E006569,same_representative,same_representative,HNG00335
198
+ E004727,E007860,same_representative,same_representative,HNG00336
199
+ E004854,E005343,same_representative,same_representative,HNG00337
200
+ E006355,E007163,same_address,same_address,HNG00339
201
+ E007481,E010744,same_short_name,same_short_name,HNG00340
202
+ E000738,E004570,same_representative,same_representative,HNG00341
203
+ E002028,E007885,same_short_name,same_short_name,HNG00343
204
+ E009768,E010736,same_representative,same_representative,HNG00344
205
+ E002516,E005503,same_name_and_industry,same_name_and_industry,HNG00347
206
+ E003092,E003860,same_address,same_address,HNG00348
207
+ E006923,E009500,same_short_name,same_short_name,HNG00349
208
+ E003602,E006563,similar_tax_code,similar_tax_code,HNG00350
209
+ E000540,E004119,same_name_and_industry,same_name_and_industry,HNG00352
210
+ E002948,E003247,same_representative,same_representative,HNG00357
211
+ E002418,E003667,same_short_name,same_short_name,HNG00358
212
+ E005897,E011233,similar_tax_code,similar_tax_code,HNG00361
213
+ E007243,E011492,similar_tax_code,similar_tax_code,HNG00363
214
+ E000807,E000955,same_name_and_industry,same_name_and_industry,HNG00365
215
+ E005801,E007678,same_address,same_address,HNG00366
216
+ E001111,E002262,same_address,same_address,HNG00367
217
+ E001906,E007529,same_address,same_address,HNG00368
218
+ E001418,E005160,similar_tax_code,similar_tax_code,HNG00370
219
+ E004115,E009366,same_address,same_address,HNG00373
220
+ E003236,E007326,same_address,same_address,HNG00374
221
+ E005611,E007792,same_name_and_industry,same_name_and_industry,HNG00375
222
+ E004266,E009426,same_short_name,same_short_name,HNG00377
223
+ E002515,E008662,same_address,same_address,HNG00378
224
+ E004213,E008882,same_short_name,same_short_name,HNG00380
225
+ E003606,E010848,same_representative,same_representative,HNG00381
226
+ E004413,E006323,same_short_name,same_short_name,HNG00384
227
+ E006838,E009076,similar_tax_code,similar_tax_code,HNG00388
228
+ E009568,E011163,same_name_and_industry,same_name_and_industry,HNG00390
229
+ E008490,E010958,same_name_and_industry,same_name_and_industry,HNG00391
230
+ E006589,E011356,same_short_name,same_short_name,HNG00393
231
+ E004898,E006779,same_name_and_industry,same_name_and_industry,HNG00396
232
+ E001480,E010944,same_representative,same_representative,HNG00400
233
+ E002280,E009345,similar_tax_code,similar_tax_code,HNG00401
234
+ E003491,E009559,similar_tax_code,similar_tax_code,HNG00407
235
+ E006765,E011243,similar_tax_code,similar_tax_code,HNG00409
236
+ E008002,E011056,same_short_name,same_short_name,HNG00411
237
+ E006512,E007139,similar_tax_code,similar_tax_code,HNG00412
238
+ E003142,E003910,same_name_and_industry,same_name_and_industry,HNG00414
239
+ E005953,E008826,same_short_name,same_short_name,HNG00415
240
+ E004433,E009713,similar_tax_code,similar_tax_code,HNG00417
241
+ E003762,E008188,similar_tax_code,similar_tax_code,HNG00419
242
+ E000795,E005030,similar_tax_code,similar_tax_code,HNG00421
243
+ E000958,E005964,similar_tax_code,similar_tax_code,HNG00422
244
+ E000803,E003434,similar_tax_code,similar_tax_code,HNG00424
245
+ E004479,E010097,same_representative,same_representative,HNG00425
246
+ E006558,E007015,same_short_name,same_short_name,HNG00429
247
+ E001649,E011108,same_representative,same_representative,HNG00432
248
+ E004995,E007938,same_representative,same_representative,HNG00434
249
+ E001020,E011719,similar_tax_code,similar_tax_code,HNG00435
250
+ E000614,E002998,similar_tax_code,similar_tax_code,HNG00437
251
+ E003096,E005794,same_short_name,same_short_name,HNG00438
252
+ E005790,E009327,same_name_and_industry,same_name_and_industry,HNG00439
253
+ E002737,E004280,same_representative,same_representative,HNG00440
254
+ E000816,E011034,same_address,same_address,HNG00441
255
+ E005406,E009060,same_representative,same_representative,HNG00443
256
+ E005995,E009419,same_address,same_address,HNG00445
257
+ E007567,E011552,same_address,same_address,HNG00447
258
+ E000442,E002382,same_short_name,same_short_name,HNG00449
259
+ E007253,E009225,same_name_and_industry,same_name_and_industry,HNG00454
260
+ E003976,E004291,same_address,same_address,HNG00456
261
+ E009083,E010060,same_short_name,same_short_name,HNG00460
262
+ E007766,E011313,same_short_name,same_short_name,HNG00462
263
+ E000921,E002030,same_short_name,same_short_name,HNG00463
264
+ E002399,E005191,similar_tax_code,similar_tax_code,HNG00464
265
+ E001740,E004389,same_address,same_address,HNG00465
266
+ E002769,E008061,similar_tax_code,similar_tax_code,HNG00466
267
+ E002954,E006155,same_representative,same_representative,HNG00467
268
+ E007256,E011120,same_representative,same_representative,HNG00468
269
+ E005477,E006771,same_name_and_industry,same_name_and_industry,HNG00469
270
+ E003367,E006362,similar_tax_code,similar_tax_code,HNG00473
271
+ E001031,E003514,same_short_name,same_short_name,HNG00474
272
+ E007368,E008489,same_short_name,same_short_name,HNG00475
273
+ E004452,E007399,same_representative,same_representative,HNG00476
274
+ E004648,E007136,same_short_name,same_short_name,HNG00477
275
+ E002174,E011542,similar_tax_code,similar_tax_code,HNG00478
276
+ E010481,E011517,same_representative,same_representative,HNG00482
277
+ E000276,E003299,similar_tax_code,similar_tax_code,HNG00483
278
+ E005783,E011166,similar_tax_code,similar_tax_code,HNG00484
279
+ E003145,E007165,similar_tax_code,similar_tax_code,HNG00485
280
+ E002450,E002496,same_short_name,same_short_name,HNG00486
281
+ E001293,E011398,same_address,same_address,HNG00487
282
+ E001299,E008709,similar_tax_code,similar_tax_code,HNG00488
283
+ E004121,E008114,same_address,same_address,HNG00490
284
+ E010963,E011662,same_short_name,same_short_name,HNG00492
285
+ E004515,E006037,similar_tax_code,similar_tax_code,HNG00493
286
+ E002540,E008523,similar_tax_code,similar_tax_code,HNG00494
287
+ E007292,E007429,same_address,same_address,HNG00496
288
+ E006731,E011863,same_address,same_address,HNG00498
289
+ E003213,E006233,same_representative,same_representative,HNG00500
290
+ E005970,E007132,same_short_name,same_short_name,HNG00502
291
+ E001344,E006351,same_name_and_industry,same_name_and_industry,HNG00505
292
+ E006052,E011427,same_short_name,same_short_name,HNG00507
293
+ E001083,E005053,same_address,same_address,HNG00508
294
+ E004337,E011204,same_short_name,same_short_name,HNG00509
295
+ E006492,E009543,same_short_name,same_short_name,HNG00510
296
+ E001693,E004875,similar_tax_code,similar_tax_code,HNG00512
297
+ E000421,E005812,same_short_name,same_short_name,HNG00514
298
+ E005864,E007265,same_short_name,same_short_name,HNG00517
299
+ E000761,E009407,same_representative,same_representative,HNG00520
300
+ E000074,E007736,same_address,same_address,HNG00521
301
+ E005112,E005356,similar_tax_code,similar_tax_code,HNG00525
302
+ E001067,E010591,same_name_and_industry,same_name_and_industry,HNG00527
303
+ E000778,E006907,similar_tax_code,similar_tax_code,HNG00528
304
+ E002246,E009052,same_name_and_industry,same_name_and_industry,HNG00529
305
+ E005944,E008426,same_address,same_address,HNG00530
306
+ E004384,E011478,same_short_name,same_short_name,HNG00531
307
+ E008793,E010504,same_address,same_address,HNG00532
308
+ E008440,E008668,same_representative,same_representative,HNG00533
309
+ E004013,E011438,same_address,same_address,HNG00534
310
+ E001961,E009330,same_address,same_address,HNG00538
311
+ E009045,E011300,similar_tax_code,similar_tax_code,HNG00539
312
+ E001852,E003816,same_name_and_industry,same_name_and_industry,HNG00540
313
+ E002843,E005818,same_short_name,same_short_name,HNG00541
314
+ E000252,E003770,same_short_name,same_short_name,HNG00542
315
+ E005422,E006117,same_address,same_address,HNG00544
316
+ E004204,E005120,same_name_and_industry,same_name_and_industry,HNG00546
317
+ E009324,E009501,same_short_name,same_short_name,HNG00547
318
+ E001168,E002502,same_name_and_industry,same_name_and_industry,HNG00548
319
+ E000758,E010417,same_representative,same_representative,HNG00549
320
+ E001660,E003388,same_short_name,same_short_name,HNG00552
321
+ E003011,E004232,similar_tax_code,similar_tax_code,HNG00554
322
+ E007925,E008517,same_representative,same_representative,HNG00555
323
+ E007614,E010752,same_representative,same_representative,HNG00557
324
+ E002691,E003742,same_short_name,same_short_name,HNG00565
325
+ E001641,E005439,similar_tax_code,similar_tax_code,HNG00566
326
+ E000931,E001159,same_name_and_industry,same_name_and_industry,HNG00567
327
+ E004915,E007255,same_name_and_industry,same_name_and_industry,HNG00568
328
+ E006255,E009289,same_short_name,same_short_name,HNG00578
329
+ E001321,E008974,same_representative,same_representative,HNG00579
330
+ E001419,E007384,same_name_and_industry,same_name_and_industry,HNG00580
331
+ E006336,E010867,same_name_and_industry,same_name_and_industry,HNG00581
332
+ E003863,E010801,similar_tax_code,similar_tax_code,HNG00582
333
+ E006650,E007573,same_name_and_industry,same_name_and_industry,HNG00583
334
+ E009845,E010644,same_name_and_industry,same_name_and_industry,HNG00585
335
+ E003231,E007825,same_short_name,same_short_name,HNG00586
336
+ E007459,E010550,same_address,same_address,HNG00590
337
+ E002024,E010869,same_address,same_address,HNG00591
338
+ E001198,E008417,same_name_and_industry,same_name_and_industry,HNG00592
339
+ E008807,E011523,same_name_and_industry,same_name_and_industry,HNG00593
340
+ E002175,E006030,same_representative,same_representative,HNG00594
341
+ E005573,E010317,similar_tax_code,similar_tax_code,HNG00595
342
+ E005338,E005872,same_representative,same_representative,HNG00597
343
+ E004894,E005979,same_representative,same_representative,HNG00598
344
+ E001816,E007426,similar_tax_code,similar_tax_code,HNG00599
345
+ E000224,E005069,similar_tax_code,similar_tax_code,HNG00602
346
+ E000674,E003266,same_address,same_address,HNG00603
347
+ E009336,E010223,similar_tax_code,similar_tax_code,HNG00605
348
+ E005204,E007290,similar_tax_code,similar_tax_code,HNG00610
349
+ E005107,E005737,same_short_name,same_short_name,HNG00611
350
+ E000812,E005710,same_short_name,same_short_name,HNG00612
351
+ E000203,E006214,same_name_and_industry,same_name_and_industry,HNG00616
352
+ E010131,E011004,same_name_and_industry,same_name_and_industry,HNG00618
353
+ E001000,E010833,same_representative,same_representative,HNG00619
354
+ E000516,E002475,similar_tax_code,similar_tax_code,HNG00620
355
+ E005188,E007101,same_short_name,same_short_name,HNG00621
356
+ E003041,E008430,same_address,same_address,HNG00622
357
+ E000600,E007512,same_short_name,same_short_name,HNG00624
358
+ E003529,E004214,same_representative,same_representative,HNG00625
359
+ E001199,E010988,same_short_name,same_short_name,HNG00626
360
+ E000419,E006317,similar_tax_code,similar_tax_code,HNG00627
361
+ E009530,E011480,same_representative,same_representative,HNG00630
362
+ E008989,E010924,same_name_and_industry,same_name_and_industry,HNG00631
363
+ E001866,E010419,same_name_and_industry,same_name_and_industry,HNG00632
364
+ E006293,E009679,same_address,same_address,HNG00634
365
+ E004171,E004830,same_name_and_industry,same_name_and_industry,HNG00635
366
+ E000205,E005133,same_address,same_address,HNG00636
367
+ E004211,E008569,similar_tax_code,similar_tax_code,HNG00637
368
+ E004302,E006627,similar_tax_code,similar_tax_code,HNG00639
369
+ E002273,E004760,similar_tax_code,similar_tax_code,HNG00640
370
+ E003979,E007063,same_name_and_industry,same_name_and_industry,HNG00643
371
+ E009697,E010052,same_name_and_industry,same_name_and_industry,HNG00644
372
+ E001458,E010690,same_short_name,same_short_name,HNG00645
373
+ E007518,E008158,same_short_name,same_short_name,HNG00646
374
+ E000970,E010632,same_short_name,same_short_name,HNG00648
375
+ E010415,E010428,same_address,same_address,HNG00649
376
+ E006984,E007970,same_address,same_address,HNG00651
377
+ E006919,E011694,same_representative,same_representative,HNG00653
378
+ E001252,E010430,same_name_and_industry,same_name_and_industry,HNG00654
379
+ E009603,E011160,same_address,same_address,HNG00655
380
+ E001817,E002075,similar_tax_code,similar_tax_code,HNG00657
381
+ E003302,E005784,same_address,same_address,HNG00658
382
+ E000436,E011322,same_representative,same_representative,HNG00660
383
+ E006555,E010059,same_address,same_address,HNG00661
384
+ E006965,E011369,same_short_name,same_short_name,HNG00662
385
+ E010775,E011843,same_name_and_industry,same_name_and_industry,HNG00665
386
+ E003569,E006948,same_name_and_industry,same_name_and_industry,HNG00666
387
+ E002813,E008052,similar_tax_code,similar_tax_code,HNG00668
388
+ E000653,E002319,same_short_name,same_short_name,HNG00674
389
+ E004027,E005954,similar_tax_code,similar_tax_code,HNG00675
390
+ E008509,E011467,similar_tax_code,similar_tax_code,HNG00678
391
+ E006825,E009308,same_representative,same_representative,HNG00679
392
+ E002429,E010436,same_name_and_industry,same_name_and_industry,HNG00681
393
+ E001439,E004145,same_address,same_address,HNG00682
394
+ E008750,E010753,same_representative,same_representative,HNG00684
395
+ E003309,E009507,same_address,same_address,HNG00685
396
+ E008605,E011605,same_representative,same_representative,HNG00687
397
+ E004113,E011303,same_short_name,same_short_name,HNG00688
398
+ E009740,E011242,same_address,same_address,HNG00689
399
+ E007836,E008571,same_address,same_address,HNG00692
400
+ E003957,E011279,same_name_and_industry,same_name_and_industry,HNG00693
401
+ E000089,E001204,same_representative,same_representative,HNG00696
402
+ E006002,E011199,same_address,same_address,HNG00697
403
+ E000387,E005878,same_representative,same_representative,HNG00700
404
+ E010198,E011639,similar_tax_code,similar_tax_code,HNG00701
405
+ E001887,E008933,same_short_name,same_short_name,HNG00704
406
+ E000946,E006411,same_name_and_industry,same_name_and_industry,HNG00705
407
+ E000941,E006615,same_address,same_address,HNG00708
408
+ E001001,E004409,same_address,same_address,HNG00710
409
+ E003978,E005962,same_short_name,same_short_name,HNG00711
410
+ E005715,E005792,same_representative,same_representative,HNG00712
411
+ E001978,E005975,similar_tax_code,similar_tax_code,HNG00713
412
+ E001763,E003148,same_short_name,same_short_name,HNG00714
413
+ E001464,E005463,same_name_and_industry,same_name_and_industry,HNG00715
414
+ E005965,E008329,same_short_name,same_short_name,HNG00716
415
+ E005834,E007498,same_address,same_address,HNG00718
416
+ E001445,E005520,similar_tax_code,similar_tax_code,HNG00721
417
+ E005576,E006490,similar_tax_code,similar_tax_code,HNG00722
418
+ E003412,E011505,same_address,same_address,HNG00723
419
+ E003211,E006340,similar_tax_code,similar_tax_code,HNG00727
420
+ E001985,E005220,same_address,same_address,HNG00728
421
+ E001165,E003993,same_address,same_address,HNG00731
422
+ E007144,E009643,similar_tax_code,similar_tax_code,HNG00732
423
+ E005452,E005525,same_name_and_industry,same_name_and_industry,HNG00734
424
+ E004000,E004631,same_address,same_address,HNG00735
425
+ E011471,E011999,same_name_and_industry,same_name_and_industry,HNG00738
426
+ E009678,E011811,similar_tax_code,similar_tax_code,HNG00740
427
+ E000815,E005345,same_address,same_address,HNG00742
428
+ E006318,E009386,same_name_and_industry,same_name_and_industry,HNG00743
429
+ E001973,E007607,similar_tax_code,similar_tax_code,HNG00744
430
+ E003919,E010250,same_address,same_address,HNG00747
431
+ E001411,E004931,same_representative,same_representative,HNG00748
432
+ E002566,E006330,same_address,same_address,HNG00750
433
+ E002066,E008219,same_representative,same_representative,HNG00753
434
+ E003947,E010124,same_short_name,same_short_name,HNG00754
435
+ E001805,E010749,same_name_and_industry,same_name_and_industry,HNG00755
436
+ E003448,E003764,similar_tax_code,similar_tax_code,HNG00756
437
+ E006068,E011254,same_representative,same_representative,HNG00757
438
+ E000305,E006400,same_short_name,same_short_name,HNG00758
439
+ E004538,E005203,similar_tax_code,similar_tax_code,HNG00760
440
+ E004597,E006732,same_address,same_address,HNG00763
441
+ E003306,E008733,same_name_and_industry,same_name_and_industry,HNG00764
442
+ E003191,E003206,same_address,same_address,HNG00767
443
+ E002407,E004923,same_address,same_address,HNG00769
444
+ E002074,E010084,similar_tax_code,similar_tax_code,HNG00770
445
+ E007155,E011180,same_name_and_industry,same_name_and_industry,HNG00773
446
+ E001711,E011191,same_representative,same_representative,HNG00774
447
+ E003572,E007597,same_address,same_address,HNG00775
448
+ E004517,E004657,similar_tax_code,similar_tax_code,HNG00776
449
+ E000360,E005005,same_name_and_industry,same_name_and_industry,HNG00778
450
+ E002256,E009143,similar_tax_code,similar_tax_code,HNG00779
451
+ E002753,E011875,same_address,same_address,HNG00780
452
+ E009854,E011149,same_address,same_address,HNG00782
453
+ E006978,E007807,similar_tax_code,similar_tax_code,HNG00783
454
+ E008007,E011808,similar_tax_code,similar_tax_code,HNG00784
455
+ E004866,E006441,similar_tax_code,similar_tax_code,HNG00785
456
+ E007865,E009214,same_representative,same_representative,HNG00787
457
+ E000692,E009479,same_representative,same_representative,HNG00788
458
+ E000214,E011101,similar_tax_code,similar_tax_code,HNG00789
459
+ E004587,E005835,same_short_name,same_short_name,HNG00790
460
+ E001082,E002436,same_representative,same_representative,HNG00792
461
+ E001057,E010194,similar_tax_code,similar_tax_code,HNG00793
462
+ E005988,E008794,same_name_and_industry,same_name_and_industry,HNG00795
463
+ E006628,E010012,similar_tax_code,similar_tax_code,HNG00796
464
+ E007296,E007683,same_address,same_address,HNG00797
465
+ E001060,E002944,same_representative,same_representative,HNG00798
466
+ E009105,E009721,same_representative,same_representative,HNG00799
467
+ E000719,E005215,same_address,same_address,HNG00801
468
+ E007934,E010091,similar_tax_code,similar_tax_code,HNG00802
469
+ E005764,E010620,similar_tax_code,similar_tax_code,HNG00803
470
+ E004485,E006146,same_name_and_industry,same_name_and_industry,HNG00805
471
+ E001743,E009985,same_name_and_industry,same_name_and_industry,HNG00807
472
+ E000918,E008670,same_address,same_address,HNG00809
473
+ E004684,E008577,same_name_and_industry,same_name_and_industry,HNG00810
474
+ E006091,E007626,similar_tax_code,similar_tax_code,HNG00811
475
+ E008756,E010332,same_name_and_industry,same_name_and_industry,HNG00812
476
+ E006226,E011072,similar_tax_code,similar_tax_code,HNG00814
477
+ E001584,E001724,same_representative,same_representative,HNG00815
478
+ E003676,E010768,same_name_and_industry,same_name_and_industry,HNG00817
479
+ E001781,E004312,same_name_and_industry,same_name_and_industry,HNG00818
480
+ E001459,E003654,similar_tax_code,similar_tax_code,HNG00819
481
+ E010169,E010277,similar_tax_code,similar_tax_code,HNG00820
482
+ E005339,E010306,same_representative,same_representative,HNG00821
483
+ E001189,E010158,similar_tax_code,similar_tax_code,HNG00823
484
+ E005003,E011658,similar_tax_code,similar_tax_code,HNG00826
485
+ E001825,E006076,similar_tax_code,similar_tax_code,HNG00829
486
+ E000420,E010919,similar_tax_code,similar_tax_code,HNG00830
487
+ E008855,E010199,same_address,same_address,HNG00831
488
+ E000878,E002448,same_short_name,same_short_name,HNG00832
489
+ E000944,E005544,same_name_and_industry,same_name_and_industry,HNG00834
490
+ E001008,E009020,same_name_and_industry,same_name_and_industry,HNG00836
491
+ E006977,E008292,same_representative,same_representative,HNG00838
492
+ E002415,E004100,similar_tax_code,similar_tax_code,HNG00839
493
+ E000318,E001128,same_address,same_address,HNG00842
494
+ E007926,E011824,same_address,same_address,HNG00843
495
+ E007107,E011118,same_address,same_address,HNG00844
496
+ E006577,E010675,same_representative,same_representative,HNG00846
497
+ E001934,E008494,same_representative,same_representative,HNG00847
498
+ E000022,E002361,same_name_and_industry,same_name_and_industry,HNG00855
499
+ E001590,E011396,same_short_name,same_short_name,HNG00856
500
+ E007311,E008806,same_short_name,same_short_name,HNG00857
501
+ E008133,E011096,same_representative,same_representative,HNG00858
502
+ E000899,E002821,same_short_name,same_short_name,HNG00859
503
+ E002088,E011100,same_representative,same_representative,HNG00860
504
+ E004182,E004796,same_address,same_address,HNG00864
505
+ E001047,E004946,same_representative,same_representative,HNG00872
506
+ E001420,E005378,same_name_and_industry,same_name_and_industry,HNG00873
507
+ E002185,E004853,same_name_and_industry,same_name_and_industry,HNG00877
508
+ E002511,E009392,same_representative,same_representative,HNG00881
509
+ E007895,E009839,same_representative,same_representative,HNG00884
510
+ E005311,E007897,same_short_name,same_short_name,HNG00886
511
+ E000847,E001028,same_address,same_address,HNG00887
512
+ E001193,E006075,same_short_name,same_short_name,HNG00888
513
+ E006321,E007414,same_representative,same_representative,HNG00889
514
+ E002476,E010630,similar_tax_code,similar_tax_code,HNG00894
515
+ E001564,E010083,same_representative,same_representative,HNG00895
516
+ E000714,E009146,same_name_and_industry,same_name_and_industry,HNG00898
517
+ E000780,E004777,same_name_and_industry,same_name_and_industry,HNG00899
518
+ E007234,E010538,same_address,same_address,HNG00902
519
+ E005234,E007374,similar_tax_code,similar_tax_code,HNG00905
520
+ E005001,E006916,same_name_and_industry,same_name_and_industry,HNG00906
521
+ E002553,E009770,same_representative,same_representative,HNG00908
522
+ E003025,E005165,same_short_name,same_short_name,HNG00909
523
+ E001470,E010741,same_representative,same_representative,HNG00910
524
+ E001845,E009480,same_name_and_industry,same_name_and_industry,HNG00912
525
+ E003845,E004308,same_address,same_address,HNG00913
526
+ E003700,E009547,same_address,same_address,HNG00914
527
+ E000902,E004672,same_name_and_industry,same_name_and_industry,HNG00915
528
+ E007278,E008349,same_address,same_address,HNG00917
529
+ E000909,E008102,similar_tax_code,similar_tax_code,HNG00918
530
+ E000418,E000775,same_address,same_address,HNG00919
531
+ E000345,E001375,same_representative,same_representative,HNG00920
532
+ E005607,E011203,same_short_name,same_short_name,HNG00922
533
+ E001210,E005778,same_short_name,same_short_name,HNG00923
534
+ E003686,E007279,same_address,same_address,HNG00925
535
+ E004138,E011442,same_representative,same_representative,HNG00926
536
+ E004493,E007338,same_short_name,same_short_name,HNG00927
537
+ E004511,E007175,same_short_name,same_short_name,HNG00928
538
+ E001134,E001413,same_short_name,same_short_name,HNG00931
539
+ E002892,E009110,same_representative,same_representative,HNG00932
540
+ E000501,E008238,same_short_name,same_short_name,HNG00933
541
+ E003241,E011301,same_name_and_industry,same_name_and_industry,HNG00935
542
+ E003289,E005581,similar_tax_code,similar_tax_code,HNG00937
543
+ E002164,E006283,similar_tax_code,similar_tax_code,HNG00938
544
+ E001058,E005226,same_address,same_address,HNG00939
545
+ E001838,E003189,same_short_name,same_short_name,HNG00940
546
+ E005495,E011858,same_name_and_industry,same_name_and_industry,HNG00941
547
+ E007944,E008120,same_short_name,same_short_name,HNG00942
548
+ E004896,E011871,same_representative,same_representative,HNG00943
549
+ E010295,E010747,same_representative,same_representative,HNG00944
550
+ E010017,E011532,same_representative,same_representative,HNG00946
551
+ E000381,E002248,same_representative,same_representative,HNG00949
552
+ E003091,E008047,same_representative,same_representative,HNG00951
553
+ E003287,E007532,same_name_and_industry,same_name_and_industry,HNG00952
554
+ E000630,E008536,same_name_and_industry,same_name_and_industry,HNG00953
555
+ E001051,E006121,same_short_name,same_short_name,HNG00955
556
+ E002180,E009746,same_short_name,same_short_name,HNG00956
557
+ E000011,E005697,same_representative,same_representative,HNG00958
558
+ E006694,E010971,same_short_name,same_short_name,HNG00962
559
+ E004852,E007954,same_name_and_industry,same_name_and_industry,HNG00963
560
+ E001322,E005136,same_representative,same_representative,HNG00964
561
+ E001509,E006798,same_address,same_address,HNG00965
562
+ E004787,E004865,same_address,same_address,HNG00967
563
+ E003467,E003640,same_address,same_address,HNG00968
564
+ E007965,E011319,same_name_and_industry,same_name_and_industry,HNG00969
565
+ E003167,E003516,same_name_and_industry,same_name_and_industry,HNG00971
566
+ E001613,E005408,same_address,same_address,HNG00973
567
+ E003954,E010103,same_short_name,same_short_name,HNG00976
568
+ E003637,E009736,similar_tax_code,similar_tax_code,HNG00977
569
+ E000783,E003518,similar_tax_code,similar_tax_code,HNG00978
570
+ E002001,E009380,similar_tax_code,similar_tax_code,HNG00979
571
+ E001102,E001525,same_name_and_industry,same_name_and_industry,HNG00980
572
+ E003810,E005043,same_address,same_address,HNG00981
573
+ E003894,E005379,same_short_name,same_short_name,HNG00983
574
+ E002541,E005119,same_name_and_industry,same_name_and_industry,HNG00984
575
+ E009120,E009398,same_name_and_industry,same_name_and_industry,HNG00986
576
+ E001474,E007657,same_representative,same_representative,HNG00988
577
+ E001895,E008817,same_address,same_address,HNG00990
578
+ E003431,E008077,similar_tax_code,similar_tax_code,HNG00992
579
+ E003386,E010243,same_name_and_industry,same_name_and_industry,HNG00993
580
+ E009281,E009883,same_name_and_industry,same_name_and_industry,HNG00995
581
+ E007886,E009772,same_address,same_address,HNG00996
582
+ E003351,E010714,same_representative,same_representative,HNG00999
583
+ E001760,E004880,same_representative,same_representative,HNG01000
584
+ E006342,E009006,same_short_name,same_short_name,HNG01001
585
+ E002282,E009506,same_short_name,same_short_name,HNG01002
586
+ E002022,E005056,same_representative,same_representative,HNG01005
587
+ E010873,E011807,same_representative,same_representative,HNG01006
588
+ E003284,E010235,same_address,same_address,HNG01009
589
+ E005295,E006316,same_address,same_address,HNG01010
590
+ E002567,E005685,same_address,same_address,HNG01013
591
+ E004983,E010795,same_short_name,same_short_name,HNG01014
592
+ E003297,E004833,same_representative,same_representative,HNG01015
593
+ E005313,E006684,similar_tax_code,similar_tax_code,HNG01016
594
+ E004255,E006580,similar_tax_code,similar_tax_code,HNG01019
595
+ E003648,E008614,same_short_name,same_short_name,HNG01020
596
+ E000638,E005780,same_short_name,same_short_name,HNG01021
597
+ E001497,E008988,similar_tax_code,similar_tax_code,HNG01022
598
+ E009856,E011787,similar_tax_code,similar_tax_code,HNG01023
599
+ E006741,E010210,same_name_and_industry,same_name_and_industry,HNG01024
600
+ E005143,E005811,same_name_and_industry,same_name_and_industry,HNG01027
601
+ E004743,E011217,same_name_and_industry,same_name_and_industry,HNG01028
602
+ E011456,E011783,same_address,same_address,HNG01030
603
+ E003708,E009408,similar_tax_code,similar_tax_code,HNG01031
604
+ E003325,E006815,similar_tax_code,similar_tax_code,HNG01032
605
+ E001666,E001971,same_name_and_industry,same_name_and_industry,HNG01033
606
+ E009010,E010027,same_name_and_industry,same_name_and_industry,HNG01034
607
+ E002275,E004669,same_short_name,same_short_name,HNG01037
608
+ E007213,E009712,same_address,same_address,HNG01038
609
+ E000367,E007121,similar_tax_code,similar_tax_code,HNG01039
610
+ E002903,E010070,similar_tax_code,similar_tax_code,HNG01041
611
+ E009743,E011333,same_short_name,same_short_name,HNG01042
612
+ E001477,E006559,same_address,same_address,HNG01043
613
+ E001261,E004155,similar_tax_code,similar_tax_code,HNG01044
614
+ E005798,E010184,same_address,same_address,HNG01045
615
+ E004185,E005800,same_name_and_industry,same_name_and_industry,HNG01047
616
+ E000197,E004448,same_representative,same_representative,HNG01049
617
+ E003994,E005199,same_name_and_industry,same_name_and_industry,HNG01052
618
+ E008366,E008689,same_address,same_address,HNG01055
619
+ E001318,E011774,same_name_and_industry,same_name_and_industry,HNG01056
620
+ E007783,E011882,same_address,same_address,HNG01057
621
+ E011137,E011481,same_representative,same_representative,HNG01060
622
+ E008506,E010519,similar_tax_code,similar_tax_code,HNG01064
623
+ E007003,E009493,same_address,same_address,HNG01066
624
+ E009925,E011260,same_representative,same_representative,HNG01067
625
+ E003464,E008059,similar_tax_code,similar_tax_code,HNG01068
626
+ E007739,E010168,same_address,same_address,HNG01072
627
+ E004383,E007878,same_address,same_address,HNG01073
628
+ E000817,E005259,same_representative,same_representative,HNG01074
629
+ E000079,E001891,same_representative,same_representative,HNG01075
630
+ E001879,E009343,same_address,same_address,HNG01079
631
+ E004284,E009577,similar_tax_code,similar_tax_code,HNG01081
632
+ E008448,E010594,same_address,same_address,HNG01082
633
+ E000744,E008802,same_short_name,same_short_name,HNG01084
634
+ E001502,E008477,same_short_name,same_short_name,HNG01085
635
+ E005787,E007741,similar_tax_code,similar_tax_code,HNG01086
636
+ E004737,E005817,same_representative,same_representative,HNG01087
637
+ E000904,E010705,same_name_and_industry,same_name_and_industry,HNG01089
638
+ E004224,E006102,same_name_and_industry,same_name_and_industry,HNG01090
639
+ E003308,E010138,same_address,same_address,HNG01091
640
+ E000200,E011696,same_short_name,same_short_name,HNG01092
641
+ E001520,E003102,same_representative,same_representative,HNG01094
642
+ E003337,E009439,same_name_and_industry,same_name_and_industry,HNG01095
643
+ E003555,E006273,same_address,same_address,HNG01097
644
+ E004643,E008306,same_short_name,same_short_name,HNG01098
645
+ E001488,E006621,same_representative,same_representative,HNG01100
646
+ E002016,E011988,same_representative,same_representative,HNG01101
647
+ E007006,E011741,same_representative,same_representative,HNG01102
648
+ E001943,E002334,similar_tax_code,similar_tax_code,HNG01105
649
+ E006695,E011997,same_short_name,same_short_name,HNG01106
650
+ E002278,E009029,same_name_and_industry,same_name_and_industry,HNG01108
651
+ E004592,E008234,same_name_and_industry,same_name_and_industry,HNG01110
652
+ E000055,E005456,same_address,same_address,HNG01112
653
+ E001141,E011649,same_representative,same_representative,HNG01114
654
+ E002259,E011209,same_address,same_address,HNG01115
655
+ E002551,E010669,same_name_and_industry,same_name_and_industry,HNG01116
656
+ E002912,E007353,similar_tax_code,similar_tax_code,HNG01117
657
+ E002967,E009003,same_short_name,same_short_name,HNG01118
658
+ E001427,E003068,similar_tax_code,similar_tax_code,HNG01119
659
+ E003066,E011851,same_address,same_address,HNG01123
660
+ E005937,E009818,same_name_and_industry,same_name_and_industry,HNG01127
661
+ E007605,E011867,similar_tax_code,similar_tax_code,HNG01129
662
+ E004488,E005218,similar_tax_code,similar_tax_code,HNG01131
663
+ E003125,E009748,same_short_name,same_short_name,HNG01133
664
+ E006766,E011404,same_address,same_address,HNG01134
665
+ E008719,E009688,same_address,same_address,HNG01135
666
+ E004842,E011640,same_short_name,same_short_name,HNG01137
667
+ E006227,E010125,same_address,same_address,HNG01138
668
+ E002446,E007669,same_representative,same_representative,HNG01140
669
+ E010978,E011470,same_representative,same_representative,HNG01141
670
+ E003798,E011154,similar_tax_code,similar_tax_code,HNG01143
671
+ E005287,E005916,same_representative,same_representative,HNG01144
672
+ E005885,E008381,same_address,same_address,HNG01145
673
+ E000056,E006041,same_representative,same_representative,HNG01147
674
+ E007681,E010523,same_short_name,same_short_name,HNG01149
675
+ E006115,E010248,similar_tax_code,similar_tax_code,HNG01150
676
+ E005141,E007907,same_address,same_address,HNG01153
677
+ E003048,E003446,same_representative,same_representative,HNG01154
678
+ E000887,E002243,same_representative,same_representative,HNG01157
679
+ E008669,E009555,same_name_and_industry,same_name_and_industry,HNG01158
680
+ E001776,E009162,same_short_name,same_short_name,HNG01161
681
+ E008600,E010964,same_name_and_industry,same_name_and_industry,HNG01162
682
+ E006507,E009516,same_address,same_address,HNG01163
683
+ E001206,E008969,same_short_name,same_short_name,HNG01164
684
+ E001626,E010443,same_address,same_address,HNG01165
685
+ E003039,E005719,same_name_and_industry,same_name_and_industry,HNG01167
686
+ E007337,E007952,similar_tax_code,similar_tax_code,HNG01170
687
+ E003216,E007407,similar_tax_code,similar_tax_code,HNG01171
688
+ E000223,E003168,same_short_name,same_short_name,HNG01172
689
+ E002025,E003568,same_short_name,same_short_name,HNG01175
690
+ E000354,E005880,same_name_and_industry,same_name_and_industry,HNG01177
691
+ E001989,E008244,same_representative,same_representative,HNG01178
692
+ E004239,E009850,same_short_name,same_short_name,HNG01179
693
+ E000635,E001683,same_short_name,same_short_name,HNG01180
694
+ E000239,E002328,same_name_and_industry,same_name_and_industry,HNG01181
695
+ E003475,E004265,similar_tax_code,similar_tax_code,HNG01184
696
+ E009092,E009249,same_representative,same_representative,HNG01185
697
+ E003419,E006438,same_address,same_address,HNG01186
698
+ E002130,E009303,same_name_and_industry,same_name_and_industry,HNG01188
699
+ E007732,E010132,same_short_name,same_short_name,HNG01189
700
+ E002265,E006836,same_name_and_industry,same_name_and_industry,HNG01190
701
+ E009791,E011977,same_name_and_industry,same_name_and_industry,HNG01191
702
+ E002762,E004201,same_name_and_industry,same_name_and_industry,HNG01193
703
+ E000163,E005293,same_short_name,same_short_name,HNG01195
704
+ E010839,E011921,same_representative,same_representative,HNG01197
705
+ E002258,E003258,same_short_name,same_short_name,HNG01199
706
+ E000580,E000664,same_short_name,same_short_name,HNG01200
hub/hard_negative_relationships/validation.csv ADDED
@@ -0,0 +1,253 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ entity_id_l,entity_id_r,hard_negative_reason,shared_or_similar_value_type,hard_negative_group_id
2
+ E001942,E004753,same_short_name,same_short_name,HNG00002
3
+ E003256,E004832,similar_tax_code,similar_tax_code,HNG00005
4
+ E002308,E003862,same_name_and_industry,same_name_and_industry,HNG00007
5
+ E003428,E011175,same_address,same_address,HNG00019
6
+ E001337,E004492,same_address,same_address,HNG00025
7
+ E006028,E010780,same_short_name,same_short_name,HNG00028
8
+ E005849,E007613,same_address,same_address,HNG00032
9
+ E000507,E007008,same_representative,same_representative,HNG00033
10
+ E003040,E003975,same_address,same_address,HNG00040
11
+ E001924,E011093,same_representative,same_representative,HNG00041
12
+ E003852,E005246,similar_tax_code,similar_tax_code,HNG00042
13
+ E000708,E002841,same_address,same_address,HNG00043
14
+ E003801,E004540,same_short_name,same_short_name,HNG00044
15
+ E006308,E006835,same_name_and_industry,same_name_and_industry,HNG00048
16
+ E004167,E005175,similar_tax_code,similar_tax_code,HNG00051
17
+ E007992,E008591,same_address,same_address,HNG00058
18
+ E000455,E009737,same_name_and_industry,same_name_and_industry,HNG00059
19
+ E000987,E008116,same_address,same_address,HNG00064
20
+ E007545,E008980,similar_tax_code,similar_tax_code,HNG00065
21
+ E000975,E004769,same_representative,same_representative,HNG00076
22
+ E002336,E009674,same_representative,same_representative,HNG00078
23
+ E002997,E005517,similar_tax_code,similar_tax_code,HNG00084
24
+ E004257,E010578,same_representative,same_representative,HNG00086
25
+ E003186,E011115,same_name_and_industry,same_name_and_industry,HNG00088
26
+ E000132,E002385,same_name_and_industry,same_name_and_industry,HNG00091
27
+ E004851,E009406,same_address,same_address,HNG00097
28
+ E001892,E010707,same_name_and_industry,same_name_and_industry,HNG00098
29
+ E002083,E007285,similar_tax_code,similar_tax_code,HNG00102
30
+ E001463,E009969,same_name_and_industry,same_name_and_industry,HNG00109
31
+ E008592,E008760,same_short_name,same_short_name,HNG00110
32
+ E000372,E006433,same_short_name,same_short_name,HNG00116
33
+ E006772,E008856,same_address,same_address,HNG00122
34
+ E008799,E008998,same_name_and_industry,same_name_and_industry,HNG00135
35
+ E001986,E008639,same_short_name,same_short_name,HNG00141
36
+ E005423,E009149,same_name_and_industry,same_name_and_industry,HNG00159
37
+ E006009,E007642,same_address,same_address,HNG00160
38
+ E002052,E003618,same_name_and_industry,same_name_and_industry,HNG00170
39
+ E007230,E008522,same_name_and_industry,same_name_and_industry,HNG00174
40
+ E007099,E007996,same_address,same_address,HNG00187
41
+ E005304,E008039,same_short_name,same_short_name,HNG00196
42
+ E005577,E011664,same_address,same_address,HNG00209
43
+ E008346,E009541,same_name_and_industry,same_name_and_industry,HNG00211
44
+ E000974,E010923,same_representative,same_representative,HNG00217
45
+ E001164,E003717,same_short_name,same_short_name,HNG00223
46
+ E003162,E007560,same_address,same_address,HNG00237
47
+ E008875,E010710,same_representative,same_representative,HNG00246
48
+ E006646,E009623,same_address,same_address,HNG00251
49
+ E000225,E005170,same_address,same_address,HNG00252
50
+ E000810,E002247,same_representative,same_representative,HNG00254
51
+ E006242,E011813,similar_tax_code,similar_tax_code,HNG00258
52
+ E005507,E006229,similar_tax_code,similar_tax_code,HNG00259
53
+ E002039,E005478,same_representative,same_representative,HNG00263
54
+ E001377,E008321,same_representative,same_representative,HNG00271
55
+ E004578,E010989,same_representative,same_representative,HNG00274
56
+ E002363,E008915,same_short_name,same_short_name,HNG00275
57
+ E002611,E003873,same_representative,same_representative,HNG00276
58
+ E009068,E011497,same_address,same_address,HNG00279
59
+ E010850,E011102,same_short_name,same_short_name,HNG00283
60
+ E006202,E008777,same_representative,same_representative,HNG00287
61
+ E001317,E003900,same_name_and_industry,same_name_and_industry,HNG00290
62
+ E002520,E010348,same_name_and_industry,same_name_and_industry,HNG00310
63
+ E001538,E009087,same_name_and_industry,same_name_and_industry,HNG00313
64
+ E000043,E001048,same_short_name,same_short_name,HNG00316
65
+ E007244,E008775,same_address,same_address,HNG00322
66
+ E002425,E011435,same_short_name,same_short_name,HNG00328
67
+ E000933,E009221,same_name_and_industry,same_name_and_industry,HNG00329
68
+ E006568,E010034,similar_tax_code,similar_tax_code,HNG00334
69
+ E008607,E011194,same_name_and_industry,same_name_and_industry,HNG00338
70
+ E006185,E010506,same_representative,same_representative,HNG00342
71
+ E000977,E002916,same_name_and_industry,same_name_and_industry,HNG00345
72
+ E001920,E008657,same_name_and_industry,same_name_and_industry,HNG00346
73
+ E000241,E010189,same_short_name,same_short_name,HNG00351
74
+ E004883,E005592,same_name_and_industry,same_name_and_industry,HNG00354
75
+ E002222,E004070,same_name_and_industry,same_name_and_industry,HNG00355
76
+ E002849,E004677,same_name_and_industry,same_name_and_industry,HNG00356
77
+ E002395,E003161,same_representative,same_representative,HNG00359
78
+ E007001,E007997,same_representative,same_representative,HNG00362
79
+ E001896,E010257,same_short_name,same_short_name,HNG00364
80
+ E001434,E011459,same_address,same_address,HNG00369
81
+ E002636,E010771,same_address,same_address,HNG00371
82
+ E003718,E008886,same_name_and_industry,same_name_and_industry,HNG00376
83
+ E000188,E001056,similar_tax_code,similar_tax_code,HNG00379
84
+ E007293,E010455,same_short_name,same_short_name,HNG00382
85
+ E003971,E005748,same_address,same_address,HNG00383
86
+ E004050,E006179,same_address,same_address,HNG00385
87
+ E007302,E011248,same_name_and_industry,same_name_and_industry,HNG00387
88
+ E004535,E004693,same_representative,same_representative,HNG00389
89
+ E000025,E008327,same_address,same_address,HNG00392
90
+ E005095,E011687,same_name_and_industry,same_name_and_industry,HNG00395
91
+ E001435,E009567,same_address,same_address,HNG00397
92
+ E003151,E003666,same_name_and_industry,same_name_and_industry,HNG00402
93
+ E002793,E004738,same_short_name,same_short_name,HNG00405
94
+ E006445,E008254,similar_tax_code,similar_tax_code,HNG00413
95
+ E000176,E010607,same_short_name,same_short_name,HNG00416
96
+ E000523,E005498,same_name_and_industry,same_name_and_industry,HNG00418
97
+ E006027,E008046,same_name_and_industry,same_name_and_industry,HNG00426
98
+ E007082,E011437,same_short_name,same_short_name,HNG00431
99
+ E003841,E008445,same_short_name,same_short_name,HNG00433
100
+ E006805,E007691,same_short_name,same_short_name,HNG00446
101
+ E006851,E010524,same_short_name,same_short_name,HNG00448
102
+ E008542,E010572,same_address,same_address,HNG00450
103
+ E001960,E009700,same_address,same_address,HNG00451
104
+ E000846,E001697,same_short_name,same_short_name,HNG00455
105
+ E002877,E009917,same_short_name,same_short_name,HNG00457
106
+ E003890,E007727,similar_tax_code,similar_tax_code,HNG00459
107
+ E002610,E005743,same_short_name,same_short_name,HNG00470
108
+ E004102,E010637,same_short_name,same_short_name,HNG00481
109
+ E000013,E000662,same_address,same_address,HNG00489
110
+ E000401,E009206,similar_tax_code,similar_tax_code,HNG00491
111
+ E003245,E010215,similar_tax_code,similar_tax_code,HNG00495
112
+ E007464,E008013,same_name_and_industry,same_name_and_industry,HNG00503
113
+ E001530,E010845,same_short_name,same_short_name,HNG00504
114
+ E008714,E009260,similar_tax_code,similar_tax_code,HNG00511
115
+ E001992,E008846,same_address,same_address,HNG00515
116
+ E002580,E007156,same_representative,same_representative,HNG00516
117
+ E009918,E010350,same_name_and_industry,same_name_and_industry,HNG00518
118
+ E001588,E002426,similar_tax_code,similar_tax_code,HNG00519
119
+ E001833,E002373,similar_tax_code,similar_tax_code,HNG00524
120
+ E000050,E000677,same_name_and_industry,same_name_and_industry,HNG00526
121
+ E001991,E006314,same_address,same_address,HNG00535
122
+ E001253,E008603,same_representative,same_representative,HNG00537
123
+ E004417,E010076,same_address,same_address,HNG00553
124
+ E000375,E006704,same_name_and_industry,same_name_and_industry,HNG00558
125
+ E009989,E011258,same_address,same_address,HNG00559
126
+ E001298,E004910,similar_tax_code,similar_tax_code,HNG00560
127
+ E002685,E008556,similar_tax_code,similar_tax_code,HNG00562
128
+ E000068,E001681,same_representative,same_representative,HNG00564
129
+ E008157,E010222,similar_tax_code,similar_tax_code,HNG00569
130
+ E003457,E003870,same_short_name,same_short_name,HNG00572
131
+ E007305,E010226,similar_tax_code,similar_tax_code,HNG00576
132
+ E009815,E011923,same_short_name,same_short_name,HNG00584
133
+ E010409,E010536,same_address,same_address,HNG00588
134
+ E005445,E010166,same_address,same_address,HNG00589
135
+ E006957,E011912,similar_tax_code,similar_tax_code,HNG00600
136
+ E000426,E009579,same_representative,same_representative,HNG00601
137
+ E000217,E006974,same_address,same_address,HNG00604
138
+ E007116,E009271,same_representative,same_representative,HNG00608
139
+ E000254,E011338,same_name_and_industry,same_name_and_industry,HNG00609
140
+ E003714,E010634,same_name_and_industry,same_name_and_industry,HNG00614
141
+ E001789,E006249,same_address,same_address,HNG00615
142
+ E004471,E008461,similar_tax_code,similar_tax_code,HNG00617
143
+ E002453,E010813,same_name_and_industry,same_name_and_industry,HNG00638
144
+ E007435,E009359,same_short_name,same_short_name,HNG00641
145
+ E005526,E005598,same_short_name,same_short_name,HNG00642
146
+ E001208,E005002,same_representative,same_representative,HNG00656
147
+ E009432,E010496,same_short_name,same_short_name,HNG00659
148
+ E000848,E011716,same_address,same_address,HNG00664
149
+ E002539,E006272,same_representative,same_representative,HNG00670
150
+ E002876,E009371,same_name_and_industry,same_name_and_industry,HNG00671
151
+ E004218,E008902,same_address,same_address,HNG00686
152
+ E002286,E002498,similar_tax_code,similar_tax_code,HNG00694
153
+ E001126,E011616,same_representative,same_representative,HNG00698
154
+ E008727,E010392,similar_tax_code,similar_tax_code,HNG00699
155
+ E002409,E004867,same_name_and_industry,same_name_and_industry,HNG00707
156
+ E001645,E003481,similar_tax_code,similar_tax_code,HNG00709
157
+ E001361,E002345,same_name_and_industry,same_name_and_industry,HNG00719
158
+ E009951,E011135,similar_tax_code,similar_tax_code,HNG00724
159
+ E008892,E009587,same_name_and_industry,same_name_and_industry,HNG00726
160
+ E004348,E009920,same_address,same_address,HNG00733
161
+ E007228,E009394,same_representative,same_representative,HNG00739
162
+ E008769,E010329,same_short_name,same_short_name,HNG00745
163
+ E004327,E007028,similar_tax_code,similar_tax_code,HNG00746
164
+ E006990,E010359,similar_tax_code,similar_tax_code,HNG00759
165
+ E000546,E009070,same_short_name,same_short_name,HNG00761
166
+ E000047,E000518,same_representative,same_representative,HNG00765
167
+ E004794,E005270,same_address,same_address,HNG00766
168
+ E006918,E010267,same_short_name,same_short_name,HNG00772
169
+ E004351,E011241,same_address,same_address,HNG00781
170
+ E000950,E005883,same_address,same_address,HNG00806
171
+ E003296,E006899,same_short_name,same_short_name,HNG00808
172
+ E002738,E010497,same_representative,same_representative,HNG00813
173
+ E008751,E010437,same_name_and_industry,same_name_and_industry,HNG00816
174
+ E002352,E002456,same_short_name,same_short_name,HNG00827
175
+ E000136,E006940,same_address,same_address,HNG00828
176
+ E005125,E011368,same_name_and_industry,same_name_and_industry,HNG00837
177
+ E006549,E007709,same_name_and_industry,same_name_and_industry,HNG00840
178
+ E001644,E004616,similar_tax_code,similar_tax_code,HNG00848
179
+ E000076,E002874,same_short_name,same_short_name,HNG00849
180
+ E002919,E007122,same_address,same_address,HNG00852
181
+ E001412,E003872,same_short_name,same_short_name,HNG00853
182
+ E000671,E008164,same_address,same_address,HNG00854
183
+ E003999,E010811,similar_tax_code,similar_tax_code,HNG00865
184
+ E003411,E010185,similar_tax_code,similar_tax_code,HNG00866
185
+ E000644,E011901,same_representative,same_representative,HNG00868
186
+ E001650,E008538,similar_tax_code,similar_tax_code,HNG00869
187
+ E006669,E011399,same_address,same_address,HNG00871
188
+ E005038,E005925,same_address,same_address,HNG00874
189
+ E002768,E004820,same_representative,same_representative,HNG00878
190
+ E006038,E010822,same_representative,same_representative,HNG00879
191
+ E005771,E011095,similar_tax_code,similar_tax_code,HNG00883
192
+ E007793,E008691,similar_tax_code,similar_tax_code,HNG00885
193
+ E001457,E010880,similar_tax_code,similar_tax_code,HNG00890
194
+ E001086,E005724,same_name_and_industry,same_name_and_industry,HNG00892
195
+ E002096,E006991,similar_tax_code,similar_tax_code,HNG00893
196
+ E003034,E006101,same_name_and_industry,same_name_and_industry,HNG00896
197
+ E000384,E009663,same_representative,same_representative,HNG00897
198
+ E000517,E009383,same_short_name,same_short_name,HNG00901
199
+ E007339,E007592,similar_tax_code,similar_tax_code,HNG00903
200
+ E001381,E007967,same_name_and_industry,same_name_and_industry,HNG00911
201
+ E010743,E011223,same_address,same_address,HNG00924
202
+ E007385,E009607,same_address,same_address,HNG00936
203
+ E002530,E005419,same_address,same_address,HNG00945
204
+ E001070,E010750,same_address,same_address,HNG00948
205
+ E007394,E011683,similar_tax_code,similar_tax_code,HNG00950
206
+ E004988,E008567,similar_tax_code,similar_tax_code,HNG00954
207
+ E000362,E004374,same_name_and_industry,same_name_and_industry,HNG00966
208
+ E002481,E003440,same_representative,same_representative,HNG00972
209
+ E001589,E011422,same_name_and_industry,same_name_and_industry,HNG00974
210
+ E003103,E007064,same_representative,same_representative,HNG00985
211
+ E004123,E005955,same_short_name,same_short_name,HNG00987
212
+ E004566,E010075,same_name_and_industry,same_name_and_industry,HNG00991
213
+ E005928,E010672,same_short_name,same_short_name,HNG01003
214
+ E008382,E009630,same_short_name,same_short_name,HNG01012
215
+ E000350,E010444,same_short_name,same_short_name,HNG01018
216
+ E004465,E006793,same_short_name,same_short_name,HNG01040
217
+ E007485,E011823,same_short_name,same_short_name,HNG01046
218
+ E000579,E005099,same_short_name,same_short_name,HNG01053
219
+ E003690,E009307,same_representative,same_representative,HNG01054
220
+ E006481,E008815,same_representative,same_representative,HNG01061
221
+ E001876,E002094,same_representative,same_representative,HNG01063
222
+ E001065,E011365,same_address,same_address,HNG01065
223
+ E000236,E006697,same_address,same_address,HNG01069
224
+ E005051,E011057,same_address,same_address,HNG01070
225
+ E000669,E007501,same_address,same_address,HNG01076
226
+ E007430,E011883,similar_tax_code,similar_tax_code,HNG01077
227
+ E001330,E006195,same_short_name,same_short_name,HNG01088
228
+ E008707,E009449,similar_tax_code,similar_tax_code,HNG01093
229
+ E005614,E008928,similar_tax_code,similar_tax_code,HNG01103
230
+ E006631,E007902,same_short_name,same_short_name,HNG01109
231
+ E009591,E010617,same_address,same_address,HNG01113
232
+ E002263,E002364,same_address,same_address,HNG01120
233
+ E001902,E002852,same_name_and_industry,same_name_and_industry,HNG01122
234
+ E006944,E011660,same_name_and_industry,same_name_and_industry,HNG01124
235
+ E004613,E007863,same_short_name,same_short_name,HNG01125
236
+ E003490,E007219,same_name_and_industry,same_name_and_industry,HNG01126
237
+ E000999,E011265,same_representative,same_representative,HNG01128
238
+ E003098,E010186,similar_tax_code,similar_tax_code,HNG01132
239
+ E002683,E006196,same_name_and_industry,same_name_and_industry,HNG01139
240
+ E010794,E011775,same_name_and_industry,same_name_and_industry,HNG01142
241
+ E001391,E003517,similar_tax_code,similar_tax_code,HNG01146
242
+ E004747,E011537,same_representative,same_representative,HNG01155
243
+ E005469,E007914,same_address,same_address,HNG01156
244
+ E002277,E004804,same_short_name,same_short_name,HNG01159
245
+ E004531,E005077,same_address,same_address,HNG01160
246
+ E002358,E007920,same_address,same_address,HNG01166
247
+ E004746,E008937,same_short_name,same_short_name,HNG01168
248
+ E002869,E006194,same_address,same_address,HNG01169
249
+ E006430,E008586,similar_tax_code,similar_tax_code,HNG01174
250
+ E001081,E011307,same_name_and_industry,same_name_and_industry,HNG01183
251
+ E001931,E005431,same_short_name,same_short_name,HNG01192
252
+ E000804,E001289,same_address,same_address,HNG01194
253
+ E008597,E008790,same_short_name,same_short_name,HNG01196
hub/inspection_record/test.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/inspection_record/train.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/inspection_record/validation.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/record_generation_metadata/test.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/record_generation_metadata/train.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/record_generation_metadata/validation.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/record_split_map/test.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/record_split_map/train.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/record_split_map/validation.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/tax_registry/test.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/tax_registry/train.csv ADDED
The diff for this file is too large to render. See raw diff
 
hub/tax_registry/validation.csv ADDED
The diff for this file is too large to render. See raw diff
 
metadata/dataset_manifest.json ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_version": "1.0.0",
3
+ "generation_seed": 42,
4
+ "files": {
5
+ "canonical/canonical_entity.csv": {
6
+ "sha256": "167f8ff71f9efa47d4e9346b38eab71e9fd5f11c09af0b682b26b12cc42de955",
7
+ "row_count": 12000
8
+ },
9
+ "canonical/canonical_entity_history.csv": {
10
+ "sha256": "fa2587cef27c56181927e62a22603c371742d25efa07af504efb670feb421527",
11
+ "row_count": 19500
12
+ },
13
+ "canonical/hard_negative_relationships.csv": {
14
+ "sha256": "ae23a7f65d410ab5c41a12fb7a9afef114da1a1db93d5411e19dfe9f7eee495b",
15
+ "row_count": 1200
16
+ },
17
+ "control/record_split_map.csv": {
18
+ "sha256": "8acacfd0a51d5455a193d79d58a909529055faf6a1460a3cd0db05943326048f",
19
+ "row_count": 37748
20
+ },
21
+ "evaluation/all_positive_pairs.csv": {
22
+ "sha256": "02fe262b3a6f3b3b705f134a56bfe578c05276d3fbdab60edc9cf6c4df60f2f6",
23
+ "row_count": 81462
24
+ },
25
+ "evaluation/evaluation_pairs.csv": {
26
+ "sha256": "e282e1f2f743bf1dffdef05200f57a96d16becaf10a65d9eb25705a491cbe276",
27
+ "row_count": 162924
28
+ },
29
+ "evaluation/ground_truth_entity_map.csv": {
30
+ "sha256": "6733142652963895f99ff161a3d1ba8d6cc41641d3aab9259ad2f9e3dd6de29e",
31
+ "row_count": 37748
32
+ },
33
+ "evaluation/record_generation_metadata.csv": {
34
+ "sha256": "275280adc2747e089c30de3a2f98a2361b5892e37ae4f781bb05162f25d2c298",
35
+ "row_count": 37748
36
+ },
37
+ "metadata/dataset_summary.json": {
38
+ "sha256": "9dee58e1b2648069b8ded1de63f01204aeccd6af4cab7fc34641a4722a26db99",
39
+ "row_count": null
40
+ },
41
+ "metadata/generation_config.json": {
42
+ "sha256": "5eba12a8952a54b0cc121d134c3c5091afb5ee9e6cf00b9accdc9451d56278cd",
43
+ "row_count": null
44
+ },
45
+ "metadata/pipeline_column_contract.json": {
46
+ "sha256": "ebbe852178541cb122f40da701df9ba1a1f4d85ed0ec6ec170846944e81a36ad",
47
+ "row_count": null
48
+ },
49
+ "metadata/source_field_map.json": {
50
+ "sha256": "dd1ba107504802d2309e3ec4bbf2dd68976b983cf45829d29744a052e215d5ee",
51
+ "row_count": null
52
+ },
53
+ "observed/business_registry.csv": {
54
+ "sha256": "29c1c7c1e7b0f0a8d1c1bdeaa4b23f95b27b35aca13fb9eb13c6b131b22ea29c",
55
+ "row_count": 11579
56
+ },
57
+ "observed/inspection_record.csv": {
58
+ "sha256": "3714c8a664c6a91f69964b1d2384932676baa67f0cfe9527a1bd0ec020628c60",
59
+ "row_count": 14718
60
+ },
61
+ "observed/tax_registry.csv": {
62
+ "sha256": "28d57d31714f911b3e8877be1b02452f678e0b0f5b39184a58e062175fb52dd4",
63
+ "row_count": 11451
64
+ }
65
+ }
66
+ }
metadata/dataset_summary.json CHANGED
@@ -1,4 +1,5 @@
1
  {
 
2
  "random_seed": 42,
3
  "total_entities": 12000,
4
  "total_records": 37748,
@@ -7,144 +8,29 @@
7
  "tax_registry": 11451,
8
  "inspection_record": 14718
9
  },
10
- "entities_by_cluster_size": {
11
- "1": 2439,
12
- "2": 2991,
13
- "3": 2968,
14
- "4": 2366,
15
- "5": 705,
16
- "14": 531
17
- },
18
- "duplicate_entity_rate": 0.79675,
19
- "missingness_by_field": {
20
  "business_registry": {
21
- "unique_id": 0.0,
22
- "record_id": 0.0,
23
- "record_date": 0.0,
24
- "business_registration_no": 0.0,
25
- "registration_date": 0.0,
26
- "registered_business_name": 0.00017272648760687453,
27
- "registered_tax_code": 0.002331807582692806,
28
- "registered_representative_name": 0.0015545383884618706,
29
- "registered_address": 0.0028499870455134294,
30
- "registered_industry": 0.001640901632265308,
31
- "registration_status": 0.0
32
  },
33
  "tax_registry": {
34
- "unique_id": 0.0,
35
- "record_id": 0.0,
36
- "record_date": 0.0,
37
- "tax_record_no": 0.0,
38
- "taxpayer_name": 0.0018339009693476552,
39
- "tax_code": 0.012051349227141734,
40
- "taxpayer_representative_name": 0.0058510173783949,
41
- "tax_registered_address": 0.00803423281809449,
42
- "tax_industry": 0.007335603877390621,
43
- "tax_status": 0.0
44
  },
45
  "inspection_record": {
46
- "unique_id": 0.0,
47
- "record_id": 0.0,
48
- "record_date": 0.0,
49
- "inspection_no": 0.0,
50
- "inspection_date": 0.0,
51
- "inspected_entity_name": 0.011822258459029759,
52
- "inspected_tax_code": 0.09627666802554695,
53
- "inspected_representative": 0.02534311727136839,
54
- "inspection_address": 0.027857045794265525,
55
- "observed_industry": 0.025275173257236036
56
  }
57
  },
58
- "error_type_distribution": {
59
- "casing_punctuation_noise": 13550,
60
- "date_format_variation": 25768,
61
- "abbreviation": 11785,
62
- "remove_diacritics": 14187,
63
- "address_shorten_or_missing": 14018,
64
- "field_missing": 7602,
65
- "placeholder_value": 13861,
66
- "short_or_trade_name": 8593,
67
- "tax_code_missing": 13146,
68
- "ocr_confusion": 5323,
69
- "token_order_or_concatenation": 6953,
70
- "tax_code_typo": 1765,
71
- "text_typo": 8415,
72
- "english_name": 1639,
73
- "tax_code_format_noise": 1022,
74
- "stale_value": 846
75
- },
76
- "current_status_distribution": {
77
- "active": 11038,
78
- "inactive": 601,
79
- "suspended": 361
80
- },
81
- "current_industry_distribution": {
82
- "Thương mại Dịch vụ": 3081,
83
- "Công nghệ Thông tin": 1653,
84
- "Xây dựng": 1602,
85
- "Vận tải Logistics": 1200,
86
- "Sản xuất Cơ khí": 1039,
87
- "Dịch vụ Y tế": 826,
88
- "Giáo dục Đào tạo": 726,
89
- "Bất động sản": 574,
90
- "Nông nghiệp": 467,
91
- "Nhà hàng Khách sạn": 464,
92
- "Tư vấn Tài chính": 368
93
- },
94
- "history_status_distribution": {
95
- "active": 18314,
96
- "inactive": 601,
97
- "suspended": 585
98
- },
99
- "current_status_mismatch_count": 0,
100
- "records_without_errors": 4577,
101
- "records_with_3plus_errors": 21258,
102
  "true_positive_pair_count": 81462,
103
  "cross_period_positive_count": 23148,
104
- "hard_positive_count": 72638,
105
  "hard_negative_count": 2298,
106
  "orphan_record_count": 0,
107
  "cross_split_pair_count": 0,
108
- "huggingface_split_counts": {
109
- "canonical_entity": {
110
- "train": 7200,
111
- "validation": 2400,
112
- "test": 2400
113
- },
114
- "canonical_entity_history": {
115
- "train": 11651,
116
- "validation": 3937,
117
- "test": 3912
118
- },
119
- "ground_truth_entity_map": {
120
- "train": 22391,
121
- "validation": 7727,
122
- "test": 7630
123
- },
124
- "evaluation_pairs": {
125
- "train": 95430,
126
- "validation": 34362,
127
- "test": 33132
128
- },
129
- "record_generation_metadata": {
130
- "train": 22391,
131
- "validation": 7727,
132
- "test": 7630
133
- },
134
- "business_registry": {
135
- "train": 6899,
136
- "validation": 2391,
137
- "test": 2289
138
- },
139
- "tax_registry": {
140
- "train": 6736,
141
- "validation": 2322,
142
- "test": 2393
143
- },
144
- "inspection_record": {
145
- "train": 8756,
146
- "validation": 3014,
147
- "test": 2948
148
- }
149
- }
150
  }
 
1
  {
2
+ "dataset_version": "1.0.0",
3
  "random_seed": 42,
4
  "total_entities": 12000,
5
  "total_records": 37748,
 
8
  "tax_registry": 11451,
9
  "inspection_record": 14718
10
  },
11
+ "records_by_source_and_split": {
 
 
 
 
 
 
 
 
 
12
  "business_registry": {
13
+ "test": 2289,
14
+ "train": 6899,
15
+ "validation": 2391
 
 
 
 
 
 
 
 
16
  },
17
  "tax_registry": {
18
+ "test": 2393,
19
+ "train": 6736,
20
+ "validation": 2322
 
 
 
 
 
 
 
21
  },
22
  "inspection_record": {
23
+ "test": 2948,
24
+ "train": 8756,
25
+ "validation": 3014
 
 
 
 
 
 
 
26
  }
27
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  "true_positive_pair_count": 81462,
29
  "cross_period_positive_count": 23148,
30
+ "hard_positive_count": 72642,
31
  "hard_negative_count": 2298,
32
  "orphan_record_count": 0,
33
  "cross_split_pair_count": 0,
34
+ "record_split_map_duplicate_count": 0,
35
+ "control_ground_truth_column_count": 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  }
metadata/generation_config.json CHANGED
@@ -1,74 +1,18 @@
1
  {
 
2
  "random_seed": 42,
3
  "n_entities": 12000,
4
- "sources": [
5
- "business_registry",
6
- "tax_registry",
7
- "inspection_record"
8
- ],
9
  "split_weights": {
10
  "train": 0.6,
11
  "validation": 0.2,
12
  "test": 0.2
13
  },
14
- "industries": [
15
- "Thương mại Dịch vụ",
16
- "Công nghệ Thông tin",
17
- "Xây dựng",
18
- "Vận tải Logistics",
19
- "Sản xuất Cơ khí",
20
- "Dịch vụ Y tế",
21
- "Giáo dục Đào tạo",
22
- "Bất động sản",
23
- "Nông nghiệp",
24
- "Tư vấn Tài chính",
25
- "Nhà hàng Khách sạn"
26
- ],
27
- "industry_weights": [
28
- 0.25,
29
- 0.14,
30
- 0.13,
31
- 0.1,
32
- 0.09,
33
- 0.07,
34
- 0.06,
35
- 0.05,
36
- 0.04,
37
- 0.03,
38
- 0.04
39
- ],
40
- "record_count_values": [
41
- 1,
42
- 2,
43
- 3,
44
- 4,
45
- 5,
46
- 14
47
- ],
48
- "record_count_weights": [
49
- 0.2,
50
- 0.25,
51
- 0.25,
52
- 0.2,
53
- 0.06,
54
- 0.04
55
- ],
56
- "error_taxonomy": [
57
- "remove_diacritics",
58
- "abbreviation",
59
- "text_typo",
60
- "token_order_or_concatenation",
61
- "short_or_trade_name",
62
- "english_name",
63
- "tax_code_missing",
64
- "tax_code_typo",
65
- "tax_code_format_noise",
66
- "address_shorten_or_missing",
67
- "field_missing",
68
- "date_format_variation",
69
- "casing_punctuation_noise",
70
- "ocr_confusion",
71
- "placeholder_value",
72
- "stale_value"
73
- ]
74
  }
 
1
  {
2
+ "dataset_version": "1.0.0",
3
  "random_seed": 42,
4
  "n_entities": 12000,
 
 
 
 
 
5
  "split_weights": {
6
  "train": 0.6,
7
  "validation": 0.2,
8
  "test": 0.2
9
  },
10
+ "pair_difficulty_spec": {
11
+ "version": "1.0.0",
12
+ "positive_easy_min_evidence": 4,
13
+ "positive_hard_max_evidence": 2,
14
+ "positive_hard_min_challenge": 6,
15
+ "negative_hard_min_confusing_evidence": 6
16
+ },
17
+ "negative_sampling_seed": 42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  }
metadata/pipeline_column_contract.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "identity_columns": [
3
+ "unique_id",
4
+ "record_id",
5
+ "source_dataset"
6
+ ],
7
+ "matching_columns": [
8
+ "business_name",
9
+ "tax_code",
10
+ "representative_name",
11
+ "address",
12
+ "industry"
13
+ ],
14
+ "temporal_columns": [
15
+ "record_date"
16
+ ],
17
+ "control_columns": [
18
+ "data_split"
19
+ ],
20
+ "forbidden_columns": [
21
+ "true_entity_id",
22
+ "expected_version_at_record_date",
23
+ "source_version_used",
24
+ "version_lag",
25
+ "is_stale",
26
+ "error_types",
27
+ "label"
28
+ ]
29
+ }