-
Notifications
You must be signed in to change notification settings - Fork 4
/
cod-cif-tags.tsv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 1163.
2830 lines (2830 loc) · 265 KB
/
cod-cif-tags.tsv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
_150210 0.000 1 1.00 1 1 7231964 {text}
_Journal_year 0.002 1 1.00 1 11 4062503 2004
_Publ_section_title 0.000 1 1.00 1 1 4000397 {text}
_[local]_atom_site_publication_n 0.000 17 17.00 17 8 6000235 0.5 6 6000235 1.0 3 6000235 0.25
_[local]_bilbao_database_code 0.001 1 1.00 1 1 4331457 7622EyltwI 1 4331461 7632EHxUJP 1 4331462 7642ERK6cb 1 4331463 7672EIOKda 1 4331460 7682EhswuI 1 4331459 7692EnEyxG 1 4331458 7702ErUBnh
_[local]_diffrn_data_points 0.000 1 1.00 1 1 1542303 7500
_[local]_theoretical_method_dft_basis-functions 0.000 1 1.00 1 1 3000024 APW+lo
_[local]_theoretical_method_dft_functional 0.000 1 1.00 1 1 3000024 PBE
_[local]_theoretical_method_dft_method 0.000 1 1.00 1 1 3000024 all-electron
_[local]_theoretical_structure_prediction_strategy 0.000 1 1.00 1 1 3000024 evolutionary algorithm
__audit_creation_method 0.000 1 1.00 1 2 4515830 CrysAlisPro 1.171.38.46 (Rigaku OD, 2015)
__cell_measurement_temperature 0.000 1 1.00 1 1 7046270 100(2)
__chemical_name_common 0.000 1 1.00 1 1 1550560 16244_Complex-3-THF
__computing_data_collection 0.001 1 1.00 1 1 1502224 {text} 3 4024958 {line}
__computing_structure_refinement 0.000 1 1.00 1 1 4084808 {text}
__diffrn_radiation_type 0.000 1 1.00 1 1 7105337 synchrotron
__diffrn_reflns_av_r_equivalents 0.000 1 1.00 1 1 1507514 0.0447
__diffrn_reflns_av_uneti/neti 0.001 1 1.00 1 1 7033032 0.0730 1 7033030 0.0759 1 7033034 0.0909 1 7033033 0.0925 1 7033035 0.1005 1 7033031 0.1026
__exptl_absorpt_correction_t_min 0.000 1 1.00 1 1 7204931 0.442433
__exptl_absorpt_correction_type 0.000 1 1.00 1 1 4309520 integration
__exptl_crystal_density_method 0.000 1 1.00 1 2 7019738 not measured
__exptl_crystal_description 0.000 1 1.00 1 1 7105247 fragment
__nottingham_internal_coll_name 0.000 1 1.00 1 1 7122566 UAAALA
__refine_ls_r_factor_gt 0.000 1 1.00 1 1 7238066 0.0800
__reflns_friedel_coverage 0.000 1 1.00 1 1 4517194 0.000
__shelx_res_file 0.000 1 1.00 1 1 7224994 {text}
__shelxl_version_number 0.000 1 1.00 1 1 1531937 2014/6
_`cial_details 0.000 1 1.00 1 1 7040669 {text}
_absolute_chemical_configuration 0.000 1 1.00 1 2 7035333 rmad
_absolute_configuration_of_chiral_atoms 0.001 1 1.00 1 1 7042362 C13(R) 1 7037247 c13(R) 1 7037245 c13(R); c43(R) 1 7037248 c13(S) 1 7037246 c13(S); c43(S)
_absolute_structure_configuration 0.000 1 1.00 1 1 7215351 unk
_absorpt_process_ref 0.000 1 1.00 1 2 7051011 {text}
_abstract 0.000 1 1.00 1 1 7010650 {text}
_additional_information_molecular_formula 0.000 1 1.00 1 1 4130335 {text}
_addsym_pseudo/new_space_group 0.000 1 1.00 1 1 7220752 Pbca
_alert_a_response_comment 0.000 1 1.00 1 1 4064031 {text}
_alert_c_comments_reply_lhd324 0.000 1 1.00 1 1 4334599 {text}
_alert_comments 0.001 1 1.00 1 3 4078931 {text}
_alert_comments_ 0.001 1 1.00 1 3 4079380 {text}
_alert_response 0.001 1 1.00 1 7 7017790 {text}
_amcsd_database_code 0.011 1 1.00 1 52 2001431 {word}
_amcsd_formula_title 0.200 1 1.00 1 643 9014012 {line} 300 9014016 {word}
_atom_dummy_fract_x 0.005 1 2.29 5 55 1501756 {-0.3351 - 0.881}
_atom_dummy_fract_y 0.005 1 2.29 5 12 1502675 0 6 1501756 1 6 2019354 0.1675 6 2019354 0.3351 6 2019354 0.4709 5 1501756 0.5 1 1548377 0.37 1 4026067 0.9017 1 4026068 0.87 1 4026070 0.5468 1 4026069 0.489291 1 1502676 0.424602 1 4026068 0.3837 1 1552785 -0.45 1 1548377 0.36 1 1548377 0.337 1 1552785 0.283 1 1502676 0.023753 1 1552785 -0.569 1 1552785 -0.466
_atom_dummy_fract_z 0.005 1 2.29 5 55 1501756 {-0.294 - 1.083}
_atom_dummy_label 0.005 1 2.29 5 24 1501756 DUM0 14 1501756 DUM1 11 1501756 DUM2 3 1501756 DUM3 3 1501756 DUM4
_atom_local_axes_atom0 0.071 1 40.14 529 13527 1501708 {word}
_atom_local_axes_atom1 0.071 1 40.14 529 13527 1501708 {word}
_atom_local_axes_atom2 0.071 1 40.14 529 13527 1501708 {word}
_atom_local_axes_atom_label 0.059 1 37.08 140 10271 1501708 {word}
_atom_local_axes_ax1 0.071 1 40.14 529 13527 1501708 {word}
_atom_local_axes_ax2 0.071 1 40.14 529 13527 1501708 {word}
_atom_local_axes_label 0.010 8 59.53 529 2917 1504375 {word}
_atom_local_dummy_fract_x 0.001 1 2.00 4 2 1544749 0 1 1550148 0.3409 1 1550148 0.3534 1 1550148 0.3841 1 1550148 0.3908
_atom_local_dummy_fract_y 0.001 1 2.00 4 2 1544749 0 1 1550148 0.4325 1 1550148 0.4935 1 1550148 0.5127 1 1550148 0.5711
_atom_local_dummy_fract_z 0.001 1 2.00 4 2 1544749 0 1 1550148 0.329 1 1550148 0.4204 1 1550148 0.5811 1 1550148 0.673
_atom_local_dummy_label 0.001 1 2.00 4 3 1544749 DUM0 1 1550148 DUM1 1 1550148 DUM2 1 1550148 DUM3
_atom_rho_multipole_atom_label 0.059 1 36.88 140 10247 1501708 {word} 80 7120061 {0 - 4}
_atom_rho_multipole_coeff_P00 0.067 1 38.00 202 12009 1501708 {-0.15 - 6}
_atom_rho_multipole_coeff_P1-1 0.067 1 38.00 202 12009 1501708 {-1 - 8}
_atom_rho_multipole_coeff_P10 0.067 1 38.00 202 12009 1501708 {-1.05 - 4.259}
_atom_rho_multipole_coeff_P11 0.067 1 38.00 202 5 7120061 {word} 12004 1501708 {-0.84 - 4.259}
_atom_rho_multipole_coeff_P2-1 0.067 1 38.00 202 12009 1501708 {-1.26 - 4.259}
_atom_rho_multipole_coeff_P2-2 0.067 1 38.00 202 12009 1501708 {-1.24 - 4.259}
_atom_rho_multipole_coeff_P20 0.067 1 38.00 202 4 7120061 {word} 12005 1501708 {-1.35 - 4.259}
_atom_rho_multipole_coeff_P21 0.067 1 38.00 202 12009 1501708 {-1.32 - 7}
_atom_rho_multipole_coeff_P22 0.067 1 38.00 202 4 7120061 {word} 12005 1501708 {-1.82 - 4}
_atom_rho_multipole_coeff_P3-1 0.067 1 38.00 202 12009 1501708 {-0.561 - 8}
_atom_rho_multipole_coeff_P3-2 0.067 1 38.00 202 4 7120061 {word} 12005 1501708 {-0.73 - 3.176}
_atom_rho_multipole_coeff_P3-3 0.067 1 38.00 202 12009 1501708 {-0.62 - 3.176}
_atom_rho_multipole_coeff_P30 0.067 1 38.00 202 12009 1501708 {-0.59 - 6}
_atom_rho_multipole_coeff_P31 0.067 1 38.00 202 4 7120061 {word} 12005 1501708 {-0.425 - 4.466}
_atom_rho_multipole_coeff_P32 0.067 1 38.00 202 12009 1501708 {-0.472 - 4.466}
_atom_rho_multipole_coeff_P33 0.067 1 38.00 202 12009 1501708 {-0.53 - 8}
_atom_rho_multipole_coeff_P4-1 0.067 1 38.00 202 12009 1501708 {-0.35 - 4.466}
_atom_rho_multipole_coeff_P4-2 0.067 1 38.00 202 12009 1501708 {-0.41 - 7}
_atom_rho_multipole_coeff_P4-3 0.067 1 38.00 202 4 7120061 {word} 12005 1501708 {-0.48 - 4}
_atom_rho_multipole_coeff_P4-4 0.067 1 38.00 202 12009 1501708 {-0.29 - 6}
_atom_rho_multipole_coeff_P40 0.067 1 38.00 202 4 7120061 {word} 12005 1501708 {-0.51 - 4.466}
_atom_rho_multipole_coeff_P41 0.067 1 38.00 202 12009 1501708 {-0.29 - 4}
_atom_rho_multipole_coeff_P42 0.067 1 38.00 202 4 7120061 {word} 12005 1501708 {-0.38 - 4.259}
_atom_rho_multipole_coeff_P43 0.067 1 38.00 202 12009 1501708 {-0.443 - 4.259}
_atom_rho_multipole_coeff_P44 0.067 1 38.00 202 12009 1501708 {-0.4 - 4.259}
_atom_rho_multipole_coeff_Pv 0.067 1 38.00 202 12009 1501708 {0 - 18}
_atom_rho_multipole_configuration 0.000 10 10.00 10 5 2019353 1s^2^, 2s^2^, 2p^4^ 2 2019353 1s^1^ 2 2019353 1s^2^, 2s^1^ 1 2019353 1s^2^, 2s^2^, 2p^6^, 3s^2^, 3p^4^
_atom_rho_multipole_core_source 0.000 10 10.00 10 10 2019353 {text}
_atom_rho_multipole_kappa 0.059 1 36.88 140 4 7120061 {word} 10323 1501708 {-0.0965 - 4.466}
_atom_rho_multipole_kappa_dprime0 0.007 8 39.53 95 1265 1504375 {0.622 - 1.49}
_atom_rho_multipole_kappa_dprime1 0.007 8 39.53 95 1265 1504375 {0.62 - 1.49}
_atom_rho_multipole_kappa_dprime2 0.007 8 39.53 95 1265 1504375 {0.62 - 1.49}
_atom_rho_multipole_kappa_dprime3 0.007 8 39.53 95 1265 1504375 {0.62 - 1.49}
_atom_rho_multipole_kappa_dprime4 0.007 8 39.53 95 1265 1504375 {0 - 18}
_atom_rho_multipole_kappa_prime 0.007 8 40.24 95 1368 1504375 {0.799 - 1.27}
_atom_rho_multipole_kappa_prime0 0.057 1 36.79 140 9824 1501708 {0.299 - 1.5}
_atom_rho_multipole_kappa_prime1 0.058 1 36.76 140 10071 1501708 {0 - 8}
_atom_rho_multipole_kappa_prime2 0.056 1 36.82 140 9793 1501708 {0.29886 - 1.5}
_atom_rho_multipole_kappa_prime3 0.056 1 36.82 140 9793 1501708 {0.29886 - 5.2}
_atom_rho_multipole_kappa_prime4 0.056 1 36.82 140 9793 1501708 {0 - 3.24}
_atom_rho_multipole_label 0.007 8 39.53 95 1265 1504375 {word}
_atom_rho_multipole_radial_slater_n0 0.033 2 37.66 140 3148 1501730 2 2301 1501730 0 173 1501756 4 105 2104903 1 59 7120061 0. 15 1501756 10 9 7120061 -0. 8 2017783 6 8 2021751 8 3 7120061 2.000 3 7120061 3.176 2 2105489 5 1 4345174 12 1 7120061 3 1 7120061 4.259 1 7120061 4.466
_atom_rho_multipole_radial_slater_n1 0.033 2 37.66 140 3148 1501730 2 2405 1501730 1 168 1501756 4 57 7120061 0. 16 2017783 6 15 1501756 10 8 2021751 8 8 7120061 -0. 2 7120061 4. 2 7120061 3.176 1 4345174 12 1 7120061 7. 1 7120061 4.466 1 7120061 2.000 1 7120061 1.204 1 7120061 0.958 1 7120061 0.917 1 7120061 0.897 1 2300198 0
_atom_rho_multipole_radial_slater_n2 0.033 2 37.66 140 5535 1501730 2 180 1501756 4 58 7120061 0. 15 1501756 10 12 2017783 6 8 2021751 8 6 7120061 -0. 4 2105489 7 4 7120061 3.176 3 2019353 0 3 7120061 2.000 2 7120061 1.009 1 4345174 12 1 7120061 4.466 1 7120061 1.022 1 7120061 1.005 1 7120061 C3 1 7120061 H102B 1 7120061 H11B 1 7120061 H72
_atom_rho_multipole_radial_slater_n3 0.033 2 37.66 140 5425 1501730 3 153 1501756 4 108 2104903 2 65 7120061 0. 45 2017783 6 15 1501756 10 12 2021751 8 4 7120061 3.176 3 7120061 -0. 3 2019353 0 3 7120061 2.000 1 4345174 12 1 7120061 4.466
_atom_rho_multipole_radial_slater_n4 0.033 2 37.66 140 5578 1501730 4 108 2104903 2 57 7120061 0. 43 2019353 8 15 1501756 10 14 2017783 6 8 7120061 -0. 3 2019353 0 2 7120061 2.000 2 7120061 3.176 1 7120061 1.077 1 4345174 12 1 7120061 1. 1 7120061 0.881 1 7120061 4. 1 7120061 0.842 1 7120061 6. 1 7120061 0.779
_atom_rho_multipole_radial_slater_zeta0 0.033 2 37.66 140 4 7120061 {word} 5834 1501730 {0 - 18}
_atom_rho_multipole_radial_slater_zeta1 0.033 2 37.66 140 5838 1501730 {0 - 15.813}
_atom_rho_multipole_radial_slater_zeta2 0.033 2 37.66 140 5838 1501730 {0 - 15.813}
_atom_rho_multipole_radial_slater_zeta3 0.033 2 37.66 140 4 7120061 {word} 5834 1501730 {0 - 15.813}
_atom_rho_multipole_radial_slater_zeta4 0.033 2 37.66 140 5838 1501730 {0 - 15.813}
_atom_rho_multipole_valence_source 0.000 10 10.00 10 10 2019353 {text}
_atom_si'tes_solution_secondary 0.000 1 1.00 1 1 7126556 fmap
_atom_site_B_iso_or_equiv 0.530 1 20.40 650 237 2003381 {word} 50780 1000023 {-5 - 1898}
_atom_site_Cartn_x 0.000 164 164.00 164 164 2100852 {-0.54 - 16.943}
_atom_site_Cartn_y 0.000 164 164.00 164 164 2100852 {-4.018 - 24.749}
_atom_site_Cartn_z 0.000 164 164.00 164 164 2100852 {-5.904 - 9.977}
_atom_site_Fourier_wave_vector_seq_id 0.052 1 3.81 40 941 1101062 {0 - 40}
_atom_site_Fourier_wave_vector_x 0.021 1 2.62 12 259 1101062 {-1.444 - 8.33333}
_atom_site_Fourier_wave_vector_y 0.003 1 2.87 10 36 1101062 0.00000 1 7202742 -0.22222 1 4331457 -0.23320 1 7202742 0.22222 1 4307095 0.36400 1 4331457 0.56440 1 4331457 0.79760 1 4331457 1.36200
_atom_site_Fourier_wave_vector_z 0.021 1 2.62 12 259 1101062 {-3.6381 - 8.8}
_atom_site_U_Fourier_atom_site_label 0.028 6 123.66 1140 16200 1549598 {word}
_atom_site_U_Fourier_param_cos 0.028 6 123.66 1140 16200 1549598 {-0.282 - 0.23}
_atom_site_U_Fourier_param_sin 0.028 6 123.66 1140 16200 1549598 {-619.609 - 0.534}
_atom_site_U_Fourier_tens_elem 0.028 6 123.66 1140 2700 1549598 U11 2700 1549598 U12 2700 1549598 U13 2700 1549598 U22 2700 1549598 U23 2700 1549598 U33
_atom_site_U_Fourier_wave_vector_seq_id 0.028 6 123.66 1140 16200 1549598 {0 - 20}
_atom_site_U_iso_or_equiv 95.678 1 73.45 13188 286 1511760 {word} 33184579 1000000 {-7.15 - 1200}
_atom_site_Wyckoff_symbol 1.625 1 17.21 427 132008 1000002 {word} 7 1561897 {4 - 8}
_atom_site_adp_type 81.588 1 81.12 13188 31253460 1000001 {word}
_atom_site_anharm_details 0.004 1 1.00 1 20 1501756 {text}
_atom_site_anharm_gc_c_111 0.017 1 6.55 18 511 1501708 {-0.008 - 0.008}
_atom_site_anharm_gc_c_112 0.017 1 6.55 18 511 1501708 {-0.019 - 0.039}
_atom_site_anharm_gc_c_113 0.017 1 6.55 18 511 1501708 {-0.024 - 0.025}
_atom_site_anharm_gc_c_122 0.017 1 6.55 18 511 1501708 {-0.007 - 0.00083}
_atom_site_anharm_gc_c_123 0.017 1 6.55 18 511 1501708 {-0.013 - 0.01}
_atom_site_anharm_gc_c_133 0.017 1 6.55 18 511 1501708 {-0.005 - 0.013}
_atom_site_anharm_gc_c_222 0.017 1 6.55 18 511 1501708 {-0.00783 - 0.00298}
_atom_site_anharm_gc_c_223 0.017 1 6.55 18 511 1501708 {-0.003 - 0.004}
_atom_site_anharm_gc_c_233 0.017 1 6.55 18 511 1501708 {-0.009 - 0.006}
_atom_site_anharm_gc_c_333 0.017 1 6.55 18 511 1501708 {-0.00354 - 0.003}
_atom_site_anharm_gc_c_label 0.017 1 6.55 18 511 1501708 {word}
_atom_site_anharm_gc_c_scale_factor 0.000 1 1.00 1 1 7701297 1000.0000000000000
_atom_site_anharm_gc_d_1111 0.010 1 3.04 16 149 1501708 {-0.00056 - 0.0037}
_atom_site_anharm_gc_d_1112 0.010 1 3.04 16 149 1501708 {-0.004 - 0.0014}
_atom_site_anharm_gc_d_1113 0.010 1 3.04 16 149 1501708 {-0.0038 - 0.0012}
_atom_site_anharm_gc_d_1122 0.010 1 3.04 16 149 1501708 {-0.00024 - 0.0017}
_atom_site_anharm_gc_d_1123 0.010 1 3.04 16 149 1501708 {-0.0014 - 0.0017}
_atom_site_anharm_gc_d_1133 0.010 1 3.04 16 149 1501708 {-0.0026 - 0.000164}
_atom_site_anharm_gc_d_1222 0.010 1 3.04 16 149 1501708 {-0.00143 - 0.0002}
_atom_site_anharm_gc_d_1223 0.010 1 3.04 16 149 1501708 {-0.0005 - 0.0006}
_atom_site_anharm_gc_d_1233 0.010 1 3.04 16 149 1501708 {-0.0007 - 8.2e-05}
_atom_site_anharm_gc_d_1333 0.010 1 3.04 16 149 1501708 {-0.0022 - 0.001}
_atom_site_anharm_gc_d_2222 0.010 1 3.04 16 149 1501708 {-0.00018 - 0.00155}
_atom_site_anharm_gc_d_2223 0.010 1 3.04 16 149 1501708 {-0.0003 - 0.0004}
_atom_site_anharm_gc_d_2233 0.010 1 3.04 16 149 1501708 {-7.2e-05 - 0.0011}
_atom_site_anharm_gc_d_2333 0.010 1 3.04 16 149 1501708 {-0.000146 - 0.0004}
_atom_site_anharm_gc_d_3333 0.010 1 3.04 16 149 1501708 {-0.0005 - 0.0016}
_atom_site_anharm_gc_d_label 0.010 1 3.04 16 149 1501708 {word}
_atom_site_anharm_gc_d_scale_factor 0.000 1 1.00 1 1 7701297 10000.000000000000
_atom_site_aniso_B_11 0.036 1 6.03 65 1019 1000048 {0.003 - 21.9}
_atom_site_aniso_B_12 0.036 1 6.03 65 1019 1000048 {-4.1 - 10.95}
_atom_site_aniso_B_13 0.036 1 6.03 65 1019 1000048 {-3.8 - 3.87}
_atom_site_aniso_B_22 0.036 1 6.03 65 1019 1000048 {-0.0032 - 21.9}
_atom_site_aniso_B_23 0.036 1 6.03 65 1019 1000048 {-1.8 - 10.4}
_atom_site_aniso_B_33 0.036 1 6.03 65 1019 1000048 {-8.8 - 12.59}
_atom_site_aniso_U_11 86.567 1 42.95 2257 66 1504370 {word} 17556720 1000000 {-0.09 - 1330}
_atom_site_aniso_U_12 86.567 1 42.95 2257 395 1504370 {word} 17556199 1000000 {-1080 - 314}
_atom_site_aniso_U_13 86.567 1 42.95 2257 97 1504370 {word} 17556535 1000000 {-970 - 765}
_atom_site_aniso_U_22 86.567 1 42.95 2257 73 1504370 {word} 17556572 1000000 {-0.4 - 3400}
_atom_site_aniso_U_23 86.567 1 42.95 2257 216 1101145 {word} 17556317 1000000 {-659 - 1900}
_atom_site_aniso_U_33 86.567 1 42.95 2257 111 1504370 {word} 17556589 1000000 {-0.09 - 10242}
_atom_site_aniso_beta_11 0.000 4 4.00 4 3 4319054 0.007(1) 1 4319054 0.0069(7)
_atom_site_aniso_beta_12 0.000 4 4.00 4 4 4319054 0.0
_atom_site_aniso_beta_13 0.000 4 4.00 4 4 4319054 0.0
_atom_site_aniso_beta_22 0.000 4 4.00 4 1 4319054 0.0056(7) 1 4319054 0.007(1) 1 4319054 0.013(1) 1 4319054 0.019(1)
_atom_site_aniso_beta_23 0.000 4 4.00 4 2 4319054 0.0 1 4319054 -0.0006(7) 1 4319054 0.0006(5)
_atom_site_aniso_beta_33 0.000 4 4.00 4 1 4319054 0.0009(3) 1 4319054 0.0012(1) 1 4319054 0.0018(5) 1 4319054 0.0023(2)
_atom_site_aniso_label 86.596 1 42.94 2257 2 4002653 {text} 2 1561259 {line} 17557904 1000000 {word} 276 1501458 {-0.002 - 502}
_atom_site_aniso_ratio 0.015 19 94.91 231 8 4078343 {word} 6636 1100915 {-12.81 - 97.75}
_atom_site_aniso_type_symbol 0.747 1 25.52 720 2 4002653 {text} 89892 1004016 {word} 77 1550125 {-0.00025 - 110.85}
_atom_site_aniso_u_11_esd 0.000 50 72.00 94 144 2108404 {1.1e-05 - 0.009402}
_atom_site_aniso_u_12_esd 0.000 50 72.00 94 144 2108404 {1e-05 - 0.008111}
_atom_site_aniso_u_13_esd 0.000 50 72.00 94 144 2108404 {1e-05 - 0.008379}
_atom_site_aniso_u_22_esd 0.000 50 72.00 94 144 2108404 {1.4e-05 - 0.015007}
_atom_site_aniso_u_23_esd 0.000 50 72.00 94 144 2108404 {1.1e-05 - 0.007286}
_atom_site_aniso_u_33_esd 0.000 50 72.00 94 144 2108404 {1.3e-05 - 0.01344}
_atom_site_attached_hydrogens 1.561 1 15.89 338 106812 1000017 0 4623 1000046 2 3415 1000036 1 1745 1000077 3 572 1000080 4 1 1555670 .46 1 1555670 .72 1 1555670 .82 1 2000135 5
_atom_site_b_iso 0.000 8 24.00 40 20 7204406 3.570(6) 12 7204406 2.123(3) 8 7204406 1.90(3) 1 7204405 10.1(5) 1 7204405 10.5(1) 1 7204405 10.7(2) 1 7204405 11.1(2) 1 7204405 26(1) 1 7204405 41(1) 1 7204405 44(2) 1 7204405 9.6(2)
_atom_site_b_iso_or_ 0.000 30 30.00 30 16 7055318 1.70(30) 13 7055318 2.04(36) 1 7055318 2.24(16)
_atom_site_biso_or_equiv 0.000 5 5.00 5 3 6000386 0.61(2) 1 6000386 0.54(4) 1 6000386 1.00(2)
_atom_site_calc_attached_atom 0.207 1 29.70 162 28752 1100914 {word} 234 2008293 {0 - 27}
_atom_site_calc_flag 83.392 1 79.75 3812 31404735 1000000 {word} 601 2004266 {0.083 - 4}
_atom_site_calc_flags 0.000 91 91.00 91 52 7125507 calc 39 7125507 d
_atom_site_chemical_conn_number 0.004 19 58.45 119 1169 1502658 {1 - 119}
_atom_site_constraints 0.002 1 1.89 5 5 2108325 U=U(F1) 2 1561480 occ=1-occ(Bi4) 2 1561480 occ=1-occ(Bi5) 2 1561480 x=x(Bi1), z=z(Bi1), occ=1-occ(Bi1), U=U(Bi1) 2 1561480 x=x(Bi2), z=z(Bi2), occ=1-occ(Bi2), U=U(Bi2) 1 1561247 =1-occ(F1) 1 1561247 =1-occF(2) 1 4002659 U~13~=0 1 1561481 occ=1-occ(Bi3)
_atom_site_d_flag 0.000 46 46.00 46 46 4310200 d
_atom_site_description 0.000 6 6.00 6 4 7105364 A 2 7105364 M
_atom_site_disorder_assembly 16.923 1 38.39 1976 1 7016049 {text} 11 2012366 {line} 3033027 1004001 {word} 35000 1502027 {1 - 19}
_atom_site_disorder_group 17.859 1 34.30 1860 6 7034203 {text} 9 2013740 {line} 1471 1100679 {word} 2890868 1004001 {-110 - 777}
_atom_site_disorder_group2 0.000 39 39.00 39 13 4065134 1 13 4065134 2 13 4065134 3
_atom_site_displace_Fourier_atom_site_label 0.050 3 91.67 888 21635 1101062 {word}
_atom_site_displace_Fourier_axis 0.050 3 91.67 888 7212 1101062 x 7212 1101062 y 7211 1101062 z
_atom_site_displace_Fourier_param_cos 0.050 3 91.67 888 21635 1101062 {-0.22 - 0.207}
_atom_site_displace_Fourier_param_sin 0.050 3 91.67 888 21635 1101062 {-0.295 - 20}
_atom_site_displace_Fourier_wave_vector_seq_id 0.050 3 91.67 888 21635 1101062 {0 - 40}
_atom_site_displace_special_func_atom_site_label 0.005 1 3.17 9 73 2021892 {word}
_atom_site_displace_special_func_sawtooth_ax 0.005 1 3.17 9 73 2021892 {-1.5987 - 1.9737}
_atom_site_displace_special_func_sawtooth_ay 0.005 1 3.17 9 42 2100218 0 4 2100549 -0.0044 4 2310050 0.001 2 2104693 0.5625 2 2104693 0.5 2 2104693 0.375 2 2104694 -0.75 2 2104694 -0.6875 2 2104694 -0.5625 1 2104170 -0.1545 1 2104171 -0.1265 1 2100550 -0.0117(3) 1 2107637 0.0001 1 4304362 -0.0104(7) 1 4002590 0.0024(8) 1 4002590 0.019 1 2021892 0.029(3) 1 4304362 -0.0091(4) 1 2100218 -0.0072(10) 1 2100218 -0.0037(11)
_atom_site_displace_special_func_sawtooth_az 0.005 1 3.17 9 41 2100611 0 4 2310050 -0.0563(8) 4 2100549 0.0057 4 2100549 0.0133 2 2100611 0.1212 2 2100611 0.1061 2 2100611 0.0909 2 2100218 0.009(3) 1 2100218 0.0078(7) 1 2100427 0.1691 1 2100427 0.1557 1 2100427 0.0206 1 2100550 0.0089(2) 1 2021892 -0.0097(11) 1 2100550 0.0055(7) 1 2107637 -0.1918(10) 1 2100426 -0.1449 1 2100426 -0.1112 1 4002590 -0.0449(5) 1 2100426 -0.0175
_atom_site_displace_special_func_sawtooth_c 0.005 1 3.17 9 73 2021892 {-0.03561 - 0.85981}
_atom_site_displace_special_func_sawtooth_w 0.005 1 3.17 9 73 2021892 {0.0556 - 1}
_atom_site_dummy 0.000 8 8.00 8 4 2103187 0 1 2103187 0.0553(4) 1 2103187 0.0554(4) 1 2103187 0.0920(48) 1 2103187 0.1071(45)
_atom_site_fract_x 99.690 1 71.24 13188 5 2000515 {word} 33537329 1000000 {-3915 - 3956}
_atom_site_fract_x_esd 0.000 50 72.00 94 144 2108404 {4e-06 - 0.000874}
_atom_site_fract_y 99.690 1 71.24 13188 1 2000515 {word} 33537342 1000000 {-6.0526 - 794}
_atom_site_fract_y_esd 0.000 50 72.00 94 144 2108404 {4e-06 - 0.0008}
_atom_site_fract_z 99.690 1 71.24 13188 11 2000515 {word} 33537332 1000000 {-19.6532 - 5779}
_atom_site_fract_z_esd 0.000 50 72.00 94 144 2108404 {2e-06 - 0.001002}
_atom_site_label 99.690 1 71.24 13188 33537258 1000000 {word} 267 1501458 {0 - 807}
_atom_site_occ_Fourier_atom_site_label 0.014 1 6.85 30 459 1549598 {word}
_atom_site_occ_Fourier_param_cos 0.014 1 6.85 30 459 1549598 {-2.43 - 3.1461}
_atom_site_occ_Fourier_param_sin 0.014 1 6.85 30 459 1549598 {-3.9765 - 2.76}
_atom_site_occ_Fourier_wave_vector_seq_id 0.014 1 6.85 30 280 1549598 1 118 2100612 2 39 2100612 3 21 2100612 4 1 2104418 0.9857(17)
_atom_site_occ_special_func_atom_site_label 0.026 1 10.74 140 1321 1101062 {word}
_atom_site_occ_special_func_crenel_c 0.026 1 10.74 140 1321 1101062 {-0.7056 - 1.3297}
_atom_site_occ_special_func_crenel_w 0.026 1 10.74 140 1321 1101062 {0.0357 - 1}
_atom_site_occupanc1 0.000 23 23.00 23 23 4313006 1
_atom_site_occupancy 95.863 1 72.90 13188 32999684 1000000 {-29 - 130}
_atom_site_occupancy_[sic] 0.003 4 10.75 36 60 2011922 (I) 11 4114836 2.00 11 4114836 1.00 10 2101999 1 4 2101999 .20 4 2102123 4 4 2101999 3 4 2101999 .80 3 2011923 0.60 3 7001328 1.25000 3 2011923 0.40 3 2102123 8 2 4114836 0.50 1 7001328 0.785(6) 1 7001328 0.872(6) 1 7001328 1.00000 1 7001328 1.229(4) 1 2102124 2 1 7001328 0.25000 1 2201245 6
_atom_site_occupancy_factor 0.000 22 22.00 22 18 7027276 0.5 4 7027276 1.0
_atom_site_occupancy_type_symbol_1 0.000 20 20.00 20 13 4311201 1.000 2 4311201 0.606 2 4311201 0.780 1 4311201 0.198 1 4311201 0.472 1 4311201 0.705
_atom_site_occupancy_type_symbol_2 0.000 7 7.00 7 2 4311201 0.220 2 4311201 0.394 1 4311201 0.295 1 4311201 0.528 1 4311201 0.802
_atom_site_oxford_special_azimuth 0.001 1 1.25 2 3 7024539 -0.7930 1 4069076 0.392(3) 1 4069076 0.395(3)
_atom_site_oxford_special_declination 0.001 1 1.25 2 3 7024539 0.6083 2 4069076 -0.722(3)
_atom_site_oxford_special_label 0.001 1 1.25 2 3 7024539 O100 1 4069076 C100 1 4069076 H100
_atom_site_oxford_special_size 0.001 1 1.25 2 1 7024540 1.344(10) 1 7024541 1.349(13) 1 4069076 1.355(5) 1 7024539 1.362(11) 1 4069076 2.287(5)
_atom_site_oxford_special_uiso 0.001 1 1.25 2 1 7024541 0.098(5) 1 7024540 0.111(4) 1 7024539 0.128(4) 1 4069076 0.161(2) 1 4069076 0.210(2)
_atom_site_refinement_disorder_assembly 0.000 208 208.00 208 68 4310120 1 68 4310120 2 24 4310120 3 24 4310120 4 24 4310120 5
_atom_site_refinement_disorder_group 0.000 17 112.50 208 104 4310120 1 104 4310120 2 17 4301060 -1
_atom_site_refinement_flag 0.001 12 22.80 30 60 1512202 d 54 4081350 R
_atom_site_refinement_flag_posn 0.003 7 15.62 49 250 1556811 U
_atom_site_refinement_flags 57.530 1 40.98 3804 11131249 1000000 {word} 3 7014823 {0 - 0}
_atom_site_refinement_flags_adp 15.283 1 46.16 2299 3259208 1502027 U 57982 1500022 T 13739 1512248 TU 11 1556018 ..
_atom_site_refinement_flags_occupancy 8.425 1 27.80 1282 1106094 1502027 P 2 1556018 ..
_atom_site_refinement_flags_posn 19.960 1 49.20 2654 3408611 1101114 R 552100 1502027 D 441407 1513379 GR 119097 1504399 G 66414 1500022 S 23632 1511954 DG 11017 1502867 DR 9954 1513341 DS 3162 1500022 RS 1256 1518348 DGR 120 1552936 GS 105 1514152 DRS 91 1552055 DGS 8 1551427 GRS 1 1556018 .. 1 7055486 DGRS 1 1542894 SR
_atom_site_site_symmetry_multiplicity 0.363 2 58.06 3402 40162 1004149 4 30175 1513484 2 13272 1508887 1 11129 1516609 8 2340 1516812 16 490 1517451 18 479 1100015 6 369 1100015 3 362 1543846 48 290 1518682 24 246 1540587 12 76 2021853 9 37 1518682 32 35 1518682 96 30 4341380 36 26 1548750 192 2 7224736 5
_atom_site_site_symmetry_mutiplicity 0.016 3 24.57 226 914 4001845 4 253 1554154 8 215 4002590 2 135 1513806 18 122 4336184 16 88 1513806 6 36 4002616 1 35 4339977 12 10 4336184 48 6 4336184 24 4 1547381 3
_atom_site_site_symmetry_order 18.116 1 95.56 2858 8086730 1508696 1 65622 1513341 2 7991 1513484 0 5765 1512583 4 3967 1517951 3 2227 1518956 6 1082 1518744 8 454 1542543 12 187 1529333 24 155 1529333 48 145 1518957 16
_atom_site_solution_primary 0.001 1 1.00 1 4 7059783 Direct method 1 4517963 direct 1 7009550 direct methods 1 7241787 dual
_atom_site_solution_secondary 0.001 1 1.00 1 3 7213190 Fourier Difference Synthesis 1 4517963 difmap
_atom_site_solution_secondry 0.000 1 1.00 1 1 7009550 Fourier difference
_atom_site_special_details 0.000 1 1.00 1 1 1505747 {text} 1 4303461 {line}
_atom_site_subsystem_code 0.002 3 10.20 19 84 2107283 1 18 2107283 2
_atom_site_symbol 0.000 87 87.00 87 44 4115330 C 30 4115330 H 8 4115330 O 2 4115330 P 1 4115330 CO 1 4115330 FE 1 4115330 N
_atom_site_symetry_multiplicity 0.075 3 84.73 678 29364 1529412 1 529 1548022 2 40 4309000 6 33 3500059 4 20 4309880 3 6 4311319 12 2 4312555 8
_atom_site_symetry_multiplicity_[sic] 0.000 5 5.00 5 3 4311323 6 2 4311323 4
_atom_site_symmetry_mltiplicity 0.000 70 70.00 70 40 4002013 16 28 4002013 8 2 4002013 4
_atom_site_symmetry_multiplicit 0.010 14 66.33 222 2947 4310971 1 20 7009310 3 18 7027061 2
_atom_site_symmetry_multiplicity 49.551 1 80.34 3812 13 1561897 {word} 18798641 1000002 {-1 - 192}
_atom_site_symmetry_order 0.000 129 129.00 129 129 4119019 1
_atom_site_thermal_displace_type 5.008 1 58.88 1440 1392205 1000000 {word}
_atom_site_type_aniso_symbol 0.002 4 4.00 4 36 7207284 O
_atom_site_type_symbol 93.819 1 73.95 13188 32760863 1000000 {word}
_atom_site_type_symbol_1 0.000 20 20.00 20 9 4311201 c 4 4311201 cl 3 4311201 n 3 4311201 s 1 4311201 ru
_atom_site_type_symbol_2 0.000 7 7.00 7 4 4311201 s 3 4311201 c
_atom_site_u_iso_or_equiv 0.000 18 18.00 18 6 4000446 0.00581(77) 6 4000447 0.0130(11) 4 4000446 0.00330(79) 4 4000446 0.00353(62) 4 4000447 0.00562(98) 4 4000447 0.01051(88) 4 4000446 0.01150(74) 4 4000447 0.0179(10)
_atom_site_u_iso_or_equiv_esd 0.000 50 72.00 94 144 2108404 {1.3e-05 - 0.010136}
_atom_site_uiso_or_biso 0.000 5 5.00 5 1 1100104 0.05 1 1100104 0.28 1 1100104 0.30 1 1100104 0.36 1 1100104 1.48
_atom_site_uiso_or_equiv 0.000 117 117.00 117 117 7051317 {0.027 - 0.23}
_atom_sites_Cartn_tran_matrix_11 0.000 1 1.00 1 1 2108404 10.227000 1 2108413 10.768700
_atom_sites_Cartn_tran_matrix_12 0.000 1 1.00 1 1 2108404 -4.624628 1 2108413 0.000000
_atom_sites_Cartn_tran_matrix_13 0.000 1 1.00 1 1 2108404 -0.372498 1 2108413 -3.202476
_atom_sites_Cartn_tran_matrix_21 0.000 1 1.00 1 2 2108404 0.000000
_atom_sites_Cartn_tran_matrix_22 0.000 1 1.00 1 1 2108404 11.423388 1 2108413 14.793400
_atom_sites_Cartn_tran_matrix_23 0.000 1 1.00 1 1 2108404 -3.899196 1 2108413 0.000000
_atom_sites_Cartn_tran_matrix_31 0.000 1 1.00 1 2 2108404 0.000000
_atom_sites_Cartn_tran_matrix_32 0.000 1 1.00 1 2 2108404 0.000000
_atom_sites_Cartn_tran_matrix_33 0.000 1 1.00 1 1 2108413 13.025389 1 2108404 16.905151
_atom_sites_Cartn_tran_vector_1 0.000 1 1.00 1 2 2108404 0.000000
_atom_sites_Cartn_tran_vector_2 0.000 1 1.00 1 2 2108404 0.000000
_atom_sites_Cartn_tran_vector_3 0.000 1 1.00 1 2 2108404 0.000000
_atom_sites_fract_tran_matrix_11 0.000 1 1.00 1 1 2100852 0.023496241
_atom_sites_fract_tran_matrix_12 0.000 1 1.00 1 1 2100852 0
_atom_sites_fract_tran_matrix_13 0.000 1 1.00 1 1 2100852 0
_atom_sites_fract_tran_matrix_21 0.000 1 1.00 1 1 2100852 0
_atom_sites_fract_tran_matrix_22 0.000 1 1.00 1 1 2100852 0.023496241
_atom_sites_fract_tran_matrix_23 0.000 1 1.00 1 1 2100852 0
_atom_sites_fract_tran_matrix_31 0.000 1 1.00 1 1 2100852 0
_atom_sites_fract_tran_matrix_32 0.000 1 1.00 1 1 2100852 0
_atom_sites_fract_tran_matrix_33 0.000 1 1.00 1 1 2100852 0.040633889
_atom_sites_fract_tran_vector_1 0.000 1 1.00 1 1 2100852 0
_atom_sites_fract_tran_vector_2 0.000 1 1.00 1 1 2100852 0
_atom_sites_fract_tran_vector_3 0.000 1 1.00 1 1 2100852 0
_atom_sites_location_primary 0.000 1 1.00 1 1 5000348 DIRDIF-96
_atom_sites_solution_h100 0.000 1 1.00 1 1 7011486 geom
_atom_sites_solution_h1n3 0.000 1 1.00 1 1 7011487 geom
_atom_sites_solution_h1n5 0.000 1 1.00 1 1 7011487 geom
_atom_sites_solution_hydrogen 0.001 1 1.00 1 4 5000330 geom
_atom_sites_solution_hydrogens 76.394 1 1.00 1 52 1508414 {text} 1370 1100147 {line} 359314 1000001 {word}
_atom_sites_solution_hydrogens_special_details 0.000 1 1.00 1 1 4078330 {text}
_atom_sites_solution_primary 66.391 1 1.00 1 19 2012575 {text} 970 1100691 {line} 312508 1000001 {word} 3 7242518 {0 - 0}
_atom_sites_solution_secondary 59.799 1 1.00 1 683 1100810 {line} 281684 1000004 {word} 3 7242518 {0 - 0}
_atom_type.scat_Cromer_Mann_a1 0.000 7 7.00 7 1 7157803 0.49300 1 7157803 12.21260 1 7157803 2.05450 1 7157803 2.31000 1 7157803 3.04850 1 7157803 3.53920 1 7157803 6.90530
_atom_type.scat_Cromer_Mann_a2 0.000 7 7.00 7 1 7157803 0.32291 1 7157803 1.02000 1 7157803 1.33260 1 7157803 2.28680 1 7157803 2.64120 1 7157803 3.13220 1 7157803 5.20340
_atom_type.scat_Cromer_Mann_a3 0.000 7 7.00 7 1 7157803 0.14019 1 7157803 1.09790 1 7157803 1.43790 1 7157803 1.51700 1 7157803 1.54630 1 7157803 1.58860 1 7157803 2.01250
_atom_type.scat_Cromer_Mann_a4 0.000 7 7.00 7 1 7157803 0.04081 1 7157803 0.70680 1 7157803 0.86500 1 7157803 0.86700 1 7157803 1.02430 1 7157803 1.16630 1 7157803 1.58630
_atom_type.scat_Cromer_Mann_b1 0.000 7 7.00 7 1 7157803 0.00570 1 7157803 1.46790 1 7157803 10.28250 1 7157803 10.51090 1 7157803 13.27710 1 7157803 20.84390 1 7157803 23.21850
_atom_type.scat_Cromer_Mann_b2 0.000 7 7.00 7 1 7157803 1.02100 1 7157803 10.20750 1 7157803 22.21510 1 7157803 26.12570 1 7157803 4.29440 1 7157803 5.70110 1 7157803 9.89330
_atom_type.scat_Cromer_Mann_b3 0.000 7 7.00 7 1 7157803 0.25360 1 7157803 0.26150 1 7157803 0.32390 1 7157803 0.56870 1 7157803 28.99750 1 7157803 3.14236 1 7157803 60.34980
_atom_type.scat_Cromer_Mann_b4 0.000 7 7.00 7 1 7157803 0.14030 1 7157803 0.58260 1 7157803 26.14760 1 7157803 32.90890 1 7157803 51.65120 1 7157803 56.17200 1 7157803 57.79970
_atom_type.scat_Cromer_Mann_c 0.000 7 7.00 7 1 7157803 -0.193200007081 1 7157803 -11.5290002823 1 7157803 0.0030380000826 1 7157803 0.215599998832 1 7157803 0.250800013542 1 7157803 0.277599990368 1 7157803 0.866900026798
_atom_type.scat_dispersion_imag 0.000 7 7.00 7 1 7157803 0.00000 1 7157803 0.00408 1 7157803 0.00962 1 7157803 0.01839 1 7157803 0.03377 1 7157803 0.05506 1 7157803 0.55136
_atom_type.scat_dispersion_real 0.000 7 7.00 7 1 7157803 0.00000 1 7157803 0.00963 1 7157803 0.01920 1 7157803 0.03256 1 7157803 0.05239 1 7157803 0.07537 1 7157803 0.33537
_atom_type.scat_dispersion_source 0.000 7 7.00 7 7 7157803 Henke, Gullikson and Davis, At. Data and Nucl. Data Tables, 1993, 54, 2
_atom_type.scat_source 0.000 7 7.00 7 7 7157803 International Tables Volume C Table 6.1.1.4 (pp. 500-502)
_atom_type.symbol 0.000 7 7.00 7 1 7157803 B 1 7157803 C 1 7157803 F 1 7157803 H 1 7157803 N 1 7157803 O 1 7157803 S
_atom_type__scat_dispersion_imag 0.001 5 5.00 5 5 7010971 0.000 5 7010971 0.004 5 7010971 0.009 5 7010971 0.018 1 7010973 0.509 1 7010974 0.589 1 7010975 0.678 1 7010971 2.805 1 7010972 3.614
_atom_type__scat_dispersion_real 0.001 5 5.00 5 5 7010971 0.000 5 7010971 0.009 5 7010971 0.018 5 7010971 0.031 1 7010971 0.530 1 7010975 1.549 1 7010974 1.965 1 7010972 2.365 1 7010973 3.003
_atom_type_description 80.039 1 5.20 16 7 2003072 {text} 1011 1100915 {line} 1963885 1000000 {word} 84 2001400 {-3.7409 - 111}
_atom_type_dispersion_real 0.000 5 5.00 5 1 4033426 0 1 4033426 0.0181 1 4033426 0.0311 1 4033426 0.0492 1 4033426 0.3331
_atom_type_number_in_cell 0.910 1 4.89 10 2 4329325 {word} 21038 1008808 {-3.739 - 2256}
_atom_type_oxidation_number 1.731 1 4.21 13 34442 1000017 {-4 - 7}
_atom_type_radius_bond 0.270 2 4.76 12 6073 1000002 {0.02 - 2.05}
_atom_type_radius_vdwaals 0.000 5 5.00 5 2 7202240 1.7 1 7202240 1.2 1 7202240 1.55 1 7202240 2.1
_atom_type_scat_Cromer_Mann_a1 1.868 1 5.16 12 45563 1000001 {0 - 73.948}
_atom_type_scat_Cromer_Mann_a2 1.868 1 5.16 12 45563 1000001 {-0.0074 - 73.539}
_atom_type_scat_Cromer_Mann_a3 1.868 1 5.16 12 45563 1000001 {0 - 72.767}
_atom_type_scat_Cromer_Mann_a4 1.868 1 5.16 12 45563 1000001 {-34.193 - 85.7484}
_atom_type_scat_Cromer_Mann_b1 1.868 1 5.16 12 45563 1000001 {-0.0074 - 73.793}
_atom_type_scat_Cromer_Mann_b2 1.868 1 5.16 12 45563 1000001 {-0.002 - 213.187}
_atom_type_scat_Cromer_Mann_b3 1.868 1 5.16 12 45563 1000001 {-34.193 - 213.187}
_atom_type_scat_Cromer_Mann_b4 1.868 1 5.16 12 45563 1000001 {-0.1028 - 213.904}
_atom_type_scat_Cromer_Mann_c 1.869 1 5.16 12 45567 1000001 {-16.378 - 70}
_atom_type_scat_dispersion_i 0.000 5 5.00 5 1 7118511 0.0000 1 7118511 0.0016 1 7118511 0.0033 1 7118511 0.1585 1 7118511 8.3905
_atom_type_scat_dispersion_imag 83.379 1 5.19 16 9 2003072 {text} 9 2003664 {line} 8 2000500 {word} 2044576 1000000 {-6.7648 - 80.009}
_atom_type_scat_dispersion_image 0.001 3 5.25 8 4 7010008 0.000 4 7010008 0.002 3 7010008 0.006 3 7010008 0.094 2 7110775 8.802 1 7010008 0.003 1 7010008 0.010 1 7010008 0.123 1 7110775 0.159 1 7010008 9.227
_atom_type_scat_dispersion_real 83.382 1 5.19 16 8 2003072 {text} 5 2003664 {line} 9 2000500 {word} 2044643 1000000 {-20.21 - 80.01}
_atom_type_scat_dispersion_source 0.294 2 5.10 10 6658 1513876 Henke, Gullikson and Davis, At. Data and Nucl. Data Tables, 1993, 54, 2 313 1513877 custom 61 2108734 https://subversion.xray.aps.anl.gov/pyGSAS/trunk/atmdata.py 40 1547064 International Tables Vol.C Table 4.2.6.8. 8 1559792 Sasaki 1 2022012 Henke, Gullikson and Davis, At. Data and Nucl. Data Tables, 1993, 54, 2'
_atom_type_scat_dispersitom_type_scat_dispersion_imag 0.000 5 5.00 5 1 7117914 0.0103 1 7117914 0.0362 1 7117914 International Tables Vol C Tables 4.2.6.8 and 6.1.1.4 1 7117914 Mo 1 7117914 O
_atom_type_scat_dispybsion_imag 0.000 3 3.00 3 1 4332948 0.0704 1 4332948 0.8444 1 4332948 5.5486
_atom_type_scat_dispybsion_real 0.000 3 3.00 3 1 4332948 -0.3850 1 4332948 0.0817 1 4332948 0.3463
_atom_type_scat_imag 0.000 3 3.00 3 1 7125507 0.000 1 7125507 0.002 1 7125507 0.070
_atom_type_scat_length_neutron 0.112 1 3.83 8 5 2108734 {word} 2019 1100167 {-3.7409 - 244}
_atom_type_scat_sourc 0.000 5 5.00 5 5 7109961 International Tables Vol C Tables 4.2.6.8 and 6.1.1.4
_atom_type_scat_source 84.370 1 5.15 16 70703 1100155 {text} 1960712 1000000 {line} 20532 1000001 {word} 19 2003798 {-1.6832 - 2.456}
_atom_type_scat_versus_stol_list 0.007 2 4.22 7 135 2102193 {text}
_atom_type_symbol 85.302 1 5.16 16 11 1501458 {text} 7062 1000001 {line} 2072082 1000000 {word} 8 2009611 {0 - 2}
_atom_uiso_or_equiv 0.000 55 55.00 55 55 1505873 {0.043 - 0.114}
_atoms_sites_solution_hydrogens 0.000 1 1.00 1 1 7204292 Fourier difference
_atoms_sites_solution_primary 0.004 1 1.00 1 11 7103942 direct methods 4 7203912 direct method 1 7238073 direct methods 1 7203862 direct methods 1 7203877 direct
_atoms_sites_solution_secondary 0.004 1 1.00 1 12 7103942 Fourier difference 3 7238072 least squares 1 7203862 difference Fourier maps 1 7115189 Fourier techniques 1 7203877 geom
_attachment 0.003 1 1.00 1 1 4316727 Dy-5 .cif 1 7053956 Dy.cif 1 4316729 Er-7.cif 1 4316730 Eu-2'.cif 1 4316724 Eu-2.cif 1 4316725 Gd-3.cif 1 4316728 Ho-6.cif 1 7053958 Ho.cif 1 4502651 Ni1'.cif 1 4502649 Ni1.cif 1 4502650 Ni2.cif 1 4316723 Sm-1.cif 1 4316726 Tb-4 .cif
_audit_author_address 0.003 1 1.38 3 22 1559843 {text}
_audit_author_name 0.141 1 1.02 3 9 1560353 {text} 564 1100925 {line} 105 1101016 {word}
_audit_block_code 0.286 1 1.00 1 2 7002652 {text} 1 4026557 {line} 1337 1501970 {word} 11 4123472 {692 - 98204}
_audit_block_doi 0.667 1 1.00 1 3150 1518308 {word}
_audit_block_refno 0.108 1 1.00 1 2 7001421 {word} 507 1504501 {231 - 3669}
_audit_block_usercomment 0.077 1 1.00 1 238 1518727 {line} 123 1542422 {word} 1 4080050 {276 - 276}
_audit_conform.dict_location 0.006 2 2.00 2 28 1502712 ftp://ftp.iucr.org/pub/cif_core.dic 28 1502712 ftp://ftp.iucr.org/pub/cif_pd.dic
_audit_conform.dict_name 0.006 2 2.00 2 28 1502712 cif_core.dic 28 1502712 cif_pd.dic
_audit_conform_dict_location 1.273 1 1.01 2 2 7114883 {text} 1 7114669 {line} 6049 1100746 {word}
_audit_conform_dict_name 1.390 1 1.01 2 6561 1100746 cif_core.dic 51 1547274 cif_pd.dic 2 2103713 cif_ms.dic
_audit_conform_dict_version 1.380 1 1.00 2 2320 1100746 2.3 1690 1501906 2.4 1078 1513955 2.4.3 828 1100747 2.2 252 1503874 2.1 107 1504342 2.0.1 95 1552238 2.4.5 87 2010630 2.1beta5 51 1561780 2.1beta3 5 2103923 1.0 4 1518683 2.4.2 1 2103713 0.47.1 1 4322233 2.0 1 1559113 2.4. 1 7117187 2.4.4
_audit_contact_author 0.023 1 1.00 1 1 7701981 {text} 108 1506209 {line}
_audit_contact_author_address 0.014 1 1.00 1 68 1100153 {text}
_audit_contact_author_email 0.015 1 1.00 1 71 1100153 {word}
_audit_contact_author_fax 0.013 1 1.00 1 8 1100925 +49 (0)89 2180 77440 8 4104228 847-491-5937 7 1100153 +43 512 507 2926 5 4022312 1(302)695-1351 5 4110939 517-353-1793 4 4310495 (522)2295551 4 4320354 (525)6232521 4 4329216 +41 21 693 9302 4 8103062 43(512)5072926 3 4024469 +41 (0)21 693 0504 2 4316823 +41 21 693 9305 2 4319237 34()976761187 1 4115215 (+49) 030 2093-6939 1 4115016 +49 (0)89 2180 7806 1 4110161 +49 6151 988788 1 4304950 48 12 6340515
_audit_contact_author_name 0.010 1 1.00 1 21 1558867 {text} 25 1100153 {line}
_audit_contact_author_phone 0.013 1 1.00 1 8 4104228 847-467-1541 6 1508426 +43 512 507 5503 5 4110939 517-355-9715 ext 174 5 4022312 1(302)695-2128 4 4310495 (522)2295500*7297 4 8103062 43(512)5075502 4 1100925 +49 (0)89 2180 77443 4 1100926 +49 (0)89 2180 77442 4 4329216 +41 21 693 9301 4 4320354 (525)6232524 3 4024469 +41 (0)21 693 0635 2 4316823 +41 21 693 9312 2 4319237 34()976761179 1 1100153 +43 512 507 5502 1 4115016 +49 (0)89 2180 7442 1 4110161 +49 6151 988720 1 1559912 +1 514 343 6111 3937 1 1559913 +1 514 340 4711 2579 1 4304950 48 12 6336377 ext.2053 1 4115215 (+49) 030 2093-7385
_audit_contact_letter 0.001 1 1.00 1 5 4037891 {text}
_audit_creation'_method 0.000 1 1.00 1 1 4131309 SHELXL-2014/7
_audit_creation_date 12.832 1 1.00 1 697 1501970 {text} 2986 1100066 {line} 56905 1000002 {word} 4 4022636 {2001 - 2012}
_audit_creation_method 74.388 1 1.00 1 40190 1502072 {text} 22582 1000002 {line} 288490 1000000 {word}
_audit_creation_method_reference 0.015 1 1.00 1 72 1504366 {text}
_audit_creation_record 0.000 1 1.00 1 1 7051137 {text}
_audit_section_references 0.000 1 1.00 1 1 7704677 {text}
_audit_update_record 17.140 1 1.00 1 78572 1100000 {text} 1569 1100001 {line} 794 1000002 {word}
_bond 0.000 752 752.00 752 572 4501346 {word} 180 4501346 {1.1292 - 180}
_c_computing_data_collection 0.000 1 1.00 1 1 4345899 CrystalClear (Rigaku/MSC Inc., 2005)
_cambridge_crystallographer_crsid 0.026 1 1.00 1 120 1543741 adb29 3 1542307 jed2 2 7118673 rg489
_cambridge_crystallographer_email 0.000 1 1.00 1 1 7119844 [email protected]
_cambridge_crystallographer_name 0.027 1 1.00 1 120 1543741 Andrew Bond 3 1542307 John Davies 2 7118673 Raul Garcia-Rodriguez 1 7049923 Andrew bond
_cambridge_data_id 0.027 1 1.00 1 126 1542307 {word}
_cambridge_sample_id 0.026 1 1.00 1 4 1548454 {line} 118 1542307 {word}
_cambridge_supervisor_crsid 0.026 1 1.00 1 61 4127583 dsw1000 16 4126010 ch664 11 7049914 pdb30 10 1542307 mjg32 6 1543741 svl1000 5 4127984 rjp71 4 4134349 sed33 3 7126510 drs36 3 1560812 hab60 3 2108741 wj10 1 1548454 cpg27 1 7127400 [email protected] 1 1559811 oas23
_cambridge_supervisor_name 0.026 1 1.00 1 61 4127583 Dominic Wright 16 4126010 Chris Hunter 11 7049914 Paul Barker 10 1542307 Matthew Gaunt 6 1543741 Steven Ley 5 4127984 Robert Phipps 4 4134349 Sian Dutton 3 7126510 David Spring 3 1560812 Hugo Bronstein 3 2108741 William Jones 1 1548454 Clare Grey 1 7127400 John Sutherland 1 1559811 Oren Scherman
_cambridge_user_crsid 0.026 1 1.00 1 125 1542307 {word}
_cambridge_user_email 0.000 1 1.00 1 1 7119844 [email protected]
_cambridge_user_name 0.027 1 1.00 1 126 1542307 {line}
_ccdc_chemdiag_records 0.001 1 1.00 1 1 7121064 comp2.cdx 1 7230704 comp3 1 7121062 comp3.cdx 1 7121063 comp4.cdx 1 7121061 comp7.cdx
_ccdc_chemdiag_type 0.001 1 1.00 1 5 7121061 ChemDraw
_ccdc_comments 0.004 1 1.00 1 2 7237871 same as PHESAZ01 2 7204227 light-emitting diode material 1 1554123 locally archived as 17srv293 1 4035209 tetragonal form see CCDC-1850073 1 4035211 solvent-free see CCDC-1850071, 1850072 1 4003417 redetermination of YUGDOV, CCDC-1052646 1 4515785 redetermination of XAKNAB, CCDC-1434397 1 4515780 redetermination of SEPHAW 1 7237872 presumably same as PHESAZ03 1 4348464 polymorph of VEMQIP 1 4035210 orthorhombic form see CCDC-1850071 1 4034283 PhCl solvate CCDC-11866361 1 1554122 locally archived as 17srv288 1 7121933 isomorphous with IMAYEC (Tb), OHIPAW (Eu), OHIPEA (Gd), OHIPIE (Lu) 1 1554126 fulla data archived locally as 18srv164 1 1554125 full data archived locally as 18srv281 1 1554124 full data archived locally as 17srv286 1 1554120 full data archived locally as 17srv277 1 1554121 frames archived locally as 17srv276
_ccdc_depnum_archive 0.000 1 1.00 1 1 1555000 1045171
_ccdc_geom_bond_type 0.008 6 160.40 1212 4516 1540393 S 1476 7201214 A 420 4348142 D 4 4348142 T
_ccdc_polymorph 0.001 1 1.00 1 1 7237756 low-temperature phase 1 4038348 room temperature phase 1 7237752 room-temperature phase
_ccdc_publ_extra_info 0.006 1 1.00 1 26 1545440 {text} 3 2311789 {line}
_ce_cell_measurement_reflns_used 0.000 1 1.00 1 1 4340344 8534
_cel_cell_measurement_theta_min 0.000 1 1.00 1 1 7017334 1.4334
_cell_ 0.000 1 1.00 1 1 7210578 measurement_reflns_used
_cell_ambient_temperature 0.000 1 1.00 1 1 4031058 170.0
_cell_angle_alpha 99.990 1 1.00 1 472156 1000000 {13.93 - 150.172}
_cell_angle_beta 99.990 1 1.00 1 472156 1000000 {11.93 - 173.895}
_cell_angle_gamma 99.990 1 1.00 1 472156 1000000 {13.93 - 149.9}
_cell_cell_measurement_reflns_used 0.000 1 1.00 1 1 4316827 12069 1 7104355 2331
_cell_diffrn__number 0.000 1 1.00 1 1 4512204 4757
_cell_formula_unit_z 0.001 1 1.00 1 5 7010971 2 1 7010970 8
_cell_formula_units 0.000 1 1.00 1 1 7100732 1.0
_cell_formula_units_Z 96.157 1 1.00 1 3 2100366 {line} 454052 1000000 {0 - 2352}
_cell_formula_units_z 0.000 1 1.00 1 1 4300741 1 1 4062540 16
_cell_formula_units_zprime 0.000 1 1.00 1 1 7219470 2
_cell_formula_units_zprime_mrl 0.000 1 1.00 1 1 1540595 1 1 1532833 2
_cell_length_a 99.990 1 1.00 1 472156 1000000 {1.4974 - 189.8}
_cell_length_alpha 0.000 1 1.00 1 2 7702372 90.
_cell_length_b 99.990 1 1.00 1 472156 1000000 {1.4974 - 150}
_cell_length_beta 0.000 1 1.00 1 1 7702372 91.71(3) 1 7702373 93.66(4)
_cell_length_c 99.990 1 1.00 1 472156 1000000 {1.6065 - 475.978}
_cell_length_gamma 0.000 1 1.00 1 2 7702372 90.
_cell_measurement.radiation 0.000 1 1.00 1 1 7117387 Cu K\a
_cell_measurement_2_theta_max 0.000 1 1.00 1 1 7111128 34.0 1 7111129 37.4
_cell_measurement_2_theta_min 0.000 1 1.00 1 1 7111129 17.0 1 7111128 20.1
_cell_measurement_2heta_max 0.000 1 1.00 1 1 4319647 52.1
_cell_measurement_2heta_min 0.000 1 1.00 1 1 4319647 3.3
_cell_measurement_2theta_max 0.017 1 1.00 1 78 1508078 {16.1 - 114.98}
_cell_measurement_2theta_min 0.017 1 1.00 1 79 1508078 {2.08 - 49.2}
_cell_measurement_d_max 0.000 1 1.00 1 1 4327589 3.2
_cell_measurement_d_min 0.000 1 1.00 1 1 4327589 0.5
_cell_measurement_oressure 0.000 1 1.00 1 1 7241829 5.93e6(5)
_cell_measurement_pressure 0.204 1 1.00 1 21 1506829 {line} 15 2100014 {word} 927 1503185 {-0.007 - 9.6e+09}
_cell_measurement_pressure_gPa 0.001 1 1.00 1 1 2108205 0.409(10) 1 2108206 1.77(2) 1 2108207 2.574(13) 1 2108208 4.014(19) 1 2108209 5.01(3)
_cell_measurement_radiation 0.043 1 1.00 1 90 1532833 {line} 115 1504573 {word}
_cell_measurement_refln_index_h 0.000 25 25.00 25 7 4319196 5 7 4319196 2 6 4319196 3 4 4319196 -1 4 4319196 6 4 4319196 -3 4 7213251 1 2 4319196 9 2 7213251 0 2 4319196 -9 2 4319196 -10 1 4319196 10 1 4319196 -8 1 7213251 4 1 4319196 -5 1 4319196 -2 1 4319196 7
_cell_measurement_refln_index_k 0.000 25 25.00 25 7 4319196 -1 6 4319196 4 6 4319196 0 6 4319196 1 4 7213251 2 3 7213251 6 3 4319196 -4 3 7213251 3 2 4319196 7 2 4319196 -5 2 4319196 -8 1 4319196 -9 1 7213251 5 1 4319196 -7 1 4319196 -6 1 4319196 -3 1 4319196 -2
_cell_measurement_refln_index_l 0.000 25 25.00 25 50 4319196 {-16 - 16}
_cell_measurement_refln_theta 0.000 25 25.00 25 50 4319196 {13.18 - 20.79}
_cell_measurement_reflns_theta_max 0.000 1 1.00 1 1 7235585 30.06
_cell_measurement_reflns_theta_min 0.000 1 1.00 1 1 7235585 2.87
_cell_measurement_reflns_used 73.411 1 1.00 1 11 2003530 {text} 537 1504347 {line} 889 1502485 {word} 345209 1000000 {-2541 - 1.86945e+09}
_cell_measurement_resolution_max 0.015 1 1.00 1 70 1504366 {0.65 - 1.09}
_cell_measurement_rflns_used 0.000 1 1.00 1 1 7107631 8976
_cell_measurement_t2heta_max 0.000 1 1.00 1 1 7703298 56.02
_cell_measurement_tempera 0.000 1 1.00 1 1 7210577 ture
_cell_measurement_temperature 86.650 1 1.00 1 5 2003480 {line} 15 2104507 {word} 409143 1000000 {-164 - 16050}
_cell_measurement_temperature_k 0.000 1 1.00 1 1 4317544 203
_cell_measurement_tempybature 0.000 1 1.00 1 1 4332948 293(2)
_cell_measurement_theta_ 0.000 1 1.00 1 1 7027476 11.04
_cell_measurement_theta_max 73.673 1 1.00 1 4 4021503 {text} 62 2001214 {line} 177 1520553 {word} 347643 1000000 {-90 - 285386}
_cell_measurement_theta_mi 0.000 1 1.00 1 1 4322317 1.8
_cell_measurement_theta_min 73.633 1 1.00 1 1 7212974 {text} 57 1506464 {line} 163 1548487 {word} 347477 1000000 {-40.3 - 60607}
_cell_measurement_twotheta_max 0.000 1 1.00 1 1 4313746 56.325
_cell_measurement_twotheta_min 0.000 1 1.00 1 1 4313746 5.483
_cell_measurement_wavelength 1.395 1 1.00 1 2 7114290 {line} 6585 1501708 {0 - 2.2897}
_cell_mesaurement_theta_max 0.000 1 1.00 1 1 7204217 14.54
_cell_modulation_dimension 0.058 1 1.00 1 241 1101062 1 34 2100428 2 1 7125179 3
_cell_oxdiff_angle_alpha 0.111 1 1.00 1 525 1502284 {60.522 - 116.251}
_cell_oxdiff_angle_beta 0.111 1 1.00 1 525 1502284 {60.74 - 128.485}
_cell_oxdiff_angle_gamma 0.111 1 1.00 1 525 1502284 {61.4891 - 120.004}
_cell_oxdiff_length_a 0.111 1 1.00 1 525 1502284 {4.3088 - 46.431}
_cell_oxdiff_length_b 0.111 1 1.00 1 525 1502284 {4.3248 - 56.5826}
_cell_oxdiff_length_c 0.111 1 1.00 1 525 1502284 {5.6263 - 102.037}
_cell_oxdiff_measurement_reflns_used 0.101 1 1.00 1 478 1502284 {185 - 250417}
_cell_oxdiff_twin_id 0.014 2 2.08 4 64 1513422 1 64 1513422 2 4 1520544 3 1 7034545 4
_cell_oxdiff_twin_matrix_11 0.014 2 2.08 4 133 1513422 {-1.0078 - 1.0035}
_cell_oxdiff_twin_matrix_12 0.014 2 2.08 4 133 1513422 {-0.9504 - 0.5127}
_cell_oxdiff_twin_matrix_13 0.014 2 2.08 4 133 1513422 {-0.9624 - 1.986}
_cell_oxdiff_twin_matrix_21 0.014 2 2.08 4 133 1513422 {-1.1162 - 1.4597}
_cell_oxdiff_twin_matrix_22 0.014 2 2.08 4 133 1513422 {-1.0026 - 1.0064}
_cell_oxdiff_twin_matrix_23 0.014 2 2.08 4 133 1513422 {-0.6666 - 0.9752}
_cell_oxdiff_twin_matrix_31 0.014 2 2.08 4 133 1513422 {-1.0362 - 1.6973}
_cell_oxdiff_twin_matrix_32 0.014 2 2.08 4 133 1513422 {-0.8321 - 1.4141}
_cell_oxdiff_twin_matrix_33 0.014 2 2.08 4 133 1513422 {-1.0075 - 1.0107}
_cell_oxdiff_twin_number 0.013 1 1.00 1 59 1518063 2 2 4036250 3 1 7034545 4
_cell_oxdiff_volume 0.112 1 1.00 1 527 1502284 {0.0002 - 53793}
_cell_setting 0.000 1 1.00 1 1 7001468 MONOCLINIC
_cell_special_details 0.004 1 1.00 1 17 3500014 {text} 1 3500045 {line}
_cell_subsystem_code 0.002 2 2.00 2 9 2310031 1 9 2310031 2
_cell_subsystem_description 0.005 2 2.00 2 24 2100426 1-st subsystem 24 2100426 2-nd subsystem
_cell_subsystem_matrix_W_1_1 0.005 2 2.00 2 48 2100426 1 2 2100612 0
_cell_subsystem_matrix_W_1_2 0.005 2 2.00 2 49 2100426 0 1 2100612 -1
_cell_subsystem_matrix_W_1_3 0.005 2 2.00 2 50 2100426 0
_cell_subsystem_matrix_W_1_4 0.005 2 2.00 2 42 2100426 0 7 2104447 1 1 2100612 -0.5
_cell_subsystem_matrix_W_1_5 0.001 2 2.00 2 5 2100612 0 1 2100612 1
_cell_subsystem_matrix_W_2_1 0.005 2 2.00 2 50 2100426 0
_cell_subsystem_matrix_W_2_2 0.005 2 2.00 2 45 2100426 1 5 2102687 0
_cell_subsystem_matrix_W_2_3 0.005 2 2.00 2 50 2100426 0
_cell_subsystem_matrix_W_2_4 0.005 2 2.00 2 45 2100426 0 4 2102687 1 1 2100612 0.5
_cell_subsystem_matrix_W_2_5 0.001 2 2.00 2 4 2100612 0 2 2104094 1
_cell_subsystem_matrix_W_3_1 0.005 2 2.00 2 50 2100426 0
_cell_subsystem_matrix_W_3_2 0.005 2 2.00 2 50 2100426 0
_cell_subsystem_matrix_W_3_3 0.005 2 2.00 2 41 2100426 1 9 2100426 0
_cell_subsystem_matrix_W_3_4 0.005 2 2.00 2 39 2100426 0 9 2100426 1 2 2310031 2
_cell_subsystem_matrix_W_3_5 0.001 2 2.00 2 6 2100612 0
_cell_subsystem_matrix_W_4_1 0.005 2 2.00 2 49 2100426 0 1 2104447 1
_cell_subsystem_matrix_W_4_2 0.005 2 2.00 2 46 2100426 0 4 2102687 1
_cell_subsystem_matrix_W_4_3 0.005 2 2.00 2 41 2100426 0 9 2100426 1
_cell_subsystem_matrix_W_4_4 0.005 2 2.00 2 36 2100426 1 14 2100426 0
_cell_subsystem_matrix_W_4_5 0.001 2 2.00 2 6 2100612 0
_cell_subsystem_matrix_W_5_1 0.001 2 2.00 2 5 2100612 0 1 2100612 1
_cell_subsystem_matrix_W_5_2 0.001 2 2.00 2 3 2100612 0 3 2100612 1
_cell_subsystem_matrix_W_5_3 0.001 2 2.00 2 6 2100612 0
_cell_subsystem_matrix_W_5_4 0.001 2 2.00 2 6 2100612 0
_cell_subsystem_matrix_W_5_5 0.001 2 2.00 2 3 2100612 0 3 2100612 1
_cell_subsystems_number 0.005 1 1.00 1 25 2100426 2
_cell_symmetry_setting 0.001 1 1.00 1 4 7221657 Monoclinic 1 7221656 Triclinic 1 7221660 Trigonal
_cell_volume 99.835 1 1.00 1 3 4101111 {word} 471420 1000000 {8.299 - 740478}
_cell_wave_vector_seq_id 0.058 1 1.13 3 276 1101062 1 36 2100428 2 1 7125179 3
_cell_wave_vector_x 0.058 1 1.13 3 2 4128435 {word} 311 1101062 {-0.820681 - 1.66667}
_cell_wave_vector_y 0.058 1 1.13 3 2 4516070 {word} 311 1101062 {-0.4284 - 1.625}
_cell_wave_vector_z 0.058 1 1.13 3 3 4128435 {word} 310 1101062 {-1.2127 - 1.7374}
_chcemical_absolute_configuration 0.000 1 1.00 1 1 4503728 unk
_check 0.003 1 1.00 1 14 4505163 for
_check_cif_alert_explanations 0.001 1 1.00 1 6 7037951 {text}
_chemcial_absolute_configuration 0.000 1 1.00 1 1 7020092 ad
_chemical 0.000 1 1.00 1 1 7108480 transforming point 353
_chemical-absolute_configuration 0.000 1 1.00 1 1 4515819 ad
_chemical-formula_structural 0.001 1 1.00 1 1 4304797 Fe(CO)2(C22H52NP2) 1 4339233 Tl(C26H40P2N) 1 4068390 V(C26H40NP2)(-CH2-tBu)2
_chemical_abaolute_configuration 0.000 1 1.00 1 1 7107390 ad
_chemical_abolute_configuration 0.000 1 1.00 1 1 4070388 ad
_chemical_aboslute_configuration 0.000 1 1.00 1 1 1507165 ad 1 4304677 rmad
_chemical_abs_config 0.000 1 1.00 1 2 1503456 unk
_chemical_absolute-configuration 0.000 1 1.00 1 1 7151643 unk
_chemical_absolute-structure 0.000 1 1.00 1 1 4067783 {text}
_chemical_absolute_configration 0.000 1 1.00 1 1 7207221 rm
_chemical_absolute_configuratin 0.000 1 1.00 1 1 1512241 ad
_chemical_absolute_configuratio 0.000 1 1.00 1 1 4079072 ad
_chemical_absolute_configuration 6.086 1 1.00 1 109 1503664 {text} 735 1100783 {line} 27888 1100169 {word} 6 4125229 {0 - 1}
_chemical_absolute_configuration   0.001 1 1.00 1 3 1503758 unk
_chemical_absolute_configuration?? 0.000 1 1.00 1 1 7239735 ad 1 7239734 unk
_chemical_absolute_configuration_ad 0.000 1 1.00 1 1 1520218 unk
_chemical_absolute_configuration_at_c29 0.000 1 1.00 1 1 1513126 R
_chemical_absolute_configuration_at_c30 0.000 1 1.00 1 1 1513126 S
_chemical_absolute_configuration_at_c31 0.000 1 1.00 1 1 1513126 R
_chemical_absolute_configuration_at_c6 0.000 1 1.00 1 1 1513126 R
_chemical_absolute_configuration_at_c7 0.000 1 1.00 1 1 1513126 S
_chemical_absolute_configuration_at_c8 0.000 1 1.00 1 1 1513126 R
_chemical_absolute_configuration_c10 0.000 1 1.00 1 1 1513125 R
_chemical_absolute_configuration_c11 0.000 1 1.00 1 1 1513125 S
_chemical_absolute_configuration_c13 0.000 1 1.00 1 1 1513125 S
_chemical_absolute_configuration_c17 0.000 1 1.00 1 1 1513125 R
_chemical_absolute_configuration_c27 0.000 1 1.00 1 1 1513125 S
_chemical_absolute_configuration_c30 0.000 1 1.00 1 1 1513125 R
_chemical_absolute_configuration_info_given. 0.000 1 1.00 1 1 8102733 ad
_chemical_absolute_configuration_n2 0.000 1 1.00 1 1 1513125 S
_chemical_absolute_congiguration 0.000 1 1.00 1 2 1503418 ad
_chemical_absolute_ocnfiguration 0.000 1 1.00 1 1 1502829 ad
_chemical_absolute_onfiguration 0.000 1 1.00 1 1 4071587 syn
_chemical_absolute_structure 0.001 1 1.00 1 1 7106812 {text} 6 4025122 {word}
_chemical_compound_name 0.000 1 1.00 1 1 2108280 azulene
_chemical_compound_sour 0.001 1 1.00 1 3 1545260 see text
_chemical_compound_source 3.778 1 1.00 1 1232 1000022 {text} 12771 1000033 {line} 3838 1000063 {word} 1 7204913 {114.85 - 114.85}
_chemical_conn_bond_atom_1 0.001 35 38.67 43 116 1519159 {1 - 35}
_chemical_conn_bond_atom_2 0.001 35 38.67 43 116 1519159 {1 - 41}
_chemical_conn_bond_type 0.001 6 25.17 43 97 1519159 sing 19 1519159 doub 14 2108598 1 12 1519190 arom 8 2108598 un 1 2108598 2
_chemical_enantioexcess_bulk 0.001 1 1.00 1 3 4337945 0
_chemical_enantioexcess_bulk_technique 0.000 1 1.00 1 2 4337945
_chemical_enantioexcess_crystal 0.001 1 1.00 1 3 4337945 0 2 7214618 0.0 1 7214617 1.0
_chemical_enantioexcess_crystal_technique 0.000 1 1.00 1 2 4337945
_chemical_formula 0.000 1 1.00 1 1 4312412 Sr 2+, C4 N4 Ni 2-, 5(H2 O)
_chemical_formula_analytical 0.341 1 1.00 1 40 1000035 {text} 1304 1000065 {line} 265 1505693 {word}
_chemical_formula_density 0.000 1 1.00 1 1 7034622 7.054
_chemical_formula_friedif_mrl 0.000 1 1.00 1 1 4035938 234
_chemical_formula_iucr 0.000 1 1.00 1 1 2009464 (C21 H22 N1) ,(C14 H16 N1) ,[Cu1 Cl4]
_chemical_formula_iupac 12.056 1 1.00 1 126 1505221 {text} 56646 1000020 {line} 158 1100658 {word}
_chemical_formula_moiety 54.358 1 1.00 1 2531 1000506 {text} 249376 1000000 {line} 4760 1004002 {word} 12 1544175 {4 - 12246.8}
_chemical_formula_smoiety 0.000 1 1.00 1 1 4507708 {text} 1 4079595 {line}
_chemical_formula_structral 0.000 1 1.00 1 1 4126493 [(C40 H35 Fe)2 As5](B F4)*0.5(C H2 Cl2)
_chemical_formula_structual 0.000 1 1.00 1 1 4308529 (Ag2 (C24 H22) (H2 O)2) (B F4)2
_chemical_formula_structural 3.813 1 1.00 1 366 1000349 {text} 12258 1000017 {line} 5380 1000002 {word}
_chemical_formula_structure 0.001 1 1.00 1 1 8101376 (C8 H6 N4) Pd (C H3 C N)2 (B F4)2 . C H3 C N 1 8100589 Ba2 Zn Si2 O7 1 8100494 Ce3 Al2 I2 1 8100918 Sc B14-y Cy (y= 1.1) 1 8100267 [Cu(4,4'-bpy)(H2 O)3] (SO4)). 2H2O
_chemical_formula_sum 99.892 1 1.00 1 346 1001818 {text} 469969 1000000 {line} 1376 1000065 {word}
_chemical_formula_uipac 0.000 1 1.00 1 1 4312506 Cr(N)(S2 C N C4 H8)2
_chemical_formula_unitcell_mrl 0.000 1 1.00 1 1 1532833 C168 H224 N16 O32
_chemical_formula_weighrt 0.000 1 1.00 1 1 7108303 20818.76
_chemical_formula_weight 87.694 1 1.00 1 12 1507132 {line} 15 2003252 {word} 414067 1000000 {0 - 2.06508e+06}
_chemical_formula_weight_meas 0.007 1 1.00 1 10 4002073 612.251 10 4000731 634.711 1 4310948 1421.400 1 1512124 183.490 1 1512123 208.340 1 1545918 211.850 1 1512125 213.31 1 1512122 218.280 1 1545919 219.900 1 1512121 223.250 1 1512120 228.220 1 8100909 239.133 1 8100908 248.420 1 7220085 258.000 1 4310262 442.270
_chemical_formula_weightical 0.001 1 1.00 1 1 7009289 1209.68 1 7009925 2288.25 1 4077506 410.18 1 4077507 486.88 1 4077738 642.07 1 7027323 879.77
_chemical_forumla_moiety 0.000 1 1.00 1 1 2104572 2(C3 H10 N), C12 H8 O6 S2, C4 H8 O2
_chemical_melting_point 3.090 1 1.00 2 9 2004399 {text} 416 1101055 {line} 162 1501817 {word} 14010 1000018 {-452.7 - 388663}
_chemical_melting_point_C 0.001 1 1.00 1 1 4000043 205 1 4021033 308-9 1 4000042 60
_chemical_melting_point_gt 0.270 1 1.00 1 3 2230379 {line} 1 1554399 {word} 1270 1503071 {83 - 1500}
_chemical_melting_point_lt 0.223 1 1.00 1 2 2230671 {line} 1 1554399 {word} 1048 1503735 {86 - 1063}
_chemical_melting_structural 0.000 1 1.00 1 1 4340001 (Bu4 N)4 [Mo8 O26 (Bi Cl3)2] * 2(C2 H3 N) 1 8101862 [Cd(H2O)(C7H4NO4)2(C12H8N2)]
_chemical_moiety_formula 0.000 1 1.00 1 1 7225737 C8 H5 N1 O6, C7 H8 N2 O, H2 O
_chemical_name 0.000 1 1.00 1 2 7125526 {text}
_chemical_name_commom 0.000 1 1.00 1 1 3500079 tetradecylammonium bromide
_chemical_name_common 10.727 1 1.00 2 7678 1100659 {text} 15887 1000002 {line} 25971 1000019 {word} 1117 1501662 {1.10422e-246 - 2.012e+07}
_chemical_name_common'tetrazol 0.000 1 1.00 1 1 7056232 ylselanyl
_chemical_name_common: 0.000 1 1.00 1 1 4313665 bis{diazamethylazoniaphosphaadamantane}tetraiodo ruthenium(II) dihydrate
_chemical_name_common; 0.000 1 1.00 1 1 7702839 ruthenoquine
_chemical_name_id 0.000 1 1.00 1 1 7116490 [Cr(tpena)](ClO4)2(C4H8O2)0.5 1 7116489 [CrO2(tpenaH)](ClO4)2(H2O2)4
_chemical_name_iupac 0.000 1 1.00 1 1 1100688 2,3-bis(4-methylphenyl)tetrazolidine-5-thione 1 7154811 Dibenzyl[(2R)-2-chloropropyl]amine
_chemical_name_mineral 3.048 1 1.00 1 87 1517795 {text} 627 1000042 {line} 13678 1000007 {word}
_chemical_name_moiety 0.000 1 1.00 1 1 2021905 {text}
_chemical_name_structural 0.001 1 1.00 1 1 7020984 {text} 1 8101795 {line} 1 8102906 {word}
_chemical_name_structure_type 0.025 1 1.00 1 29 1512120 {text} 7 7112867 {line} 83 1100048 {word}
_chemical_name_systemati 0.000 1 1.00 1 1 7221841 {text}
_chemical_name_systematic 63.922 1 1.00 2 250293 1000004 {text} 39836 1000017 {line} 11459 1000020 {word} 256 1516885 {1 - 2.01504e+07}
_chemical_name_systematic: 0.000 1 1.00 1 1 7051006 {text}
_chemical_name_systematic; 0.000 1 1.00 1 1 4304586 4-(4-trifluormethylphenyl)-1,2,3,5-dithiadiazolyl;
_chemical_optical_rotation 0.008 1 1.00 1 38 1505662 {line}
_chemical_oxdiff_formula 2.216 1 1.00 1 7625 1502284 {line} 2840 1503501 {word}
_chemical_oxdiff_usercomment 0.529 1 1.00 1 4 4345125 {text} 1643 1502409 {line} 818 1513693 {word} 32 1520079 {-173 - 2.01503e+09}
_chemical_properties_physical 0.921 1 1.00 1 1747 1503013 {line} 2601 1513109 {word}
_chemical_source_common 0.004 1 1.00 1 6 1501855 ACN 5 7214358 EtOH 3 7214363 EE/isohex 2 1549733 TOL/TBME 1 1501854 ACT 1 1501908 DCE/CDCl3/ACN 1 7214357 EE/isohexane 1 4038363 THF/TOL
_chemical_temperature_decomposition 0.067 1 1.00 1 315 1502913 {66 - 1256}
_chemical_temperature_decomposition_gt 0.015 1 1.00 1 71 1502814 {140 - 1073.15}
_chemical_temperature_decomposition_lt 0.000 1 1.00 1 1 4025554 435.9
_chemiccal_absolute_configuration 0.000 1 1.00 1 1 7016382 ad
_chemw03_alert_2_a 0.001 1 1.00 1 6 4120480 {text}
_citation_author_citation_id 0.010 1 1.47 8 62 1010549 1 4 2209646 primary
_citation_author_name 0.010 1 1.53 8 39 5900000 A. I. Kitajgorodskij 6 4100531 4 3 4100531 2 3 4100531 3 3 4100531 1 2 2209646 Zhang, Gui-Ling 2 2209646 Wu, Zhi-Yong 2 2209646 Song, Yu-Lan 2 2209646 Li, Yan-Tuan 1 4320282 Day, V.W. 1 1010549 K\^ozu, Shukusuk\'e 1 1010836 David L. Bryce 1 4320282 Rheingold, R.L. 1 4320282 Schuetz, S.A. 1 4320282 Sommer, R. 1 1010836 Cory M. Widdifield 1 1010549 Takan\'e, Katsutoshi 1 4320282 Belot, J.A. 1 1519159 Acharya, K.R.
_citation_author_ordinal 0.001 2 4.50 8 4 1010549 1 4 1010549 2 3 4100531 Balch, Alan L. 3 4100531 Fettinger, James C. 3 4100531 Gussenhoven, Emily M. 3 4100531 Malwitz, Mark A. 3 4100531 Pham, David M. 2 2209646 3 2 2209646 4
_citation_book_publisher 0.008 1 1.00 1 39 5900000 Izdatel'stvo Akademii Nauk SSSR
_citation_book_title 0.008 1 1.00 1 39 5900000 Organicheskaja Kristallokhimija
_citation_coordinate_linkage 0.009 1 1.12 3 44 1010549 yes 3 2209646 no
_citation_country 0.008 1 1.00 1 39 5900000 USSR 1 1010836 USA
_citation_database_id_CSD 0.001 1 1.00 1 1 7022436 CEQKUE 1 7030272 HABLAX HABLAX01 HABLAX02 for monoclinic polymorph 1 5910075 PONCUQ
_citation_doi 0.159 1 1.01 2 759 1010549 {word}
_citation_id 0.184 1 1.07 4 794 1010549 1 74 1513087 primary 49 1513962 2 11 1514099 3 2 1514099 4
_citation_journal_abbrev 0.006 1 1.12 2 20 2104736 {text} 9 1010836 {line}
_citation_journal_full 0.009 1 2.11 4 7 1514106 {text} 85 1010549 {line} 1 1514104 {word}
_citation_journal_id_ASTM 6.450 1 1.00 4 2 7105575 {text} 4 7214196 {line} 30497 1010549 {word} 2 1525390 {100013 - 100030}
_citation_journal_id_ISSN 0.003 1 1.07 2 14 2104736 {text} 2 2209646 {word}
_citation_journal_issue 0.004 1 1.05 2 12 1514054 3 3 4100531 46 1 1010549 2 1 1514230 4 1 1010836 40 1 2209646 6 1 2209646 7 1 1514110 9
_citation_journal_volume 0.015 1 1.69 4 20 2104736 {text} 102 1010549 {1 - 1979}
_citation_page_first 0.021 1 1.54 4 6 1548824 {word} 143 1010549 {1 - 16338}
_citation_page_last 0.020 1 1.53 4 6 1548824 {word} 138 1010549 {5 - 16338}
_citation_special_details 0.001 1 1.25 2 4 2209646 {text} 1 2209646 {line}
_citation_title 0.006 1 1.04 2 16 1010836 {text} 11 1010549 {line}
_citation_year 0.190 1 1.07 4 958 1010549 {1923 - 2021}
_co_computing_molecular_graphics 0.000 1 1.00 1 1 4000975 Diamond
_cod_changelog_entry_author 0.000 1 1.00 1 1 1538420 Andrius Merkys
_cod_changelog_entry_date 0.000 2 2.00 2 1 1538420 2015-11-06T06:54:54+02:00 1 1538420 2020-08-18T11:05:20+03:00
_cod_changelog_entry_id 0.000 2 2.00 2 1 1538420 1 1 1538420 2
_cod_changelog_entry_text 0.000 2 2.00 2 1 1538420 {text} 1 1538420 {line}
_cod_citation_special_details 0.008 1 1.00 1 40 1010836 {text}
_cod_data_source_URL 0.000 1 1.00 1 1 1100110 http://scripts.iucr.org/cgi-bin/sendcif?wn6225sup1
_cod_data_source_block 91.969 1 1.00 1 166 1501645 {text} 10 4001635 {line} 384883 1004006 {word} 49221 1004018 {-175 - 3.63637e+13}
_cod_data_source_file 92.377 1 1.00 1 1 5900030 {text} 436205 1000000 {word} 2 1100931 {1 - 1}
_cod_database_code 99.949 1 1.00 1 471962 1000000 {1e+06 - 9.01673e+06}
_cod_database_fobs_code 12.037 1 1.00 1 56838 1008808 {1.10091e+06 - 9.01475e+06}
_cod_depositor_comments 46.682 1 1.00 1 171274 1000000 {text} 49157 1501602 {line}
_cod_duplicate_entry 0.949 1 1.00 1 4483 1000000 {1e+06 - 9.01599e+06}
_cod_enantiomer_of 0.000 1 1.00 1 1 4105851 4105625 1 4105625 4105851
_cod_entry_issue_author 0.034 1 1.01 2 125 1004017 Saulius Gra\<zulis 35 1516168 Andrius Merkys 1 4034420 Miguel Quir\'os
_cod_entry_issue_date 0.034 1 1.00 1 120 2204639 2010-03-20 28 2206769 2017-02-20 1 2001000 2009-06-23 1 1004017 2013-03-29 1 1516168 2014-05-21 1 2009300 2014-06-18 1 2101289 2015-09-15 1 2100852 2016-01-12 1 7002950 2016-02-02 1 1521699 2017-01-13 1 2015946 2017-08-31 1 4034420 2020-06-17 1 2219355 2020-07-24
_cod_entry_issue_description 0.035 1 1.01 2 166 1004017 {text}
_cod_entry_issue_id 0.037 1 1.01 2 174 1004017 1 1 2100852 2
_cod_entry_issue_origin 0.037 1 1.01 2 169 1004017 original 2 2209646 experiment 2 1516168 upstream 1 1100919 deposition
_cod_entry_issue_severity 0.037 1 1.01 2 150 2015946 retraction 21 1004017 warning 4 1100919 error
_cod_hold_until_date 0.051 1 1.00 1 239 3000013 {word}
_cod_original_cell_volume 32.434 1 1.00 1 8 2001144 {line} 40 1507216 {word} 153105 1008828 {-153.95 - 740478}
_cod_original_chemical_formula_structural 0.000 1 1.00 1 1 2102071 (C60)8 (C4 N4 S6)6
_cod_original_formula_iupac 0.032 1 1.00 1 1 2007387 {text} 151 1545485 {line}
_cod_original_formula_moiety 0.249 1 1.00 1 5 1546806 {text} 1151 1100811 {line} 22 1545833 {word}
_cod_original_formula_sum 18.526 1 1.00 1 654 1001031 {text} 86182 1000002 {line} 645 1001668 {word}
_cod_original_formula_units_Z 0.462 1 1.00 1 1 8101578 {line} 1 2207443 {word} 2178 1100919 {1 - 171}
_cod_original_formula_weight 0.444 1 1.00 1 1 2207443 {word} 2096 1100964 {14.68 - 43643.7}
_cod_original_sg_number 0.002 1 1.00 1 3 4133977 -1 2 1548778 0 1 4116477 1 1 4321986 14 1 1544466 166 1 7101380 33 1 7048662 P21/a 1 7038409 Pn21a
_cod_original_sg_symbol_H-M 46.233 1 1.00 1 117158 1000001 {line} 101153 1000000 {word} 3 4515199 {0 - 62}
_cod_original_sg_symbol_Hall 4.032 1 1.00 1 291 1510959 {text} 12958 1010134 {line} 5786 1000028 {word} 2 4129711 {1 - 1}
_cod_related_entry_code 8.104 1 1.01 10 2 2006278 {word} 38576 1000017 {6 - 7.17685e+07}
_cod_related_entry_database 8.104 1 1.01 10 34799 1000017 ChemSpider 3516 1000033 AMCSD 252 1000032 MPOD 4 4001772 TCOD 3 2100000 PubChem 2 9014007 COD 2 2006278 DrugBank
_cod_related_entry_description 0.001 2 2.67 4 4 9014007 {text} 4 4001772 {line}
_cod_related_entry_id 8.104 1 1.01 10 38269 1000017 1 212 1000032 2 41 1000032 3 21 1000032 4 16 1000032 5 7 1000032 6 5 1000032 7 4 1000032 8 2 1000032 9 1 1000032 10
_cod_related_optimal_struct 0.007 1 1.00 1 33 1517077 {1.10122e+06 - 4.11165e+06}
_cod_related_suboptimal_struct 0.004 1 1.40 2 28 2100858 {2.10086e+06 - 4.11167e+06}
_cod_same_crystal_as 0.000 1 1.00 1 1 4060527 4062828
_cod_struct_determination_method 0.129 1 1.00 1 588 1512487 theoretical 17 1546034 powder diffraction 2 1544728 single crystal
_com_computing_data_collection 0.000 1 1.00 1 2 1507743 Bruker SMART
_comment 0.001 1 1.00 1 2 1519758 {text} 1 8103028 {line}
_comment_alert_responses 0.001 1 1.00 1 3 4334599 {text}
_comments 0.002 1 1.00 1 9 4038428 {text}
_commputing_cell_refinement 0.001 1 1.00 1 3 4024870 CrystalClear (Rigaku, 2001)
_comp_computing_data_collection 0.000 1 1.00 1 1 7014705 Bruker SMART
_complex3-fcf 0.000 1 1.00 1 1 4347295 {text}
_compound 0.002 1 1.00 1 4 7218670 name 1 4319072 [MoO(CNBut)4Cl][BPh4] at 100K 1 4319071 [MoO(CNBut)4Cl][BPh4] at 300K 1 4319074 [MoO(PMe3)4Cl][PF6] at 100K 1 4319073 [MoO(dmpe)2Cl]Cl.5H2O at 100K 1 4319075 [MoO(dmpe)2Cl][BPh4] at 200K 1 4319076 [MoO(dmpe)2Cl][PF6] at 100K
_compound_number 0.004 1 1.00 1 2 4303456 1 2 4074170 5 2 4071286 4 1 4314505 7 1 7007009 1 1 4070283 4g[PF6] 1 4070282 3h[PF6] 1 4070281 3f[BPh4] 1 4070280 3b[BPh4] 1 4070279 3a[BPh4] 1 4337137 3a 1 4315353 3.CH2Cl2 1 4079730 3 1 4074169 2c 1 4074168 2b 1 7011658 2 1 4075657 13 1 4339317 10
_computing-absorption_correction 0.001 1 1.00 1 3 4076627 DIFABS
_computing-corr_abs 0.000 1 1.00 1 2 7103935 DIFABS
_computing.bruker_data_scaling 0.031 1 1.00 1 135 1518305 SADABS V2012/1 (Bruker AXS Inc.) 2 1544780 SADABS V2012/1 (Bruker AXS) 2 4513968 SADABS V2014/3 (Bruker AXS) 2 1552712 SADABS V2014/5 (Bruker AXS) 1 4033309 SADABS V2008/1 (Sheldrick) 1 7116273 SADABS V2014/3 (Sheldrick 2014) 1 4089195 SADABS V2014/4 (Bruker AXS Inc.) 1 1548576 SADABS V2014/5 (Bruker AXS Inc.) 1 4514745 SADABS V2016/2 - Bruker AXS area detector scaling and absorption correction
_computing.cell_refinement 0.003 1 1.00 1 15 1519000 APEX2 v2013.6--2 (Bruker AXS)
_computing.data_collection 0.003 1 1.00 1 15 1519000 APEX2 (Bruker AXS) 1 7157922 Bruker
_computing.data_reduction 0.003 1 1.00 1 15 1519000 SAINT V8.32B (Bruker AXS Inc., 2013) 1 7157922 SAINT
_computing.molecular_graphics 0.003 1 1.00 1 15 1519000 Bruker SHELXTL
_computing.publication_material 0.003 1 1.00 1 15 1519000 Bruker SHELXTL
_computing.structure_refinement 0.003 1 1.00 1 15 1519000 SHELXL--2013 (Sheldrick 2013) 1 4514745 SHELXL--2016/6 (Sheldrick, 2016)
_computing.structure_solution 0.003 1 1.00 1 15 1519000 SHELXS--97 (Sheldrick 2008) 1 4514745 SHELXT, VERSION 2014/5 (Sheldrick, 2014)
_computing_absolute_conf 0.000 1 1.00 1 1 7011597 Flack H D (1983), Acta Cryst. A39, 876-881
_computing_aspherical_atom_model 0.003 1 1.00 1 12 4326125 Invariomtool (Huebschle et al, 2007)
_computing_bruker_data_scaling 0.016 1 1.00 1 1 7157879 {text} 76 1545899 {line}
_computing_cell_reduction 0.000 1 1.00 1 1 7024679 HKL2000 (Otwinowski & Minor, 1997)
_computing_cell_refinemen 0.000 1 1.00 1 1 4506222 {text}
_computing_cell_refinement 72.119 1 1.00 1 35034 1100809 {text} 271161 1000005 {line} 34347 1000000 {word} 3 4330512 {0.05 - 7303}
_computing_cell_refinement       0.000 1 1.00 1 1 4038932 APEX3 v2017.3-0 (Bruker AXS, 2005-2017)
_computing_cell_refinement  0.004 1 1.00 1 18 4518296 &#x00C2;&#x00A0; &#x00C2;&#x00A0; &#x00C2;&#x00A0; SAINT
_computing_cell_refinement??????? 0.000 1 1.00 1 2 1505223 SAINT-Plus (Bruker, 1999)
_computing_cell_refinement\^a 0.003 1 1.00 1 12 7045120 \^A
_computing_cell_refinment_reference 0.015 1 1.00 1 72 1504366 {text}
_computing_corr_abs 0.004 1 1.00 1 19 4077122 DIFABS
_computing_corrections_abs 0.000 1 1.00 1 1 4505640 Difabs
_computing_crystallite_size 0.000 1 1.00 1 1 1540393 202.7
_computing_data-reduction 0.001 1 1.00 1 4 4313190 XCAD4 (Harms, 1996)
_computing_data_collecti 0.000 1 1.00 1 1 1504862 Collect (Bruker AXS BV, 1997-2004)
_computing_data_collection 70.777 1 1.00 2 36139 1000018 {text} 279884 1000000 {line} 18188 1000001 {word} 6 4033360 {0.05 - 6334}
_computing_data_collection       0.000 1 1.00 1 1 4038932 Diamond I19 EH1 GDA (Allan et al., 2017), DIALS (Winter et al., 2018)
_computing_data_collection??????? 0.000 1 1.00 1 2 1505223 SMART (Bruker, 1999)
_computing_data_collection\^a 0.001 1 1.00 1 5 7045120 \^A
_computing_data_collection_reference 0.015 1 1.00 1 72 1504366 {text}
_computing_data_correction 0.001 1 1.00 1 3 7004622 {text}
_computing_data_indexing 0.000 1 1.00 1 1 1500024 McMaille
_computing_data_merging 0.004 1 1.00 1 5 4503799 SHELXTL V6.10 UNIX (Bruker, 2001) 4 4023369 SHELXTL V6.10 [NT] (Bruker, 2001) 3 1558935 SHELXTL V2008/4 (Bruker, 2008) 2 7156920 SHELXL 2 4507811 SHELXTL XL V6.12 XP (Bruker, 2001) 1 7153687 SHELXTL V6.12 (Bruker, 2001)
_computing_data_reduction 72.440 1 1.00 1 38245 1100809 {text} 266055 1000000 {line} 37760 1000019 {word} 3 4330512 {0.03 - 17.1385}
_computing_data_reduction        0.000 1 1.00 1 1 4038932 cbf_to_sfrm.py (Johnson & Probert, 2016), SAINT V8.38A (Bruker AXS, 2017)
_computing_data_reduction2 0.000 1 1.00 1 1 4311698 Bruker SAINT v5.04
_computing_data_reduction???????? 0.000 1 1.00 1 2 1505223 SAINT-Plus (Bruker, 1999)
_computing_data_reduction_reference 0.015 1 1.00 1 72 1504366 {text}
_computing_data_reductioon 0.000 1 1.00 1 2 7110420 STOE Software package
_computing_data_refinement 0.000 1 1.00 1 1 7039882 SAINT
_computing_data_scaling 0.000 1 1.00 1 1 4084230 SADABS V2008/1 (Bruker AXS)
_computing_ligand_restraints 0.003 1 1.00 1 10 4127935 Grade Web Server, http://grade.globalphasing.org 5 4127572 Grade Web Server, http.//grade.globalphasing.org
_computing_molecular_grap 0.000 1 1.00 1 1 7210582 hics
_computing_molecular_graphics 65.219 1 1.00 3 22758 1000001 {text} 262021 1000000 {line} 23188 1004000 {word} 1 4072394 {0 - 0}
_computing_molecular_graphics2 0.000 1 1.00 1 1 7203787 Ortep-3 for Windows (Farrugia, 1997)
_computing_molecular_graphics???? 0.000 1 1.00 1 2 1505223 SHELXTL
_computing_molecular_model 0.003 1 1.00 1 13 4127572 DSR (Kratzert, 2015)
_computing_publication 0.001 1 1.00 1 4 4324231 SHELXL-97 (Sheldrick, 1997) 1 4125762 CIFTAB (Sheldrick, 2013)
_computing_publication_mate 0.000 1 1.00 1 2 7042474 WinGX publication routines (Farrugia, 2012)
_computing_publication_materia 0.000 1 1.00 1 1 7017135 {text}
_computing_publication_material 65.432 1 1.00 1 21504 1000001 {text} 247024 1000005 {line} 40441 1000000 {word} 1 4072394 {0 - 0}
_computing_publication_material2 0.000 1 1.00 1 1 7203787 WinGX publication routines (Farrugia, 1999)
_computing_publication_material?? 0.000 1 1.00 1 2 1505223 SHELXTL
_computing_publication_materiall 0.000 1 1.00 1 1 7039660 WinGX publication routines (Farrugia, 1999)
_computing_publication_materimal 0.000 1 1.00 1 2 8102679 SHELXTL (Sheldrick, 2008)
_computing_publication_matybial 0.000 1 1.00 1 1 4332948 BrukYb SHELXTL
_computing_publishing_material 0.000 1 1.00 1 1 7051317 BTABLE_PTABLE_CIF_IN_MolEN_(Fair,_1990)
_computing_r-bragg 0.000 1 1.00 1 1 7055456 1.413 1 1540393 1.447
_computing_refinement_gui 0.011 1 1.00 1 25 1518252 shelXle (Huebschle, 2014) 17 4086177 shelXle rev 647 (Hubschle et al, 2011) 12 1508353 shelXle (Huebschle et al, 2011)
_computing_special_details 0.009 1 1.00 1 41 1503541 {text}
_computing_structure_graphics 0.000 1 1.00 1 1 4309590 ORTEP-II (Johnson, 1976)
_computing_structure_refinemen 0.000 1 1.00 1 1 4311204 SHELXL-93 (Sheldrick, 1993)
_computing_structure_refinement 83.395 1 1.00 1 14797 1000001 {text} 362374 1000000 {line} 16621 1000019 {word}
_computing_structure_refinement?? 0.000 1 1.00 1 2 1505223 SHELXTL
_computing_structure_smlution 0.000 1 1.00 1 1 7009328 xtal
_computing_structure_solut 0.000 1 1.00 1 1 4076415 SHELXS-97
_computing_structure_solutio 0.000 1 1.00 1 1 4506208 SHELXS-97 (Sheldrick, 2008)
_computing_structure_solution 78.028 1 1.00 1 17687 1100053 {text} 333411 1000000 {line} 17350 1100716 {word}
_computing_structure_solution???? 0.000 1 1.00 1 2 1505223 SHELXTL (Bruker, 1999)
_computing_structure_solutions 0.002 1 1.00 1 8 4301002 SHELXS-97 (Sheldrick, 1990) 2 4308459 SHELXS-97 (Sheldrick, 1997)
_computingication_material 0.000 1 1.00 1 1 4080806 SHELXL97 (Sheldrick, 1997)
_contact_crystallographer_email 0.021 1 1.00 1 59 1501853 [email protected] 34 1501852 [email protected] 3 7104777 [email protected] 2 4132964 [email protected] 1 4072182 [email protected] 1 4025500 [email protected]
_contact_crystallographer_name 0.020 1 1.00 1 92 1501852 Richard Staples 3 7104777 Britt Vanchura
_conventional_r1_(i>2\s(i)) 0.007 1 1.00 1 5 4070473 0.034 3 4068684 0.020 3 4314406 0.028 2 7000502 0.018 2 4314409 0.048 2 4314411 0.038 2 4065647 0.033 2 4070472 0.030 1 7113400 0.032 1 7702882 0.026 1 4314407 0.022 1 7002668 0.035 1 7001147 0.021 1 7001146 0.040 1 4070475 0.042 1 7702881 0.043 1 4314405 0.017 1 7002671 0.051 1 4070474 0.054
_conventional_r1_(i>2\s(i))_(5373_reflections) 0.000 1 1.00 1 1 7007799 0.019
_creation_method 0.000 1 1.00 1 1 7115878 SHELXL-97
_crystal 0.000 1 1.00 1 1 7238418 dimension
_crystal_density 0.000 1 1.00 1 1 1543882 4.956
_crystal_size_max 0.000 1 1.00 1 1 4074559 0.29
_cumputing_publication_material 0.000 1 1.00 1 1 7043564 {text}
_d(hkl)_range 0.000 1 1.00 1 1 7010416 (12.453 - 0.809) 1 7051011 (14.228 - 0.867)
_d_diffrn_detector_area_resol_mean 0.000 1 1.00 1 1 7155913 8.3333
_d_diffrn_measurement_device_type 0.000 1 1.00 1 1 1514541 Bruker APEX-II CCD 1 4001452 CCD area detector
_d_diffrn_radiation_type 0.000 1 1.00 1 2 4001910 MoK\a
_d_diffrn_reflns_number 0.000 1 1.00 1 1 7154641 10939
_d_diffrn_standards_number 0.000 1 1.00 1 1 7106354 not applicable
_data 0.000 1 1.00 1 1 7225985 CoNi
_data_collection 0.001 1 1.00 1 3 4342174 Bruker SMART 1 4076433 RAPID-AUTO (Rigaku, 1998)
_data_collection_special_details 0.000 1 1.00 1 2 4504085 {text}
_data_compound 0.000 1 1.00 1 1 4505045 1 1 7207698 LiVOPO4.2H2O
_data_diffrn_reflns_theta_max 0.000 1 1.00 1 1 4303341 30.009
_data_diffrn_reflns_theta_min 0.000 1 1.00 1 1 4303341 2.027
_data_structure_shelx_hkl_file 0.000 1 1.00 1 1 7223441 {text}
_database_code_amcsd 0.715 1 1.00 1 3374 1000148 {130 - 19792}
_database_code_depnum_ccdc_archive 0.000 1 1.00 1 1 7050321 CCDC 227344
_database_code_depnum_csd_archive 0.000 1 1.00 1 1 4307142 CSD 416090 1 4307143 CSD 416130
_database_code_depnum_icsd_archive 0.001 1 1.00 1 1 7224082 ICSD 430421 1 7224083 ICSD 430422 1 7224084 ICSD 430423 1 7224085 ICSD 430424
_database_code_name 0.000 1 1.00 1 1 4032020 JMC1
_definition 0.000 1 1.00 1 1 7022014 {text}
_details_about_the_squeezed_material 0.001 1 1.00 1 3 7233569 {text}
_detector_sample_distance_cm 0.008 1 1.00 1 24 4065647 6.00 11 4070473 5.00 3 7007799 4.00 1 4314406 6.50
_di_diffrn_measurement_device_type 0.000 1 1.00 1 1 4000975 IPDS2
_di_diffrn_source 0.000 1 1.00 1 1 1554084 micro-source
_dif_diffrn_radiation_source 0.001 1 1.00 1 2 7234096 Enhance (Mo) X-ray Source 1 7030185 Sealed Tube 1 4083114 TXS rotating anode
_diff_measd_fract_theta_full 0.000 1 1.00 1 1 4318840 0.992
_diff_measd_fract_theta_max 0.000 1 1.00 1 1 4318840 0.992
_diff_reflns_theta_full 0.000 1 1.00 1 1 4318840 27.50
_diffn_detector_area_resol_mean 0.000 1 1.00 1 1 7110404 9.09
_diffr_source_current 0.002 1 1.00 1 4 7115255 40_mA 3 7702406 40 1 7702405 50
_diffr_source_power 0.002 1 1.00 1 4 7702405 2.0 4 7115255 2.00_kW 2 7702402 1.2
_diffr_source_type 0.002 1 1.00 1 10 7115255 Spellman DF4 Series
_diffr_source_voltage 0.002 1 1.00 1 4 7115255 50_kV 3 7702406 50 1 7702405 40
_diffractometer_make_and_type 0.000 1 1.00 1 1 1557445 Rigaku R-AXIS RAPID
_diffrm_measurement_method 0.000 1 1.00 1 1 4313281 \w/2\q
_diffrn-detector 0.001 1 1.00 1 5 7232044 scintillation counters
_diffrn.ambient_temp_esd 0.001 1 1.00 1 5 4037819 2.0
_diffrn_ambient__temperature 0.001 1 1.00 1 6 4024869 150(2)
_diffrn_ambient_environment 1.918 1 1.00 1 8 4115742 {text} 544 1504350 {line} 8506 1507947 {word}
_diffrn_ambient_pressure 0.801 1 1.00 1 110 1506829 {line} 5 1516355 {word} 3666 1000007 {0 - 3.78e+09}
_diffrn_ambient_pressure_gPa 0.001 1 1.00 1 1 2100635 0.0001 1 2100638 1.46 1 2100641 2.59 1 2100644 5.57 1 2100647 8.28
_diffrn_ambient_temperature 85.533 1 1.00 1 4 1507277 {line} 21 2001739 {word} 403864 1000000 {0 - 3548}
_diffrn_ambient_temperature_device 0.000 1 1.00 1 1 7704667 Oxford Cryostream 800
_diffrn_ambient_temperature_k 0.000 1 1.00 1 1 4317544 203
_diffrn_ambient_tempybature 0.000 1 1.00 1 1 4332948 293(2)
_diffrn_attenuator_code 0.005 1 1.27 4 19 1505699 1 2 4321857 13.364 2 1505699 2 2 1505699 3 2 1505699 4 1 4323408 yes
_diffrn_attenuator_scale 0.005 1 1.27 4 28 1505699 {0 - 91.4}
_diffrn_crystal_support 0.000 1 1.00 1 2 4114274 glass capillary
_diffrn_crystal_treatment 0.073 1 1.00 1 198 1504972 {text} 146 1540562 {line}
_diffrn_delta_phi 0.000 1 1.00 1 1 8100923 0.8
_diffrn_detector 6.224 1 1.00 1 49 1517954 {text} 27399 1100153 {line} 1944 1502195 {word}
_diffrn_detector_area_device_type 0.000 1 1.00 1 1 4114081 CCD camera
_diffrn_detector_area_eff_mos_spread 0.000 1 1.00 1 1 4318537 0.005
_diffrn_detector_area_expos_time 0.000 1 1.00 1 1 4318537 26.00_min
_diffrn_detector_area_phi_end 0.000 1 1.00 1 1 4318537 180.0
_diffrn_detector_area_phi_incr 0.000 1 1.00 1 1 4318537 1.5
_diffrn_detector_area_phi_start 0.000 1 1.00 1 1 4318537 0.0
_diffrn_detector_area_plate_dist 0.000 1 1.00 1 1 4318537 60.0_mm
_diffrn_detector_area_profile_max 0.000 1 1.00 1 1 4318537 23
_diffrn_detector_area_profile_min 0.000 1 1.00 1 1 4318537 9
_diffrn_detector_area_resol_max 0.000 1 1.00 1 2 7214085 1.33
_diffrn_detector_area_resol_me 0.000 1 1.00 1 1 7025581 14.63
_diffrn_detector_area_resol_mea 0.000 1 1.00 1 1 4036775 8.3660
_diffrn_detector_area_resol_mean 25.300 1 1.00 1 75 1506722 {text} 2741 1502261 {line} 1910 1100771 {word} 114741 1000005 {-2.6 - 1.04858e+06}
_diffrn_detector_crystal_distance 0.000 1 1.00 1 2 7012830 70 mm
_diffrn_detector_details 0.007 1 1.00 1 27 1519661 {text} 4 1100964 {line}
_diffrn_detector_distance-ccd 0.022 1 1.00 1 102 1502584 {4.89 - 11.95}
_diffrn_detector_dtime 0.090 1 1.00 1 367 1503680 1.195 43 1550069 0.000 10 7240684 0.004 2 4023366 1.215 1 7229459 0.004 (microseconds) 1 4078797 0.690(10)
_diffrn_detector_slit_type_mrl 0.000 1 1.00 1 1 1540595 none
_diffrn_detector_to_crystal_mrl 0.000 1 1.00 1 1 1540595 5.5000 cm
_diffrn_detector_type 4.662 1 1.00 1 69 1517694 {text} 8891 1100964 {line} 13052 1100153 {word}
_diffrn_diffrn_measurement_device_type 0.000 1 1.00 1 1 4508206 Nonius cad4
_diffrn_low_temperature 0.000 1 1.00 1 2 4503914 120(2)
_diffrn_me 0.000 1 1.00 1 1 7210582 asured_fraction_theta_max
_diffrn_mea_surement_method 0.000 1 1.00 1 1 7154909 \f and \w scans
_diffrn_measd_fraction_theta_full 0.001 1 1.00 1 2 8101787 0.997 1 8102168 0.919 1 8101786 0.989 1 8102169 0.996
_diffrn_measd_fraction_theta_max 0.002 1 1.00 1 2 8101787 0.997 1 8102168 0.919 1 8101777 0.953 1 8101983 0.982 1 8101776 0.987 1 8101786 0.989 1 8102169 0.996
_diffrn_measured_fract_theta_max 0.000 1 1.00 1 1 4077823 99.6
_diffrn_measured_fraction 0.008 1 1.00 1 8 7000519 0.990 6 4084113 0.997 4 7000635 0.995 3 4345983 0.982 2 4345985 0.980 2 7000517 0.981 2 7013460 0.994 2 7015066 0.996 2 4084114 0.998 1 7013459 0.969 1 4345984 0.975 1 7000520 0.983 1 7000521 0.984 1 7015064 0.986 1 7015065 0.993
_diffrn_measured_fraction_t=d3eta_max 0.000 1 1.00 1 1 7009302 0.996
_diffrn_measured_fraction_theta_full 79.147 1 1.00 1 230 1504370 {line} 8 1502139 {word} 373495 1000004 {0 - 118551}
_diffrn_measured_fraction_theta_fuo27 0.000 1 1.00 1 1 4324245 0.995
_diffrn_measured_fraction_theta_max 79.145 1 1.00 1 1 2007673 {text} 17 1504370 {line} 3 7036784 {word} 373703 1000001 {0 - 140}
_diffrn_measured_fraction_theta_min 0.000 1 1.00 1 1 4508324 2.08
_diffrn_measured_temperature 0.000 1 1.00 1 1 4500965 -50
_diffrn_measured_theta_max 0.000 1 1.00 1 1 7114930 30.24
_diffrn_measurement.details 0.004 1 1.00 1 2 7705663 1.00 degrees, 1.0 sec, detector distance 100.00 mm 1 7127715 2.00 degrees, 0.30 sec, detector distance 66.00 mm 1 1547744 1.00 degrees, -1.0 sec, detector distance 74.82 mm 1 7155446 2.00 degrees, -1.0 sec, detector distance 75.02 mm 1 7049137 1.00 degrees, 6.4 sec, detector distance 200.00 mm 1 4132029 1.00 degrees, 5.3 sec, detector distance 200.01 mm 1 7119442 1.00 degrees, 4.7 sec, detector distance 55.00 mm 1 7118400 1.00 degrees, 4.2 sec, detector distance 75.00 mm 1 4118449 1.00 degrees, 30.0 sec, detector distance 75.00 mm 1 7705661 1.00 degrees, 3.0 sec, detector distance 100.00 mm 1 4130408 1.00 degrees, 21.1 sec, detector distance 75.00 mm 1 7119443 1.00 degrees, 20.0 sec, detector distance 74.895 mm 1 7705664 1.00 degrees, 2.0 sec, detector distance 80.00 mm 1 4130411 1.00 degrees, 12.0 sec, detector distance 75.00 mm 1 7119441 1.00 degrees, 10.0 sec, detector distance 96.00 mm 1 7118401 1.00 degrees, 1.7 sec, detector distance 55.00 mm 1 7705662 1.00 degrees, 1.0 sec, detector distance 80.00 mm
_diffrn_measurement.device 0.000 1 1.00 1 1 4514745 Bruker Kappa APEX II CCD
_diffrn_measurement.method 0.002 1 1.00 1 9 1547744 \w scans
_diffrn_measurement_ 0.000 1 1.00 1 2 2108457 phi scan
_diffrn_measurement_details 4.237 1 1.00 1 18511 1501666 {text} 1320 1100153 {line} 175 1502584 {word} 2 4025390 {310 - 606}
_diffrn_measurement_detector 0.004 1 1.00 1 19 4313290 CCD area detector 1 4319150 area detector
_diffrn_measurement_detector_type 0.003 1 1.00 1 16 2021898 PHOTON 100 CMOS
_diffrn_measurement_device 12.983 1 1.00 1 2492 1009024 {text} 52912 1000000 {line} 5904 1000024 {word}
_diffrn_measurement_device-type 0.012 1 1.00 1 20 1515493 Bruker Kappa Apex2 14 4074671 Enraf-nonius DIP2000 5 7027002 Enraf-nonius DIP2000 4 4074669 Nonius KappaCCD 3 7025137 Enraf-Nonius CAD4 2 4319275 Enraf-nonius DIP2000 2 4502077 Oxford Diffraction XCALIBUR 2 1502956 Rigaku Saturn724+ 1 7212513 Bruker SMART 1 7204033 Bruker SMART CCD Area Detector 1 7027272 Stoe IPDS
_diffrn_measurement_device_details 0.207 1 1.00 1 752 1502956 {text} 227 1516003 {line}
_diffrn_measurement_device_t 0.000 1 1.00 1 1 7000508 Enraf Nonius CAD4
_diffrn_measurement_device_typ 0.000 1 1.00 1 1 7106999 Rigaku Mercury375R (2x2 bin mode) 1 4503997 Rigaku RAXIS-RAPID
_diffrn_measurement_device_type 74.609 1 1.00 1 8574 1100895 {text} 325466 1000001 {line} 18262 1100110 {word} 2 1505056 {0 - 8.366}
_diffrn_measurement_device_type   0.000 1 1.00 1 1 4038932 Dectris Pilatus 2M pixel-array photon-counting detector
_diffrn_measurement_device_type2 0.013 1 1.00 1 57 1540467 Rigaku AFC12 (Right) 3 4033904 Rigaku R-AXIS SPIDER IP 2 7056056 Rigaku AFC11
_diffrn_measurement_domega 0.013 1 1.00 1 47 4110002 0.30 6 4116932 1.1+0.35tg(theta) 4 4110004 0.50 1 7111085 0.3 1 4116017 0.3 1 4327673 0.7 + 0.35 tan q 1 4327672 1.0 + 0.35 tan q 1 7050468 1.0+0.35tg(theta) 1 7027482 1.5+0.35tg(theta)
_diffrn_measurement_frame_size-ccd 0.022 1 1.00 1 97 1502584 512 5 1504719 1024
_diffrn_measurement_frame_time-ccd 0.022 1 1.00 1 14 1506735 15 14 1504112 23 13 1502585 20 12 1503594 30 7 4064698 13 6 1507565 10 5 4072164 33 5 4023561 38 4 4118046 40 4 4024142 45 3 4000728 8 3 1502584 25 3 4118047 5 3 4072165 53 2 4103325 90 2 7105625 60 1 4025390 120 1 4000729 12
_diffrn_measurement_frame_width-ccd 0.022 1 1.00 1 47 1504112 0.3 20 1502584 -0.30 10 1503594 -0.5 8 1508201 -0.3 8 4023560 0.5 5 4000728 0.30 4 1518718 512 2 1508202 -0.299988 1 4112060 0.2 1 1506736 0.3000
_diffrn_measurement_frames_number 0.000 1 1.00 1 1 7012830 36 1 7012832 45
_diffrn_measurement_method 75.483 1 1.00 1 2902 1100139 {text} 274833 1000000 {line} 78649 1000001 {word} 46 1506361 {0 - 16.2141}
_diffrn_measurement_method        0.000 1 1.00 1 1 4038932 thin-slice \f and \w scans
_diffrn_measurement_method  0.004 1 1.00 1 18 4518296 &#x00C2;&#x00A0; &#x00C2;&#x00A0; &#x00C2;&#x00A0; \w scans
_diffrn_measurement_method\^a 0.002 1 1.00 1 11 7045120 \^A
_diffrn_measurement_method_special_details 0.000 1 1.00 1 1 4313398 {text}
_diffrn_measurement_mrthod 0.000 1 1.00 1 1 4310285 area detector
_diffrn_measurement_oscillation_angle 0.000 1 1.00 1 2 7012830 5
_diffrn_measurement_range 0.001 1 1.00 1 2 4076852 0.3 1 7009402 0.90
_diffrn_measurement_rtime 0.013 1 1.00 1 25 4110002 20 11 4110003 30 6 4505298 43 6 4327672 60 2 4503249 15 2 7114678 54 1 7009719 35 1 4327673 999 1 7027482 75 1 4116932 70 1 7011301 64.6 1 4311824 64 1 7027480 10 1 7011300 30.15 1 7203714 22 1 7011299 20.15 1 4110004 120
_diffrn_measurement_specimen_support 0.792 1 1.00 1 40 1550200 {text} 2824 1502419 {line} 875 1503608 {word}
_diffrn_measurement_specimen_suppport 0.015 1 1.00 1 63 1547384 magnetic support whith 10 micron nylon fiber cryoloop 4 4311857 magnetic support whith 20 micron nylon fiber cryoloop 4 1547388 magnetic support whith MicroMount
_diffrn_measurement_time 0.001 1 1.00 1 2 4076852 10 1 7009402 constant; 15.00&^o&0/min. in &Gw
_diffrn_measurement_total_frames-ccd 0.022 1 1.00 1 102 1502584 {310 - 6040}
_diffrn_measurement_total_time-ccd 0.022 1 1.00 1 102 1502584 {5 - 54}
_diffrn_measurement_type 0.000 1 1.00 1 1 7114928 Bruker
_diffrn_measurment_method 0.001 1 1.00 1 3 7057378 \w scan
_diffrn_msd_fraction_theta_full 0.000 1 1.00 1 1 8101984 0.984 1 8101775 0.985
_diffrn_msd_fraction_theta_max 0.000 1 1.00 1 1 8101984 0.984 1 8101775 0.985
_diffrn_number_total 0.101 1 1.00 1 479 1506511 {0 - 91378}
_diffrn_orient_matrix_11 0.001 1 1.00 1 1 7008964 -0.01956 1 7008963 -0.04358 1 7010171 0.01560 1 7051280 0.04271 1 7010172 0.08971
_diffrn_orient_matrix_12 0.001 1 1.00 1 1 7008964 -0.01988 1 7051280 -0.07382 1 7010172 0.03103 1 7010171 0.03399 1 7008963 0.03912
_diffrn_orient_matrix_13 0.001 1 1.00 1 1 7010171 0.00286 1 7008963 0.01161 1 7051280 0.03253 1 7010172 0.03761 1 7008964 0.04558
_diffrn_orient_matrix_21 0.001 1 1.00 1 1 7008964 -0.00623 1 7010172 -0.02996 1 7051280 0.02109 1 7008963 0.02245 1 7010171 0.03925
_diffrn_orient_matrix_22 0.001 1 1.00 1 1 7010171 -0.01355 1 7008964 -0.06695 1 7051280 0.04282 1 7008963 0.05833 1 7010172 0.05877
_diffrn_orient_matrix_23 0.001 1 1.00 1 1 7008963 -0.01851 1 7008964 -0.02010 1 7010171 0.00018 1 7010172 0.01984 1 7051280 0.09206
_diffrn_orient_matrix_31 0.001 1 1.00 1 1 7008963 -0.03421 1 7051280 -0.07526 1 7010171 0.00040 1 7010172 0.00136 1 7008964 0.05651
_diffrn_orient_matrix_32 0.001 1 1.00 1 1 7008963 -0.01156 1 7008964 -0.01426 1 7010172 0.00059 1 7010171 0.00072 1 7051280 0.00519
_diffrn_orient_matrix_33 0.001 1 1.00 1 1 7008963 -0.05411 1 7010171 -0.11168 1 7008964 0.03084 1 7051280 0.03835 1 7010172 0.09087
_diffrn_orient_matrix_UB_11 5.272 1 1.00 3 2 4110614 {word} 24918 1100690 {-0.380768 - 7.50015e+07}
_diffrn_orient_matrix_UB_12 5.272 1 1.00 3 2 4110614 {word} 24918 1100690 {-0.309915 - 0.395119}
_diffrn_orient_matrix_UB_13 5.266 1 1.00 3 2 4110614 {word} 24892 1100690 {-0.426512 - 0.291049}
_diffrn_orient_matrix_UB_21 5.271 1 1.00 3 2 4110614 {word} 24917 1100690 {-0.357604 - 4}
_diffrn_orient_matrix_UB_22 5.271 1 1.00 3 2 4110614 {word} 24917 1100690 {-0.363866 - 0.31583}
_diffrn_orient_matrix_UB_23 5.271 1 1.00 3 2 4110614 {word} 24916 1100690 {-0.284726 - 0.306859}
_diffrn_orient_matrix_UB_31 5.272 1 1.00 3 2 4110614 {word} 24918 1100690 {-0.386373 - 4}
_diffrn_orient_matrix_UB_32 5.272 1 1.00 3 2 4110614 {word} 24919 1100690 {-0.382891 - 0.400693}
_diffrn_orient_matrix_UB_33 5.272 1 1.00 3 1 7114897 {line} 2 4110614 {word} 24919 1100690 {-0.409925 - 48065}
_diffrn_orient_matrix_type 2.595 1 1.00 3 340 1503680 {text} 9942 1501708 {line} 2001 1100798 {word}
_diffrn_orient_matrix_ub_11 0.001 1 1.00 1 1 4000324 -0.068785 1 4000234 -0.069178 1 7100075 0.01 1 4000445 0.061076
_diffrn_orient_matrix_ub_12 0.001 1 1.00 1 1 4000234 -0.048703 1 4000445 -0.067692 1 7100075 0 1 4000324 0.09586
_diffrn_orient_matrix_ub_13 0.001 1 1.00 1 1 7100075 0 1 4000234 0.002288 1 4000324 0.008525 1 4000445 0.03999
_diffrn_orient_matrix_ub_21 0.001 1 1.00 1 1 4000445 -0.026221 1 7100075 0 1 4000234 0.036006 1 4000324 0.045536
_diffrn_orient_matrix_ub_22 0.001 1 1.00 1 1 4000324 -0.009661 1 4000445 -0.061034 1 4000234 -0.091855 1 7100075 0.01
_diffrn_orient_matrix_ub_23 0.001 1 1.00 1 1 4000445 -0.038 1 7100075 0 1 4000234 0.022427 1 4000324 0.073198
_diffrn_orient_matrix_ub_31 0.001 1 1.00 1 1 4000234 -0.004304 1 7100075 0 1 4000445 0.070846 1 4000324 0.092908
_diffrn_orient_matrix_ub_32 0.001 1 1.00 1 1 7100075 0 1 4000445 0.001391 1 4000234 0.014177 1 4000324 0.039239
_diffrn_orient_matrix_ub_33 0.001 1 1.00 1 1 4000324 -0.029011 1 4000445 -0.051335 1 7100075 0.01 1 4000234 0.153658
_diffrn_orient_refln_angle_chi 0.000 25 25.00 25 50 4319196 {-33.215 - 85.616}
_diffrn_orient_refln_angle_kappa 0.001 25 25.00 25 75 4319196 {-176.44 - 179.39}
_diffrn_orient_refln_angle_omega 0.000 25 25.00 25 25 7151244 {-4.63 - 29.28}
_diffrn_orient_refln_angle_phi 0.001 25 25.00 25 75 4319196 {-174.943 - 159.569}
_diffrn_orient_refln_angle_psi 0.000 25 25.00 25 50 4319196 {-0.059 - 0.643}
_diffrn_orient_refln_angle_theta 0.000 25 25.00 25 6 7151244 14.9800 5 7151244 12.3300 4 7151244 11.5800 4 7151244 11.5900 2 7151244 12.3200 1 7151244 12.3400 1 7151244 13.4600 1 7151244 14.9700 1 7151244 15.0000
_diffrn_orient_refln_index_h 0.001 25 25.00 25 11 4319196 5 9 7151244 1 8 4319196 -1 7 4319196 2 6 4319196 3 5 4319196 -5 5 7151244 4 4 4319196 6 4 4319196 -3 4 7151244 -4 2 4319196 9 2 7213251 0 2 4319196 -9 2 4319196 -10 1 4319196 10 1 4319196 -8 1 4319196 -2 1 4319196 7
_diffrn_orient_refln_index_k 0.001 25 25.00 25 8 7151244 2 7 4319196 -1 7 7151244 3 6 4319196 -5 6 7151244 5 6 4319196 4 6 4319196 0 6 4319196 1 5 4319196 -2 5 4319196 -3 3 4319196 -4 3 7213251 6 2 4319196 7 2 4319196 -8 1 4319196 -9 1 4319196 -7 1 4319196 -6
_diffrn_orient_refln_index_l 0.001 25 25.00 25 75 4319196 {-16 - 16}
_diffrn_oxdiff_ac3_digest_frames 0.043 1 1.00 1 202 1546411 {text}
_diffrn_oxdiff_ac3_digest_hkl 0.042 1 1.00 1 196 1546411 {text} 2 4134157 {word}
_diffrn_oxdiff_ac4_digest_frames 0.005 1 1.00 1 22 1557397 {text}
_diffrn_oxdiff_ac4_digest_hkl 0.001 1 1.00 1 7 7049470 {text}
_diffrn_oxdiff_digest_frames 0.062 1 1.00 1 291 1552450 {text}
_diffrn_oxdiff_digest_hkl 0.062 1 1.00 1 291 1552450 {text}
_diffrn_oxdiff_twin_id 0.034 2 2.08 4 160 1518063 1 160 1518063 2 10 1548043 3 2 1548043 4
_diffrn_oxdiff_twin_integration_method 0.017 1 1.00 1 79 1542914 simultaneous
_diffrn_oxdiff_twin_ratio 0.034 2 2.08 4 332 1518063 {0.0203 - 0.9797}
_diffrn_oxdiff_twin_reflns_isolated 0.034 2 2.08 4 332 1518063 {0 - 101312}
_diffrn_oxdiff_twin_reflns_overlapped 0.034 2 2.08 4 332 1518063 {28 - 150240}
_diffrn_phi_max 0.000 1 1.00 1 1 8100923 188
_diffrn_plate_measurement_time 0.000 1 1.00 1 1 8100923 14min
_diffrn_plate_number 0.000 1 1.00 1 1 8100923 235
_diffrn_pressure 0.003 1 1.00 1 1 2021861 0.18 GPa 1 2021862 0.49 GPa 1 2021853 0.69 1 2021863 0.98 1 2021864 1.34 GPa 1 2021854 1.5 1 2021858 16.43 1 2021865 2.1 1 2021866 2.39 GPa 1 2021855 2.69 1 2021859 20.27 1 2021856 4.56 1 2021857 7.4
_diffrn_radaition_monochromator 0.000 1 1.00 1 1 2311799 multilayer optics
_diffrn_radiarion_monochromator 0.000 1 1.00 1 1 7702808 graphite
_diffrn_radiation.monochromator 0.002 1 1.00 1 9 4033639 TRIUMPH curved--crystal 1 4514745 graphite 1 4087781 multilayer QUAZAR
_diffrn_radiation.type 0.000 1 1.00 1 1 4514745 Mo K\a
_diffrn_radiation_collimation 0.860 1 1.00 1 3122 1100139 {line} 109 1508316 {word} 832 1100925 {0.07 - 0.8}
_diffrn_radiation_details 0.001 1 1.00 1 5 7232044 {text}
_diffrn_radiation_detector 0.942 1 1.00 1 183 1516874 {text} 2603 1100139 {line} 1662 1501833 {word}
_diffrn_radiation_detector_dtime 0.003 1 1.00 1 10 4022321 3.5 2 7012514 1.195
_diffrn_radiation_filter_edge 0.001 1 1.43 2 6 4002661 1.4879 4 2108325 0.425
_diffrn_radiation_mo?chromator 0.000 1 1.00 1 2 4331546 graphite
_diffrn_radiation_monoc4romator 0.000 1 1.00 1 1 7236683 mirror
_diffrn_radiation_monochromador 0.002 1 1.00 1 8 4316623 graphite
_diffrn_radiation_monochromator 69.197 1 1.00 2 91 1506722 {text} 27066 1000006 {line} 299579 1000000 {word} 17 1561127 {0.50018 - 1.5406}
_diffrn_radiation_monochromator   0.000 1 1.00 1 1 4038932 double crystal silicon 111
_diffrn_radiation_monochromatoráá 0.000 1 1.00 1 1 4346186 QUAZAR multilayer optics
_diffrn_radiation_monochromator_ 0.000 1 1.00 1 1 4349232 silicon 111
_diffrn_radiation_monochrometor 0.001 1 1.00 1 3 7010643 graphite
_diffrn_radiation_monochromotor 0.000 1 1.00 1 1 4125321 silicon 111
_diffrn_radiation_polarisn_norm 0.197 1 1.00 1 724 1100153 0 137 1546202 270 32 1100139 90 18 1559081 -90 14 4321988 90.0 2 4313441 0.00 1 7028208 100(2)
_diffrn_radiation_polarisn_ratio 0.121 1 1.00 1 2 7104463 {line} 569 1100000 {-0.148 - 166}
_diffrn_radiation_probe 7.643 1 1.00 2 34782 1100000 x-ray 1245 1100167 neutron 25 1508970 electron 20 2021853 synchrotron 8 2108763 MLZ SR9B (hot source) 5 7242652 x-rays 2 4003656 X-rays 2 4088548 X-rays-AND-NEUTRONS 1 7707169 Helios Multi--layer Optic 1 2108392 Synchrotron 1 4119149 neutron,x-ray
_diffrn_radiation_source 56.140 1 1.00 1 174 1502715 {text} 262834 1000000 {line} 2088 1501776 {word}
_diffrn_radiation_source         'undulator, 0.000 1 1.00 1 1 4038932 Beamline I19, Diamond Light Source, RAL'
_diffrn_radiation_source_type 0.001 1 1.00 1 1 4313309 ChemMatCARS APS beamline sector 15 1 1559590 Enhance (Mo) X-ray Source 1 7040807 SLS BEAMLINE X06DA 1 7700945 SuperNova (Mo) X-ray Source
_diffrn_radiation_type 85.112 1 1.00 3 261 1512558 {text} 40372 1000001 {line} 361600 1000000 {word} 4 1516109 {1.54056 - 726.369}
_diffrn_radiation_type            0.000 1 1.00 1 1 4038932 synchrotron
_diffrn_radiation_wavelength 85.511 1 1.00 5 1 7110465 {text} 57 1000024 {line} 234 1100913 {word} 404120 1000000 {-1 - 2.95891}
_diffrn_radiation_wavelength.id 0.000 2 2.00 2 1 7229636 K\a1 1 7229636 K\a2
_diffrn_radiation_wavelength.wavelength 0.000 2 2.00 2 1 7229636 1.54059 1 7229636 1.54439
_diffrn_radiation_wavelength.wt 0.000 2 2.00 2 1 7229636 0.5 1 7229636 1.0
_diffrn_radiation_wavelength_details 0.006 1 1.00 1 9 1551308 Based on neutron time of flight 8 7240684 Zr absorption edge 3 4117904 11-ID-B Advanced Photon Source 2 7240688 Au L2 absorption edge 2 1504313 Time-of-Flight Neutron, HIPD, Lujan-LANSCE-Los Alamos 1 4117903 11-BM Advanced Photon Source 1 4129049 HB-2A, HFIR, ORNL 1 4129048 HB2A, HFIR, ORNL 1 4341975 High resolution synchrotron, 11-BM, APS, ANL 1 4341974 synchrotron and neutron, 11-BM , POWGEN
_diffrn_radiation_wavelength_determination 0.024 1 1.02 2 103 1547997 fundamental 10 7240684 estimated
_diffrn_radiation_wavelength_id 0.232 1 1.18 2 877 1501816 {word} 421 1501685 {0.71073 - 15197}
_diffrn_radiation_wavelength_wt 0.110 1 1.92 2 998 1100000 {0 - 1}
_diffrn_radiation_xray_symbol 0.148 1 1.00 2 593 1508313 K-L~3~ 77 1513453 K-L~2,3~ 26 1508316 Mo 3 4002661 Cu K-L~2~ 3 4002661 Cu K-L~3~ 1 1502284 K\a
_diffrn_radition_source 0.000 1 1.00 1 1 7121459 fine-focus sealed tube
_diffrn_raiation_monochromator 0.000 1 1.00 1 1 4084772 graphite
_diffrn_rdiation_source 0.000 1 1.00 1 1 7057384 Fine-focus sealed tube
_diffrn_refflns_theta_full 0.000 1 1.00 1 1 4342352 60
_diffrn_reffrns_number 0.000 1 1.00 1 1 4342352 393
_diffrn_reffrns_theta_max 0.000 1 1.00 1 1 4342352 60
_diffrn_refln_crystal_id 0.000 1 1.00 1 1 4023466 crystal1
_diffrn_refln_elapsed_time 0.001 1 1.00 1 5 4021500 0.1667 1 4116365 0.25
_diffrn_refln_index_h 0.033 1457 56765.99 431403 1 7705257 {text} 56 7705257 {word} 8741906 1558171 {-60 - 9999}
_diffrn_refln_index_k 0.033 1457 56765.99 431403 4 7705257 {text} 54 7705257 {word} 8741905 1558171 {-45 - 21825}
_diffrn_refln_index_l 0.033 1457 56765.99 431403 3 7241138 {text} 53 7705257 {word} 8741907 1558171 {-63 - 21825}
_diffrn_refln_intensity_net 0.031 1457 56912.19 431403 3 7241138 {text} 55 7705257 {word} 8309122 1558171 {-3261.69 - 999999}
_diffrn_refln_intensity_u 0.031 1457 56912.19 431403 3 7241138 {text} 52 7705257 {word} 8309125 1558171 {-61 - 36525.7}
_diffrn_refln_scale_group_code 0.008 4841 31905.76 155988 1180513 1559792 {-2 - 191}
_diffrn_refln_scan_mode 0.003 1 1.00 1 10 2100858 ot 1 7027326 om 1 7027327 omega
_diffrn_refln_scan_mode_backgd 0.003 1 1.00 1 14 4000021 mo 1 4300084 MO
_diffrn_refln_scan_rate 0.093 1 1.00 1 190 1503375 10 121 1502888 5 58 1504215 20 27 1503374 30 18 1546800 1 6 2100858 4.88 6 1550262 60 5 4124566 2 2 4517465 0.05 2 4117328 15 2 4119684 3 1 4025418 10.0 1 4517463 4 1 1505507 40 1 4131382 8
_diffrn_refln_scan_width 0.101 1 1.00 1 1 7115128 {word} 475 1502252 {0.3 - 2.64}
_diffrn_refln_wavelength 0.000 1 1.00 1 1 2108040 .90
_diffrn_refln_wavelength_id 0.000 1 1.00 1 1 4341388 neut
_diffrn_reflns.reduction_process 0.003 1 1.00 1 13 4033640 narrow--frame
_diffrn_reflns_2theta_max 0.003 1 1.00 1 3 4333664 150.00 3 1560610 160.00 3 7027276 24.99 3 7702395 25.00 1 7702396 25.05 1 7702398 25.15 1 7051011 48.4
_diffrn_reflns_2theta_min 0.001 1 1.00 1 3 1560610 10.00 3 4333664 30.00 1 7051011 2.9
_diffrn_reflns_Laue_measured_fraction_full 17.039 1 1.00 1 4 4035083 {line} 80453 1508696 {0 - 11}
_diffrn_reflns_Laue_measured_fraction_max 17.054 1 1.00 1 80528 1508696 {0 - 1.168}
_diffrn_reflns_av_R_equivalents 82.960 1 1.00 1 5 1555664 {text} 108 1100913 {line} 46 1100924 {word} 391579 1000000 {-2.082 - 42547.9}
_diffrn_reflns_av_\s 0.000 1 1.00 1 1 7114742 I/netI 0.027 1 7114743 I/netI 0.036
_diffrn_reflns_av__r_equivalents 0.000 1 1.00 1 1 7037292 0.0630
_diffrn_reflns_av__uneti/neti 0.000 1 1.00 1 1 7218049 0.0503
_diffrn_reflns_av_aveti/neti 0.000 1 1.00 1 1 7028704 0.1585
_diffrn_reflns_av_nueti/neti 0.001 1 1.00 1 1 7028809 0.0237 1 7028810 0.0309 1 7028811 0.0310 1 7055165 0.0743
_diffrn_reflns_av_r_eqivalents 0.000 1 1.00 1 1 7204609 0.0197
_diffrn_reflns_av_sigmaI/netI 54.087 1 1.00 1 12 1100913 {line} 255388 1000000 {0 - 2.1178e+06}