| 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
 1001
 1002
 1003
 1004
 1005
 1006
 1007
 1008
 1009
 1010
 1011
 1012
 1013
 1014
 1015
 1016
 1017
 1018
 1019
 1020
 1021
 1022
 1023
 1024
 1025
 1026
 1027
 1028
 1029
 1030
 1031
 1032
 1033
 1034
 1035
 1036
 1037
 1038
 1039
 1040
 1041
 1042
 1043
 1044
 1045
 1046
 1047
 1048
 1049
 1050
 1051
 1052
 1053
 1054
 1055
 1056
 1057
 1058
 1059
 1060
 1061
 1062
 1063
 1064
 1065
 1066
 1067
 1068
 1069
 1070
 1071
 1072
 1073
 1074
 1075
 1076
 1077
 1078
 1079
 1080
 1081
 1082
 1083
 1084
 1085
 1086
 1087
 1088
 1089
 1090
 1091
 1092
 1093
 1094
 1095
 1096
 1097
 1098
 1099
 1100
 1101
 1102
 1103
 1104
 1105
 1106
 1107
 1108
 1109
 1110
 1111
 1112
 1113
 1114
 1115
 1116
 1117
 1118
 1119
 1120
 1121
 1122
 1123
 1124
 1125
 1126
 1127
 1128
 1129
 1130
 1131
 1132
 1133
 1134
 1135
 1136
 1137
 1138
 1139
 1140
 1141
 1142
 1143
 1144
 1145
 1146
 1147
 1148
 1149
 1150
 1151
 1152
 1153
 1154
 1155
 1156
 1157
 1158
 1159
 1160
 1161
 1162
 1163
 1164
 1165
 1166
 1167
 1168
 1169
 1170
 1171
 1172
 1173
 1174
 1175
 1176
 1177
 1178
 1179
 1180
 1181
 1182
 1183
 1184
 1185
 1186
 1187
 1188
 1189
 1190
 1191
 1192
 1193
 1194
 1195
 1196
 1197
 1198
 1199
 1200
 1201
 1202
 1203
 1204
 1205
 1206
 1207
 1208
 1209
 1210
 1211
 1212
 1213
 1214
 1215
 1216
 1217
 1218
 1219
 1220
 1221
 1222
 1223
 1224
 1225
 1226
 1227
 1228
 1229
 1230
 1231
 1232
 1233
 1234
 1235
 1236
 1237
 1238
 1239
 1240
 1241
 1242
 1243
 1244
 1245
 1246
 1247
 1248
 1249
 1250
 1251
 1252
 1253
 1254
 1255
 1256
 1257
 1258
 1259
 1260
 1261
 1262
 1263
 1264
 1265
 1266
 1267
 1268
 1269
 1270
 1271
 1272
 1273
 1274
 1275
 1276
 1277
 1278
 1279
 1280
 1281
 1282
 1283
 1284
 1285
 1286
 1287
 1288
 1289
 1290
 1291
 1292
 1293
 1294
 1295
 1296
 1297
 1298
 1299
 1300
 1301
 1302
 1303
 1304
 1305
 1306
 1307
 1308
 1309
 1310
 1311
 1312
 1313
 1314
 1315
 1316
 1317
 1318
 1319
 1320
 1321
 1322
 1323
 1324
 1325
 1326
 1327
 1328
 1329
 1330
 1331
 1332
 1333
 1334
 1335
 1336
 1337
 1338
 1339
 1340
 1341
 1342
 1343
 1344
 1345
 1346
 1347
 1348
 1349
 1350
 1351
 1352
 1353
 1354
 1355
 1356
 1357
 1358
 1359
 1360
 1361
 1362
 1363
 1364
 1365
 1366
 1367
 1368
 1369
 1370
 1371
 1372
 1373
 1374
 1375
 1376
 1377
 1378
 1379
 1380
 1381
 1382
 1383
 1384
 1385
 1386
 1387
 1388
 1389
 1390
 1391
 1392
 1393
 1394
 1395
 1396
 1397
 1398
 1399
 1400
 1401
 1402
 1403
 1404
 1405
 1406
 1407
 1408
 1409
 1410
 1411
 1412
 1413
 1414
 1415
 1416
 1417
 1418
 1419
 1420
 1421
 1422
 1423
 1424
 1425
 1426
 1427
 1428
 1429
 1430
 1431
 1432
 1433
 1434
 1435
 1436
 1437
 1438
 1439
 1440
 1441
 1442
 1443
 1444
 1445
 1446
 1447
 1448
 1449
 1450
 1451
 1452
 1453
 1454
 1455
 1456
 1457
 1458
 1459
 1460
 1461
 1462
 1463
 1464
 1465
 1466
 1467
 1468
 1469
 1470
 1471
 1472
 1473
 1474
 1475
 1476
 1477
 1478
 1479
 1480
 1481
 1482
 1483
 1484
 1485
 1486
 1487
 1488
 1489
 1490
 1491
 1492
 1493
 1494
 1495
 1496
 1497
 1498
 1499
 1500
 1501
 1502
 1503
 1504
 1505
 1506
 1507
 1508
 1509
 1510
 1511
 1512
 1513
 1514
 1515
 1516
 1517
 1518
 1519
 1520
 1521
 1522
 1523
 1524
 1525
 1526
 1527
 1528
 1529
 1530
 1531
 1532
 1533
 1534
 1535
 1536
 1537
 1538
 1539
 1540
 1541
 1542
 1543
 1544
 1545
 1546
 1547
 1548
 1549
 1550
 1551
 1552
 1553
 1554
 1555
 1556
 1557
 1558
 1559
 1560
 1561
 1562
 1563
 1564
 1565
 1566
 1567
 1568
 1569
 1570
 1571
 1572
 1573
 1574
 1575
 1576
 1577
 1578
 1579
 1580
 1581
 1582
 1583
 1584
 1585
 1586
 1587
 1588
 1589
 1590
 1591
 1592
 1593
 1594
 1595
 1596
 1597
 1598
 1599
 1600
 1601
 1602
 1603
 1604
 1605
 1606
 1607
 1608
 1609
 1610
 1611
 1612
 1613
 1614
 1615
 1616
 1617
 1618
 1619
 1620
 1621
 1622
 1623
 1624
 1625
 1626
 1627
 1628
 1629
 1630
 1631
 1632
 1633
 1634
 1635
 1636
 1637
 1638
 | 
ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
³ THE.2020.WEB.AND.WEBRIP.SD.HD.X264.UHD.X265.RULESET.v2.0-WDX                 ³
 ³                                                                              ³
 ³ High Definition x264/H264 and Ultra High Definition x265/H265 WEB and WEBRip ³
 ³ Standards                                                                    ³
 ³ Version 2.0 - 2020-05-13                                                     ³
 ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
 ³                                                                              ³
 ³ [ Intro ]                                                                    ³
 ³ The landscape of the WEB scene has changed in the last four years.           ³
 ³ Subsequently, the ability to defeat DRM has become ubiquitous.               ³
 ³ What were once rules written around the assumption that capturing and        ³
 ³ transcoding would be more commonplace than lossless downloading have         ³
 ³ naturally become increasingly out of date.                                   ³
 ³                                                                              ³
 ³ HDTV is still slowly, but surely, being replaced by WEB. Not just in         ³
 ³ quality, but with more and more providers transitioning to streaming at      ³
 ³ airtime, and some even putting entire seasons up days/weeks before airtime.  ³
 ³                                                                              ³
 ³ Transcoding only for crop has become a burden, and only serves to damage the ³
 ³ section.                                                                     ³
 ³ Internals have been abused with rampant technical flaws, lesser quality and  ³
 ³ identical files.                                                             ³
 ³ While UHD and HDR streams were but an afterthought four years ago, they have ³
 ³ now become a daily occurrence with groups left unsure of how to release      ³
 ³ them.                                                                        ³
 ³                                                                              ³
 ³ Worst of all, with an almost endless array of web sources available          ³
 ³ simultaneously, groups continuously pick the first to appear, which, more    ³
 ³ often than not, is the worst possible quality.                               ³
 ³                                                                              ³
 ³ This update will address all these issues and more, by taking one large leap ³
 ³ forward and no steps back.                                                   ³
 ³                                                                              ³
 ³ Compliance with this document is optional as of its pre date, and mandatory  ³
 ³ as of 2020-05-20 00:00:00 UTC (1589932800 Unix time).                        ³
 ³                                                                              ³
 ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
 ³                                                                              ³
 ³ [ Recommended ]                                                              ³
 ³ It is recommended to view the unformatted version of this ruleset bundled    ³
 ³ within this release.                                                         ³
 ³                                                                              ³
 ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
 ³                                                                              ³
 ³ [ Ruleset Structure ]                                                        ³
 ³ Rules listed under untouched or transcoded labelled sections only apply to   ³
 ³ releases of that type and supersede any similar rule mentioned elsewhere.    ³
 ³ e.g. Rule 8.1 defines SD as resolutions with a maximum horizontal display of ³
 ³ 720 pixels, unless the release is considered untouched, in which case rule   ³
 ³ 1.6 applies.                                                                 ³
 ³                                                                              ³
 ³ 1) [ Untouched: WEB.H264 / WEB.H265 ]                                        ³
 ³     1.1) Untouched releases must be considered as anything that has been     ³
 ³          losslessly downloaded by official (offered) or unofficial           ³
 ³          (backdoor) methods.                                                 ³
 ³         1.1.1) Untouched video streams must be in the H.264/MPEG-4 AVC or    ³
 ³                H.265/HEVC codec. See exception in 1.5.1.                     ³
 ³     1.2) Source video and audio streams must be left as obtained from the    ³
 ³          source.                                                             ³
 ³     1.3) Untouched video streams with, and without, x264/x265 headers must   ³
 ³          be tagged as WEB.H264 and WEB.H265 respectively.                    ³
 ³         1.3.1) HEVC/H265 may only be used when the source does not offer a   ³
 ³                H264 stream in situations it is used any untouched sections   ³
 ³                referring to H264/x264 must be considered as H265/x265.       ³
 ³     1.4) Transcoding untouched files must only occur if files do not meet    ³
 ³          the standards and specifications listed in this section, and must   ³
 ³          only be a last resort.                                              ³
 ³         1.4.1) Any transcoding of untouched files must follow the            ³
 ³                transcoding standards - see sections marked as 'Transcoded'.  ³
 ³         1.4.2) Transcoding must be done from files of the highest resolution ³
 ³                and bitrate offered.                                          ³
 ³             1.4.2.1) 720p/1080p and 1080p/2160p streams are considered of    ³
 ³                      equal value, unless DRM protection levels of            ³
 ³                      1080p/2160p are laxed to 720p levels.                   ³
 ³                          e.g. 2160p is protected at the same laxed level as  ³
 ³                          720p.                                               ³
 ³                              e.g. 1080p is protected at the same laxed level ³
 ³                              as 720p.                                        ³
 ³         1.4.3) Transcoding may occur when correcting a technical flaw.       ³
 ³                    e.g. Decimating a source with duplicates every 5th frame. ³
 ³         1.4.4) In situations where a target resolution is not offered by any ³
 ³                lossless source, or the resolution offered by any source does ³
 ³                not meet the minimum resolution requirements, transcoding     ³
 ³                from the highest resolution and bitrate offered is allowed.   ³
 ³                However, if at least one source can provide the correct       ³
 ³                resolution, transcoding is not allowed.                       ³
 ³                    e.g. If 1080p and 720p can be retrieved from multiple     ³
 ³                    sources, but SD cannot be retrieved from any source,      ³
 ³                    transcoding the 1080p to SD is allowed.                   ³
 ³         1.4.5) If the untouched file does not contain any technical flaws    ³
 ³                and meets the minimum standards required, transcoding to      ³
 ³                create any WEBRip is not allowed.                             ³
 ³                    e.g. 1080p.WEB.H264 -> 720p.WEBRip.x264.                  ³
 ³             1.4.5.1) When transcoding video for a valid reason, audio must   ³
 ³                      not be transcoded unless necessary and be included as   ³
 ³                      is and vice versa.                                      ³
 ³                          e.g. Video contains dupes and must be decimated,    ³
 ³                          audio is fine. Video must be re-encoded but the     ³
 ³                          audio must be included as is.                       ³
 ³                 1.4.5.1.1) Except for SD audio which must either be an       ³
 ³                            untouched track respecting rule 2.2 or a          ³
 ³                            transcoded track from the highest quality audio   ³
 ³                            track respecting rule 5.6.2.                      ³
 ³     1.5) Untouched video streams which do not use an AVC or HEVC codec must  ³
 ³          be transcoded and follow the transcoding standards, see section 3.  ³
 ³         1.5.1) Except in very rare cases VP9/AV1 may be used, only when the  ³
 ³                source does not offer a H264/H265 stream.                     ³
 ³             1.5.1.1) Any untouched sections referring to H264/x264 must be   ³
 ³                      considered as VP9 or AV1.                               ³
 ³             1.5.1.2) Transcoding from either of these codecs, except when    ³
 ³                      correcting technical flaws, is not allowed.             ³
 ³     1.6) Standard definition (SD) refers to a resolution with a horizontal   ³
 ³          minimum of 720 pixels, or a resolution which does not exceed the    ³
 ³          specifications of 720p, see rule 8.2.                               ³
 ³         1.6.1) If all sources provide standard definition resolutions which  ³
 ³                fall below the above minimum, transcoding from the highest    ³
 ³                available resolution is allowed, see rule 1.4.4.              ³
 ³         1.6.2) Except in situations where only one source has the file on    ³
 ³                offer at a specific resolution. If the resolution of the file ³
 ³                falls below the above minimum, the file may still be          ³
 ³                released. However, the NFO must state why the resolution does ³
 ³                not meet the minimum.                                         ³
 ³     1.7) In rare cases, a resolution exceeding the specifications outlined   ³
 ³          in rules 1.6, 8.2, 8.3 and 8.4 is allowed when the only available   ³
 ³          stream offered for the target resolution exceeds limitations due to ³
 ³          a reasonable circumstance.                                          ³
 ³              e.g. Streaming provider offers 720p only at 1392x660 due        ³
 ³              maintaining AR while offering a cropped stream.                 ³
 ³         1.7.1) The NFO must state why the resolution exceeds the maximum.    ³
 ³     1.8) Must use the highest available bitrate offered by the source for    ³
 ³          that resolution.                                                    ³
 ³              e.g. Releasing a 720p at 4,000 Kbps bitrate, when a 720p at     ³
 ³              8,000 Kbps bitrate is offered is not allowed.                   ³
 ³     1.9) Retaining black borders (i.e. needs cropping) is not a technical    ³
 ³          flaw. Transcoding only to perform cropping is not allowed.          ³
 ³         1.9.1) Container level cropping is not allowed.                      ³
 ³         1.9.2) When transcoding to fix another valid technical flaw (e.g.    ³
 ³                decimating duplicates), cropping must be applied if           ³
 ³                necessary.                                                    ³
 ³     1.10) VFR (Variable Frame Rate) methods are allowed only if present in   ³
 ³           the original source.                                               ³
 ³         1.10.1) If CFR (Constant Frame Rate) can be used when remuxing and   ³
 ³                 does not result in playback issue, CFR must be used.         ³
 ³             1.10.1.1) FPS values stored in the video bitstream must be       ³
 ³                       corrected when remuxing. MKVToolnix with '--fix-       ³
 ³                       bitstream-timing-information' enabled is the           ³
 ³                       recommended method.                                    ³
 ³     1.11) Trimming unrelated footage (see rule 7.7) must be done losslessly  ³
 ³           via keyframe intervals (GOP). MKVToolnix is the recommended tool.  ³
 ³         1.11.1) If unrelated footage cannot be removed via this method,      ³
 ³                 transcoding a maximum of one GOP per cut point is allowed    ³
 ³                 and the release must still be tagged WEB. VideoRedo is the   ³
 ³                 recommended tool.                                            ³
 ³     1.12) Incorrect pixel aspect ratio (PAR), or a non-square sample aspect  ³
 ³           ratio (SAR), must be fixed using the correct display aspect ratio  ³
 ³           (DAR) set at a container level (--aspect-ratio). MKVToolnix is the ³
 ³           recommended tool.                                                  ³
 ³               e.g. A video stream with a non-square SAR must specify the     ³
 ³               correct DAR when muxing.                                       ³
 ³     1.13) Releases with a non-square SAR are not considered technically      ³
 ³           flawed.                                                            ³
 ³         1.13.1) However, a source which provides files with a square SAR     ³
 ³                 will trump an equivalent file with a non-square SAR. It is   ³
 ³                 recommended to use a source which provides files with a      ³
 ³                 square SAR.                                                  ³
 ³         1.13.2) In situations where a source initially provides a non-square ³
 ³                 SAR file and later updates with a square SAR file, the       ³
 ³                 initial release with a non-square SAR is considered of lower ³
 ³                 quality and a technical flaw.                                ³
 ³                     e.g. Release A: 960x720, SAR: 4:3, DAR: 16:9.            ³
 ³                     Release B: 1280x720, SAR: 1:1, DAR: 16:9.                ³
 ³                     Both releases are considered as 720p.                    ³
 ³                     If Release A is first: Release A remains unnuked and is  ³
 ³                     a valid release until Release B is released. Release B   ³
 ³                     then propers Release A.                                  ³
 ³                     If Release B is first: Release A dupes Release B.        ³
 ³                                                                              ³
 ³ 2) [ Untouched: Audio ]                                                      ³
 ³     2.1) Must use the original audio track offered by the source.            ³
 ³     2.2) Standard definition releases must only contain an audio track with  ³
 ³          a maximum of 2.0 channels.                                          ³
 ³         2.2.1) Except where the only available audio track on offer contains ³
 ³                more than 2.0 channels. The NFO must mention why an audio     ³
 ³                track with more than 2.0 channels was used.                   ³
 ³         2.2.2) In situations where a source provides two audio tracks, a 2.0 ³
 ³                and 5.1 track, the 2.0 audio track must be used.              ³
 ³         2.2.3) If a source provides identical channel audio tracks using two ³
 ³                different codecs, it is at the discretion of the group which  ³
 ³                track is used. It is recommended to use the smaller file.     ³
 ³                    e.g. A source offers AC3 2.0 and AAC 2.0, the group may   ³
 ³                    choose to remux the AC3 or AAC.                           ³
 ³     2.3) High Definition releases must use the highest available audio       ³
 ³          format and quality offered by the source.                           ³
 ³         2.3.1) Highest quality must determined by all characteristics of an  ³
 ³                audio track in this order: positional metadata (e.g. Atmos),  ³
 ³                channel count, codec and bitrate.                             ³
 ³                    e.g. 576 Kbps, 5.1 E-AC3 w/ Atmos > 640 Kbps, 5.1 AC3 >   ³
 ³                    2.0 E-AC3.                                                ³
 ³                        e.g. 385 Kbps, 5.1 AC3 > 128 Kbps, 5.1 E-AC3          ³
 ³                            e.g. 445 Kbps 5.1 AAC > 384 Kbps, 5.1 E-AC3       ³
 ³         2.3.2) In situations where a lesser audio format is offered for      ³
 ³                larger resolutions in comparison to lower resolutions, groups ³
 ³                must use the highest available audio format from all          ³
 ³                resolutions.                                                  ³
 ³                    e.g. A source provides an AC3 5.1 track for SD            ³
 ³                    resolutions, but an AAC 2.0 track for 720p/1080p. The AC3 ³
 ³                    5.1 track must be used for 720p/1080p resolutions.        ³
 ³         2.3.3) If using the highest available audio format results in a      ³
 ³                technical flaw (e.g. sync issues or glitches), minor          ³
 ³                adjustments to the audio track may be applied. If groups are  ³
 ³                unable to correct any flaws, the original audio track must be ³
 ³                used.                                                         ³
 ³                                                                              ³
 ³ 3) [ Transcoded: WEBRip.x264 / WEBRip.x265 ]                                 ³
 ³     3.1) Transcoded releases should be considered as anything that has been  ³
 ³          captured or encoded by a group to a lesser format or quality        ³
 ³          (lossy).                                                            ³
 ³     3.2) Transcoded releases must be tagged as WEBRip.x264/x265.             ³
 ³     3.3) Streams must be captured at the highest available resolution and    ³
 ³          bitrate offered.                                                    ³
 ³              e.g. Source offers 2160p, 1080p and 720p streams. Using         ³
 ³              anything but the 2160p stream is not allowed.                   ³
 ³         3.3.1) Streams must not have any degradation in quality throughout   ³
 ³                the capture, and releases with drops to a lower resolution or ³
 ³                bitrate is considered a technical flaw.                       ³
 ³         3.3.2) Audio must be captured in the highest format offered by the   ³
 ³                source stream, not what the capturing device is capable of.   ³
 ³                This includes channel count and bitrate offered.              ³
 ³                    e.g. If a Netflix show lists a 5.1 track, the resultant   ³
 ³                    capture and release should also contain a 5.1 audio       ³
 ³                    track.                                                    ³
 ³     3.4) Captures should be done at the native broadcast framerate of the    ³
 ³          source.                                                             ³
 ³         3.4.1) Captures from devices which are unable to output a native     ³
 ³                format must be restored to the original framerate.            ³
 ³         3.4.2) If captures cannot be completely restored to their native     ³
 ³                framerate, it is considered a technical flaw.                 ³
 ³                    e.g. A single dupe frame every 1000 or blended/ghost      ³
 ³                    frames due to mangling from the streaming device.         ³
 ³     3.5) Captures should be done at the native colour space of the source    ³
 ³          (e.g. YUV or RGB), and manual corrections should be made to achieve ³
 ³          an output near-identical to the source.                             ³
 ³     3.6) Capture software and hardware which introduces video cropping       ³
 ³          greater than 2 pixels on any side is not allowed, and is considered ³
 ³          a technical flaw.                                                   ³
 ³     3.7) Final resolution must maintain the same aspect ratio as the source  ³
 ³          after cropping and kept at mod 2.                                   ³
 ³         3.7.1) Sources must have all black borders cropped to the widest     ³
 ³                frame.                                                        ³
 ³         3.7.2) The same aspect ratio as calculated from the source must be   ³
 ³                used, see rule 8.12.                                          ³
 ³     3.8) If the video is being transcoded from an untouched source (rule     ³
 ³          1.4.4 and 1.4.5), the NFO must state the reason for transcoding.    ³
 ³         3.8.1) If a technical flaw is present that is being rectified by     ³
 ³                transcoding (rule 1.4.3), the flaw must also be included with ³
 ³                the reason for transcoding.                                   ³
 ³                    e.g. A file from 2 lossless providers both have the same  ³
 ³                    interlacing flaw.                                         ³
 ³                    The flaw: Interlaced video.                               ³
 ³                    The reason: No other WEB.H264 provider has a correctly    ³
 ³                    deinterlaced file.                                        ³
 ³                                                                              ³
 ³ 4) [ Transcoded: Video Codec ]                                               ³
 ³     4.1) Video must be:                                                      ³
 ³         4.1.1) H.265/MPEG-H HEVC encoded with x265 10-bit for SD/720p/1080p  ³
 ³                HDR and 2160p SDR/HDR content.                                ³
 ³         4.1.2) H.264/MPEG-4 AVC encoded with x264 8-bit for SD, 720p and     ³
 ³                1080p SDR content.                                            ³
 ³         4.1.3) Custom builds of x264/x265 are allowed and must be based off  ³
 ³                the current x264/x265 codebase. e.g. tMod, kMod.              ³
 ³     4.2) x264/x265 headers must remain intact and must not be modified or    ³
 ³          removed.                                                            ³
 ³     4.3) x264/x265 must be kept up to date, with a maximum allowance, or     ³
 ³          grace period, of 60 days before groups are required to update to    ³
 ³          the latest revision.                                                ³
 ³         4.3.1) The official x264 git repository is the only reference for    ³
 ³                determining the current revision:                             ³
 ³                https://code.videolan.org/videolan/x264/tree/stable           ³
 ³         4.3.2) The official x265 git repository is the only reference for    ³
 ³                determining the current revision:                             ³
 ³                https://bitbucket.org/multicoreware/x265/wiki/Home            ³
 ³             4.3.2.1) Until such a time as MulticoreWare implement official   ³
 ³                      revisional building, 3rd party builds (e.g. self-       ³
 ³                      compiles, http://msystem.waw.pl/x265 or                 ³
 ³                      https://builds.x265.eu) can be used and must be kept up ³
 ³                      to date respecting 4.3.                                 ³
 ³         4.3.3) The 60 day grace period must only be applied at pre time, not ³
 ³                the tagged encoded date.                                      ³
 ³         4.3.4) The grace period is only applicable to the revision preceding ³
 ³                the latest update and does not reset active grace periods of  ³
 ³                preceding revisions.                                          ³
 ³                    e.g. 2016-01-01: Revision A is used.                      ³
 ³                    2016-01-02: Revision B is committed, 60-day grace period  ³
 ³                    begins for revision A.                                    ³
 ³                    2016-01-05: Revision C is committed, 60-day grace period  ³
 ³                    begins for revision B.                                    ³
 ³                    2016-03-02: Revision A is no longer allowed, Revision B   ³
 ³                    or C may be used.                                         ³
 ³                    2016-03-05: Revision B is no longer allowed, Revision C   ³
 ³                    must be used.                                             ³
 ³     4.4) Segmented encoding is not allowed.                                  ³
 ³     4.5) Constant Rate Factor (--crf) must be used.                          ³
 ³         4.5.1) Decimal values may be used.                                   ³
 ³         4.5.2) Starting with an initial value of 16 or 14 (for especially    ³
 ³                compressible sources) for 2160p, 17 for 720p/1080p and 19 for ³
 ³                SD is recommended.                                            ³
 ³     4.6) While the encoded video stream bitrate exceeds x percent (where x   ³
 ³          is defined below) of the y (where y is defined below) resolution    ³
 ³          source video stream bitrate, the CRF value must be incremented by 1 ³
 ³          or 0.1, until it does not.                                          ³
 ³         4.6.1) 2160p                                                         ³
 ³             4.6.1.1) 20% for SD.                                             ³
 ³             4.6.1.2) 40% for 720p.                                           ³
 ³             4.6.1.3) 60% for 1080p.                                          ³
 ³             4.6.1.4) 98% for 2160p.                                          ³
 ³         4.6.2) 1080p                                                         ³
 ³             4.6.2.1) 40% for SD.                                             ³
 ³             4.6.2.2) 70% for 720p.                                           ³
 ³             4.6.2.3) 98% for 1080p.                                          ³
 ³         4.6.3) 720p                                                          ³
 ³             4.6.3.1) 60% for SD.                                             ³
 ³             4.6.3.2) 98% for 720p.                                           ³
 ³         4.6.4) SD                                                            ³
 ³             4.6.4.1) 98% for SD.                                             ³
 ³         4.6.5) When the source codec is HEVC is being transcoded to AVC, 40% ³
 ³                of the source bitrate must be added to the video stream       ³
 ³                bitrate, to account for HEVC's 40-50% improvement over AVC.   ³
 ³                    e.g. Transcoding 2160p SDR with a bitrate of 15,000 Kbps  ³
 ³                    to WEBRiP.1080p SDR - in this case, 40% of 15,000 Kbps is ³
 ³                    6,000. The bitrate used for calculations is now 21,000    ³
 ³                    Kbps.                                                     ³
 ³     4.7) Use of 2-pass is accepted for all resolutions. However, this method ³
 ³          should be used only in extreme cases and not as a primary           ³
 ³          replacement for CRF methods. e.g. If the source contains an         ³
 ³          excessive amount of grain or black and white scenes.                ³
 ³         4.7.1) The NFO must provide sufficient detailed evidence of 2-pass   ³
 ³                producing a visual improvement, bitrate or file size          ³
 ³                advantage over CRF in regards to the source used.             ³
 ³                    e.g. Source has heavy grain throughout, which required    ³
 ³                    the use of 2-pass to remain transparent at a reasonable   ³
 ³                    bitrate. Included in the proof directory is test encodes  ³
 ³                    of some troublesome areas at CRF and 2-pass showing a     ³
 ³                    substantial improvement in quality at a more reasonable   ³
 ³                    bitrate. CRF needs 6.5GB to stay transparent 2-pass only  ³
 ³                    needed 4GB is detailed evidence.                          ³
 ³                        e.g. The source was grainy so 2-pass was used is NOT  ³
 ³                        detailed evidence.                                    ³
 ³         4.7.2) Exceeding CRF 24 on any resolution is a good indication to    ³
 ³                consider the use of 2-pass.                                   ³
 ³         4.7.3) 2-pass encodes must follow the percentage values in 4.6, it   ³
 ³                is recommended to target the maximum value allotted and work  ³
 ³                down.                                                         ³
 ³     4.8) Exceeding the percentage values in 4.6 is allowed, but very         ³
 ³          detailed justification must be included in the NFO.                 ³
 ³              e.g. 720p encoded at CRF 13 resulting in an encode 80% of the   ³
 ³              source, this value was picked as the sourced content had a lot  ³
 ³              of strobing effects (e.g. 1m10s-15m30s) and confetti scenes     ³
 ³              (e.g. 20m55s-50m60s) which compressed poorly and required a     ³
 ³              higher bitrate to maintain transparency. Proof directory        ³
 ³              contains samples of these troublesome scenes at 30% and 50%     ³
 ³              showing a substantial picture improvement.                      ³
 ³     4.9) Using unreasonably high CRF values or low target bitrates with      ³
 ³          2-pass for the source content is considered a technical flaw.       ³
 ³              e.g. Producing a 1080p encode at 40% of the source bitrate,     ³
 ³              offering no justification in the NFO and having poor            ³
 ³              transparency to the source IS a technical flaw.                 ³
 ³                  e.g. Producing a 1080p encode at 20% of the source bitrate  ³
 ³                  (This may occur on animation content to avoid a bloated     ³
 ³                  encode), offering justification in the NFO and having good  ³
 ³                  transparency to the source is NOT a technical flaw.         ³
 ³     4.10) Encoded video bitrate must not exceed the source video bitrate.    ³
 ³         4.10.1) Video bitrate refers only to the bitrate for the video       ³
 ³                 stream, and not the overall muxed bitrate of all streams     ³
 ³                 within the container or the bitrate of a captured file.      ³
 ³             4.10.1.1) Original video stream bitrate can be determined by     ³
 ³                       observing network traffic during playback, or          ³
 ³                       examining manifests/metadata of the encrypted video    ³
 ³                       when capturing.                                        ³
 ³         4.10.2) The following algorithm can also be used to estimate a CRF   ³
 ³                 value if the value originally used results in a bitrate      ³
 ³                 which exceeds the source's.                                  ³
 ³                 ValidCRF = [-6 * (DestinationBitrate - ExcessiveBitrate) /   ³
 ³                 ExcessiveBitrate] + CRFUsed                                  ³
 ³                     e.g. Source bitrate: 4,500Kbps                           ³
 ³                     Target bitrate: ~3,400Kbps                               ³
 ³                     Encoded bitrate @ CRF17: 5,900Kbps                       ³
 ³                     ValidCRF = (-6 * (3400 - 5900) / 5900) + 17              ³
 ³     4.11) Settings cannot go below what is specified for preset (--preset)   ³
 ³           'slower' for x264 or 'slow' for x265 by the revision used.         ³
 ³     4.12) Level (x264: --level, x265: --level-idc) must be:                  ³
 ³         4.12.1) '3.1' for SD                                                 ³
 ³         4.12.2) '4.1' for 720p                                               ³
 ³         4.12.3) '4.1' for 1080p, '4.2' for 1080p above 30fps                 ³
 ³         4.12.4) '5.1' for 2160p, '5.2' for 2160p above 30fps.                ³
 ³     4.13) Custom matrices are not allowed.                                   ³
 ³     4.14) Zones (--zones) may be used, but should be used sparingly with a   ³
 ³           high degree of caution, the NFO must provide sufficient detailed   ³
 ³           evidence for each zone used.                                       ³
 ³               e.g. Used a zone at CRF 13 between frames 1634-5343 due to     ³
 ³               confetti spam and heavy motion resulting in very poor          ³
 ³               compressibility. Proof directory contains two samples of this  ³
 ³               scene with and without the use of the zone showing a drastic   ³
 ³               improvement in quality while still keeping a reasonable file   ³
 ³               size.                                                          ³
 ³     4.15) GPU offloading or any other forms of acceleration (e.g. --opencl,  ³
 ³           nvenc) is not allowed.                                             ³
 ³     4.16) Optional tuning (--tune) parameters allowed are: 'film', 'grain',  ³
 ³           or 'animation'.                                                    ³
 ³     4.17) Optional settings recommended for tuning per source, see           ³
 ³           forum.doom9.org for further information:                           ³
 ³         4.17.1) For complex video, --preset veryslow is encouraged.          ³
 ³         4.17.2) --aq-mode 3 --aq-strength x.x                                ³
 ³                 0.5-0.7 for grainy films.                                    ³
 ³                 0.6-0.9 for digital films.                                   ³
 ³                 0.9-1.1 for animation.                                       ³
 ³         4.17.3) --psy-rd x.x:0.0                                             ³
 ³                 0.8-1.2 for films.                                           ³
 ³                 0.5-0.8 for animation.                                       ³
 ³         4.17.4) --deblock x:x                                                ³
 ³                 -3:-3 for films.                                             ³
 ³                 1:1 for animation.                                           ³
 ³     4.18) Sample Aspect Ratio (--sar) must be '1:1' (square).                ³
 ³     4.19) Disabling deblocking (--no-deblock) is not allowed.                ³
 ³     4.20) Frame rate must be passed to x264/x265 such that the keyframe      ³
 ³           interval (--keyint) and minimum GOP length (--min-keyint) can be   ³
 ³           correctly set by the encoder. Changing these values is not         ³
 ³           allowed.                                                           ³
 ³     4.21) Color space must be 4:2:0.                                         ³
 ³     4.22) Color matrix (--colormatrix) may be optionally set to 'bt709' for  ³
 ³           HD SDR content, but is not required.                               ³
 ³         4.22.1) However color matrix must be set for all all SD SDR          ³
 ³                 resolutions.                                                 ³
 ³             4.22.1.1) 'bt709' must be used for encodes from high definition  ³
 ³                       sources.                                               ³
 ³             4.22.1.2) Source specification must be used for standard         ³
 ³                       definition sources.                                    ³
 ³             4.22.1.3) 'undef' must be used if not specified by the source    ³
 ³                       for standard definition sources.                       ³
 ³     4.23) x265 specifics:                                                    ³
 ³         4.23.1) Range (--range), color primaries (--colorprim), transfer     ³
 ³                 (--transfer), color matrix (--colormatrix) and chroma sample ³
 ³                 location (--chromaloc) must be set to the same value as the  ³
 ³                 source, or omitted if the source value is undefined.         ³
 ³         4.23.2) Ultra-HD Bluray support (--uhd-bd) is not allowed.           ³
 ³         4.23.3) High tier (--high-tier), repeat headers (--repeat-headers),  ³
 ³                 access unit delimiter (--aud) and HRD signalling (--hrd)     ³
 ³                 must be enabled.                                             ³
 ³         4.23.4) HDR releases must be encoded with:                           ³
 ³             4.23.4.1) HDR10 signalling (--hdr10) and HDR10 optimization      ³
 ³                       (--hdr10-opt) enabled.                                 ³
 ³             4.23.4.2) Master Display (--master-display) and Max CL (--max-   ³
 ³                       cll) set to the same value as the source, or omitted   ³
 ³                       if the source value is undefined.                      ³
 ³                 4.23.4.2.1) Master Display and Max CL values must be taken   ³
 ³                             from the whole concatenated source, not a        ³
 ³                             partial source. e.g. the first m2ts file.        ³
 ³     4.24) Any form of tone-mapping (e.g. HDR to SDR, DV to SDR, HDR10Plus to ³
 ³           SDR) is not allowed.                                               ³
 ³     4.25) Suggested command line:                                            ³
 ³         4.25.1) x264 --preset slower --level ## --crf ##                     ³
 ³             4.25.1.1) Optional tweaks: --no-mbtree --no-fast-pskip --no-dct- ³
 ³                       decimate                                               ³
 ³         4.25.2) x265 --high-tier --repeat-headers --aud --hrd --preset slow  ³
 ³                 --level-idc ## --crf ## --range ## --colorprim ## --transfer ³
 ³                 ## --colormatrix ## --chromaloc ##                           ³
 ³             4.25.2.1) If HDR append: --hdr10 --hdr10-opt --master-display ## ³
 ³                       --max-cll ##                                           ³
 ³             4.25.2.2) Optional tweaks: --no-cutree --no-open-gop --no-sao    ³
 ³                       --pmode --aq-mode 4                                    ³
 ³                                                                              ³
 ³ 5) [ Transcoded: Audio ]                                                     ³
 ³     5.1) Segmented encoding is not allowed.                                  ³
 ³     5.2) Audio must not be resampled and must be kept in the original format ³
 ³          of the source.                                                      ³
 ³              e.g. 48 kHz for 48 kHz sources, 24 bit for 24 bit sources.      ³
 ³         5.2.1) Except when resampling due to codec limitations.              ³
 ³                    e.g. Source is TrueHD 192 KHz being transcoded to AC3 for ³
 ³                    a 720p release, AC3 is limited to 48 KHz. Resampling is   ³
 ³                    accepted.                                                 ³
 ³     5.3) Audio must not have gain levels (normalization) adjusted and must   ³
 ³          be kept at the same levels as the source.                           ³
 ³     5.4) Audio must not have channels altered or removed and must be kept at ³
 ³          the same channel count and layout as the source.                    ³
 ³              e.g. dual mono stays dual mono, mono stays mono, stereo stays   ³
 ³              stereo, 5.1 stays 5.1                                           ³
 ³     5.5) Lossy tracks include, but are not limited to: DTS-HD HR, E-AC3,     ³
 ³          DTS-ES, DTS, AC3, AAC, MP2.                                         ³
 ³     5.6) Audio tracks must be:                                               ³
 ³         5.6.1) For 720p and above:                                           ³
 ³             5.6.1.1) Audio tracks already in a lossy format must not be      ³
 ³                      transcoded, but kept in the original format.            ³
 ³             5.6.1.2) In cases when no lossy format is available or           ³
 ³                      transcoding audio to correct technical flaws in the     ³
 ³                      audio track, AC3 or E-AC3 must be used.                 ³
 ³             5.6.1.3) AC3 or E-AC3 bitrate must target 640 Kbps without       ³
 ³                      upscaling bitrate. Only the following methods are       ³
 ³                      allowed (in order of preference):                       ³
 ³                 5.6.1.3.1) Dolby Media Encoder                               ³
 ³                 5.6.1.3.2) eac3to: -640                                      ³
 ³                 5.6.1.3.3) FFmpeg: -b:a 640k                                 ³
 ³             5.6.1.4) When transcoding, positional audio metadata (e.g.       ³
 ³                      DTS:X, TrueHD Atmos) and channels above 5.1 (e.g. 7.1)  ³
 ³                      can be retained at the discretion of the group.         ³
 ³         5.6.2) VBR AAC LC (Low Complexity) for SD and commentary audio.      ³
 ³             5.6.2.1) Apple/QAAC, FDK-AAC or Nero must be used.               ³
 ³             5.6.2.2) Audio with more than two channels must be down-mixed to ³
 ³                      stereo. Only the following methods are allowed (in      ³
 ³                      order of preference):                                   ³
 ³                 5.6.2.2.1) eac3to: -downStereo                               ³
 ³                 5.6.2.2.2) FFMpeg: -ac 2                                     ³
 ³             5.6.2.3) Quality based VBR encoding must be used; targeted or    ³
 ³                      constrained VBR must not be used. Only the following    ³
 ³                      methods are allowed (in order of preference):           ³
 ³                 5.6.2.3.1) QAAC: --tvbr 82 --quality 2                       ³
 ³                 5.6.2.3.2) FDK-AAC: --bitrate-mode 4 --profile 2             ³
 ³                 5.6.2.3.3) Nero: -q 0.4                                      ³
 ³         5.6.3) FLAC must be used for lossless mono and lossless stereo       ³
 ³                tracks, as well as multi-channel LPCM tracks. For all HD      ³
 ³                resolutions from a retail source.                             ³
 ³             5.6.3.1) The best compression (level 8, --compression-level-8)   ³
 ³                      must be used.                                           ³
 ³             5.6.3.2) Replay-gain values (--replay-gain) must not be applied. ³
 ³                                                                              ³
 ³ 6) [ Transcoded: Filters ]                                                   ³
 ³     6.1) Inverse telecine (IVTC), de-interlacing, or decimation must be      ³
 ³          applied as required.                                                ³
 ³     6.2) Only the following smart deinterlacers can be used: QTGMC (with     ³
 ³          preset slow or better) or Nnedi3.                                   ³
 ³     6.3) Only the following accurate field matching filters may be used:     ³
 ³          TIVTC or Decomb.                                                    ³
 ³     6.4) Only the following sharp resizers can be used: Spline36Resize,      ³
 ³          Spline64Resize or BlackmanResize.                                   ³
 ³     6.5) Only frame accurate input source plugins can be used such as:       ³
 ³          DGIndex, DGDecNV or LSMASHSource. Use of frame inaccurate input     ³
 ³          source filters (e.g. DirectShowSource) is not allowed.              ³
 ³     6.6) Use of destructive and effects filters including, but not limited   ³
 ³          to: RemoveGrain, GrainFactory3, MedianBlur, FineSharp are not       ³
 ³          allowed.                                                            ³
 ³     6.7) Optional recommended filtering methods:                             ³
 ³         6.7.1) Sources that require crop, and are not mod2 on opposing       ³
 ³                sides, can be avoided by moving the video by one pixel.       ³
 ³                    e.g. 139 pixels can be cropped from the top and bottom of ³
 ³                    a source.                                                 ³
 ³                    source = LSMASHVideoSource("source.mkv")                  ³
 ³                    Overlay(source, source, 0, -1)                            ³
 ³                    Crop(0, 138, 0, -140)                                     ³
 ³         6.7.2) Use of SelectRangeEvery() as a quick method to test whether a ³
 ³                higher or lower CRF value should be used.                     ³
 ³                    e.g. SelectRangeEvery(3000, 150).                         ³
 ³         6.7.3) Selective debanding with f3kdb on scenes that require it is   ³
 ³                recommended, high attention to detail and caution must be     ³
 ³                observed.                                                     ³
 ³                                                                              ³
 ³ 7) [ Common: Video ]                                                         ³
 ³     7.1) Multiple video tracks are not allowed.                              ³
 ³     7.2) HDR, DV and HDR10Plus must only be released at the highest          ³
 ³          resolution offered by the source, except in cases when 8.6.3        ³
 ³          applies.                                                            ³
 ³              e.g. Source offers 2160p, 1080p and 720p HDR streams HDR may    ³
 ³              only be released at 2160p, not 1080p or 720p.                   ³
 ³     7.3) Must be free from technical flaws.                                  ³
 ³         7.3.1) Technical flaws include, but are not limited to: sync issues, ³
 ³                interlacing, lack of IVTC, bad aspect ratio, invalid          ³
 ³                resolution, unrelated footage, warnings, glitches not present ³
 ³                on source, under-crop, over-crop and DRM.                     ³
 ³     7.4) Dupes based on source are not allowed, use INTERNAL.                ³
 ³     7.5) Single features must not be split across multiple files.            ³
 ³         7.5.1) Sources with opening and closing credits spanning across      ³
 ³                multiple files must be released as a single release.          ³
 ³                    e.g. File 1: Opening credits                              ³
 ³                    File 2: Feature                                           ³
 ³                    File 3: Closing credits                                   ³
 ³                    Release: A single file with opening credits, feature and  ³
 ³                    closing credits. Muxed together or encoded as a single    ³
 ³                    file.                                                     ³
 ³         7.5.2) Sources with multiple episodes, parts etc., that are in a     ³
 ³                single video file, must be split into individual releases if  ³
 ³                there is a clear delineation between them, such as credits.   ³
 ³                    e.g. Source contains 10 episodes in a single stream with  ³
 ³                    all episodes strung together with credits between every   ³
 ³                    episode, each episode must be released separately.        ³
 ³     7.6) Non-feature footage including, but not limited to: credits,         ³
 ³          previously on, intertitles must not be removed or encoded           ³
 ³          separately.                                                         ³
 ³         7.6.1) In situations of a progressive feature containing interlaced  ³
 ³                non-feature footage, the interlaced footage may be left       ³
 ³                interlaced, or only that footage must be deinterlaced.        ³
 ³                    e.g. Only the credits are interlaced, you may leave them  ³
 ³                    interlaced or only apply a deinterlacer to the credits,   ³
 ³                    not the entire video.                                     ³
 ³     7.7) Unrelated footage must be removed.                                  ³
 ³         7.7.1) Unrelated footage includes, but is not limited to:            ³
 ³                commercials, content warnings, studio worksheets, test        ³
 ³                screens, piracy warnings.                                     ³
 ³     7.8) English-spoken features must not contain foreign overlays for       ³
 ³          relevant on-screen information.                                     ³
 ³         7.8.1) Relevant on-screen information includes, but is not limited   ³
 ³                to: location titles, hardcoded subtitles, introduction text,  ³
 ³                or any other information essential to the plot of the         ³
 ³                feature.                                                      ³
 ³         7.8.2) Non-relevant on-screen information includes: opening credits, ³
 ³                movie title, closing credits.                                 ³
 ³         7.8.3) For sources where relevant on-screen information is included  ³
 ³                in the form of English subtitles instead of overlays, these   ³
 ³                subtitles must be included as a forced track (see 11.2). If   ³
 ³                the source does not include them in English, it is not        ³
 ³                allowed to omit them and release the feature without them, as ³
 ³                it is still considered relevant information.                  ³
 ³     7.9) Using multiple web based video sources of the same feature is       ³
 ³          allowed and must not be encoded separately. Each source and what    ³
 ³          content came from which must be noted in the NFO.                   ³
 ³              e.g. Feature from a German streaming service with credits from  ³
 ³              an American streaming service to avoid German translated        ³
 ³              credits, as the German streaming service had better quality for ³
 ³              the feature.                                                    ³
 ³                                                                              ³
 ³ 8) [ Common: Resolution / Aspect Ratio ]                                     ³
 ³     8.1) Standard definition (SD) refers to a maximum horizontal display     ³
 ³          resolution of 720 pixels.                                           ³
 ³     8.2) 720p refers to a maximum display resolution of 1280x720.            ³
 ³         8.2.1) For aspect ratios greater than or equal to 1.78:1, horizontal ³
 ³                pixel width must be 1280 pixels.                              ³
 ³                    e.g. Source aspect ratio of 2.40:1 will resize to         ³
 ³                    1280x534.                                                 ³
 ³         8.2.2) For aspect ratios less than or equal to 1.78:1, vertical      ³
 ³                pixel height must be 720 pixels.                              ³
 ³                    e.g. Source aspect ratio of 1.33:1 will resize to         ³
 ³                    960x720.                                                  ³
 ³     8.3) 1080p refers to a maximum display resolution of 1920x1080.          ³
 ³     8.4) 2160p refers to a maximum display resolution of 3840x2160.          ³
 ³     8.5) Resolution must be mod2.                                            ³
 ³     8.6) Upscaling is not allowed.                                           ³
 ³         8.6.1) 1080p from a 1080p source and 2160p from a 2160p source       ³
 ³                encodes must only be cropped, no resizing is allowed.         ³
 ³         8.6.2) In situations where cropping is needed vertically and/or      ³
 ³                horizontally, resolutions are allowed to be under the max     ³
 ³                height or width.                                              ³
 ³                    e.g. 1080p at 1916x1072 is acceptable.                    ³
 ³         8.6.3) In situations where the source video stream does not meet the ³
 ³                minimum requirements for 720p/1080p/2160p, the video must be  ³
 ³                resized down to SD/720p/1080p and a source sample must be     ³
 ³                included.                                                     ³
 ³     8.7) Dupes based on resolution are not allowed, use INTERNAL.            ³
 ³         8.7.1) Releases with an AR difference of at least 5% to the previous ³
 ³                release are not considered a dupe. These releases must be     ³
 ³                tagged as WS, FS or OM (open matte), not PROPER, and the      ³
 ³                original release must not be nuked. Original aspect ratio     ³
 ³                (OAR) releases are always allowed.                            ³
 ³             8.7.1.1) AR difference example:                                  ³
 ³                      Old release resolution (after crop) is 1920x1040        ³
 ³                      New release resolution (after crop) is 1440x1080        ³
 ³                      OldReleaseAR = 1920 / 1040 = 1.846                      ³
 ³                      NewReleaseAR = 1440 / 1080 = 1.333                      ³
 ³                      (OldReleaseAR - NewReleaseAR) / [(OldReleaseAR +        ³
 ³                      NewReleaseAR) / 2] = AR difference                      ³
 ³                      |AR difference * 100| = AR difference (%)               ³
 ³                      (1.846 - 1.333) / [(1.846 + 1.333) / 2] = 0.322         ³
 ³                      |0.322 * 100| = 32.2%                                   ³
 ³                      32.2% is greater than the 5% minimum, therefore the new ³
 ³                      release is not considered a dupe.                       ³
 ³     8.8) Black borders, and anything that is not part of the feature, must   ³
 ³          be cropped.                                                         ³
 ³         8.8.1) Black borders include, but are not limited to: black or       ³
 ³                colored borders, duplicate lines, dirty lines or pixels.      ³
 ³         8.8.2) Retention or removal of faded edges is left to the discretion ³
 ³                of the group. Inclusion of faded edges is not considered a    ³
 ³                technical flaw.                                               ³
 ³             8.8.2.1) Faded edges refers to a line of pixels which are of     ³
 ³                      similar appearance to pixels parallel to the video      ³
 ³                      frame.                                                  ³
 ³             8.8.2.2) Releases which include faded edges must consider faded  ³
 ³                      edges as a valid part of the video frame and do not     ³
 ³                      count as black borders.                                 ³
 ³                          e.g. A release cannot be propered if 1 pixel of     ³
 ³                          faded edges and 1 pixel of black exists.            ³
 ³         8.8.3) In the case of varying aspect ratios throughout the feature,  ³
 ³                video must be cropped to the widest frame.                    ³
 ³             8.8.3.1) Studio logos and credits must be disregarded when       ³
 ³                      determining the widest frame.                           ³
 ³         8.8.4) Situations where video cropping of the same content varies    ³
 ³                between sources are not considered a technical flaw, and may  ³
 ³                not be propered.                                              ³
 ³     8.9) Video can be over or under-cropped by a maximum of 1 pixel per      ³
 ³          side. Over or under-cropping by more than 1 pixel per side is       ³
 ³          considered a technical flaw.                                        ³
 ³         8.9.1) Under-crop refers to portions of the video frame which is not ³
 ³                part of the feature.                                          ³
 ³     8.10) Resolution must be within 0.2% of the original aspect ratio.       ³
 ³         8.10.1) The original aspect ratio must only be calculated from the   ³
 ³                 source after cropping.                                       ³
 ³         8.10.2) In situations where the source aspect ratio is incorrect as  ³
 ³                 a result of bad mastering, a source sample and comparison    ³
 ³                 screenshot of the final aspect ratio must be included.       ³
 ³     8.11) Sample aspect ratio (SAR):                                         ³
 ³           SAR = (PixelHeight / PixelWidth) / (DARHeight / DARWidth)          ³
 ³     8.12) Display aspect ratio (DAR):                                        ³
 ³           DAR = (PixelWidth * DARWidth) / (PixelHeight * DARHeight)          ³
 ³     8.13) Display resolution:                                                ³
 ³           DisplayWidth = PixelWidth * (SARWidth / SARHeight)                 ³
 ³     8.14) Aspect ratio (AR) error:                                           ³
 ³           Original AR = (SourceWidth - [CropLeft + CropRight]) /             ³
 ³           (SourceHeight - [CropTop + CropBottom])                            ³
 ³           Release AR = EncodeWidth / EncodedHeight                           ³
 ³           AR Error % = [(Original AR - Release AR) / Original AR] * 100      ³
 ³     8.15) Target resolution when resizing to maintain mod2 and reduce AR     ³
 ³           error:                                                             ³
 ³           TargetHeight = TargetWidth / [(SourceWidth - [CropLeft +           ³
 ³           CropRight]) / (SourceHeight - [CropTop + CropBottom])]             ³
 ³           The correct mod2 value can also be calculated from the ceiling of  ³
 ³           TargetHeight if the value is odd, and the floor of TargetHeight if ³
 ³           the value is even.                                                 ³
 ³         8.15.1) Alternatively, the following can be used to confirm the      ³
 ³                 correct resolution is used from the above method by          ³
 ³                 calculating the upper and lower integer limit of             ³
 ³                 TargetHeight:                                                ³
 ³                 HeightA = floor(TargetHeight + (TargetHeight mod2))          ³
 ³                 HeightB = floor(TargetHeight - (TargetHeight mod2))          ³
 ³                 The TargetHeight value (HeightA or HeightB) which results in ³
 ³                 an aspect ratio error which tends to zero must be used.      ³
 ³                     e.g. TargetWidth: 1280.                                  ³
 ³                     SourceWidth: 1920, SourceHeight: 1080.                   ³
 ³                     CropLeft + CropRight = 0, CropTop + CropBottom = 4.      ³
 ³                     TargetHeight = 1280 / ((1920 - 0) / (1080 - 4)) or       ³
 ³                     717.33.                                                  ³
 ³                     HeightA = floor(717.33 + (717.33 mod2)) or 718.          ³
 ³                     HeightB = floor(717.33 - (717.33 mod2)) or 716.          ³
 ³                     TargetWidth x HeightA = 1280x718 with -0.09% AR error.   ³
 ³                     TargetWidth x HeightB = 1280x716 with 0.19% AR error.    ³
 ³                     -0.09% tends closer to zero than 0.19% does (0.09 <      ³
 ³                     0.19), therefore, HeightA must be used.                  ³
 ³                                                                              ³
 ³ 9) [ Common: Framerate ]                                                     ³
 ³     9.1) Constant frame rate (CFR) must be used.                             ³
 ³         9.1.1) Variable frame rate (VFR) methods are not allowed.            ³
 ³     9.2) Dupes based on frame rate are not allowed, use INTERNAL.            ³
 ³     9.3) Features which contain a constant dupe sequence must be decimated.  ³
 ³              e.g. A silent movie at 1080p24 with a dupe sequence of 1-in-6   ³
 ³              must be decimated to 20 fps.                                    ³
 ³     9.4) For sources which contain footage at varying frames per second      ³
 ³          throughout (hybrid sources), applying an inverse telecine is left   ³
 ³          to the discretion of the group. The NFO must list a reason as per   ³
 ³          the final decision chosen.                                          ³
 ³         9.4.1) It is assumed that the majority of the feature contains       ³
 ³                enough unique frames to not require an inverse telecine       ³
 ³                filter. If it can be proven an inverse telecine or decimating ³
 ³                filter does not result in any loss of unique frames, this is  ³
 ³                considered a technical flaw.                                  ³
 ³                    e.g. The feature is filmed at 29.970 fps, but contains    ³
 ³                    some footage filmed at 23.976 fps. Choosing to encode the ³
 ³                    entire release at 29.970 is valid.                        ³
 ³     9.5) Native and converted frame rates refer to the standard in which the ³
 ³          feature was produced.                                               ³
 ³         9.5.1) NTSC produced content is native to NTSC.                      ³
 ³         9.5.2) PAL produced content is native to PAL.                        ³
 ³         9.5.3) NTSC produced content that is mastered in PAL is considered   ³
 ³                as converted video.                                           ³
 ³         9.5.4) PAL produced content that is mastered in NTSC is considered   ³
 ³                as converted video.                                           ³
 ³     9.6) Sources which contain converted video must be restored to the       ³
 ³          original frame rate.                                                ³
 ³         9.6.1) Converted video includes, but is not limited to: ghosted,     ³
 ³                blended, or duplicate frames.                                 ³
 ³         9.6.2) Converted video does not include NTSC to PAL or PAL to NTSC   ³
 ³                sources which are sped up or slowed down.                     ³
 ³             9.6.2.1) NTSC slow down or PAL speed up must be corrected by     ³
 ³                      muxing video to the correct fps and slowing down or     ³
 ³                      speeding up audio. eac3to is the recommended tool.      ³
 ³                          e.g. Source is PAL sped up, therefore it must be    ³
 ³                          slowed down back to NTSC.                           ³
 ³                          Video: Mux with --default-duration 24000/1001p - to ³
 ³                          force NTSC fps                                      ³
 ³                          Audio: eac3to input.ac3 output.ac3 -slowdown        ³
 ³                          -keepDialnorm - to slow audio down to NTSC          ³
 ³             9.6.2.2) Relevant rules from section 5 must be respected when    ³
 ³                      transcoding audio.                                      ³
 ³             9.6.2.3) WEB releases must still be tagged as such, when only    ³
 ³                      correcting slow down or speed up.                       ³
 ³             9.6.2.4) 24 fps must be considered a valid frame rate and not    ³
 ³                      corrected, if it is only sped up or slowed down with no ³
 ³                      other issues.                                           ³
 ³         9.6.3) If the restoration process is successful in restoring the     ³
 ³                footage to the native format without significant issues or    ³
 ³                artifacts, the CONVERT tag must not be used.                  ³
 ³         9.6.4) In situations where the footage cannot be restored to the     ³
 ³                native format or results in significant issues or artifacts,  ³
 ³                the CONVERT tag must be used.                                 ³
 ³     9.7) True 50 / 59.940 fps video must be released at 50 / 59.940 fps.     ³
 ³          True 25 / 29.970 fps video released at 50 / 59.940 fps is not       ³
 ³          allowed and considered a technical flaw.                            ³
 ³         9.7.1) In cases of varying framerates of 25 / 29.970 fps and true 50 ³
 ³                / 59.940 fps, the framerate of the main feature must be used. ³
 ³                e.g. studio for talk shows, game coverage for sports.         ³
 ³         9.7.2) In rare situations, 25 / 50 fps sources must be restored to   ³
 ³                23.976 or 29.97 fps.                                          ³
 ³         9.7.3) In rare situations, 29.97 / 59.940 fps sources must be        ³
 ³                restored to 25 fps.                                           ³
 ³                                                                              ³
 ³ 10) [ Common: Audio ]                                                        ³
 ³     10.1) Sync must not drift during the entire release.                     ³
 ³     10.2) Glitching or unrelated audio that occurs in any audio channel      ³
 ³           present (e.g. L, R, C) is considered a technical flaw.             ³
 ³         10.2.1) Glitching is defined as, but not limited to: an audible      ³
 ³                 glitch, missing audio, pops or clicks as a result of         ³
 ³                 encoding, unintended gaps within playback, missing dialogue, ³
 ³                 muted or muffled audio.                                      ³
 ³     10.3) An English spoken release must only contain a single English       ³
 ³           dialogue track.                                                    ³
 ³         10.3.1) Except in situations of a remastered/restored source,        ³
 ³                 whereby both original and remastered/restored audio track    ³
 ³                 may be muxed in. It is at the discretion of the group which  ³
 ³                 track is chosen as the primary dialogue track.               ³
 ³     10.4) A non-English spoken release may contain a secondary dialogue      ³
 ³           track.                                                             ³
 ³         10.4.1) The original audio track must be used and forced English     ³
 ³                 subtitles must be present, see 11.2.                         ³
 ³         10.4.2) Secondary dubbed tracks must only be different dialects or   ³
 ³                 varieties of the original language or an English dub.        ³
 ³                     e.g. Original Spanish with secondary Latin Spanish.      ³
 ³                         e.g. Original French with secondary English dub.     ³
 ³         10.4.3) In rare cases, a third dubbed track may be included for      ³
 ³                 another dialect or variety of the original language,         ³
 ³                 accompanied with an English dubbed track.                    ³
 ³                     e.g. Chinese original language, English dubbed track and ³
 ³                     a Cantonese dubbed track.                                ³
 ³     10.5) Non-English spoken releases which use only a dubbed track must be  ³
 ³           tagged as DUBBED.                                                  ³
 ³     10.6) Commentary audio may be included.                                  ³
 ³     10.7) Audio tracks must only be included once at the highest level of    ³
 ³           quality allowed for that resolution. e.g. Including an English     ³
 ³           dialogue track at lossless DTS-HD and lossy AC3 is not allowed.    ³
 ³         10.7.1) This does not apply to embedded cores in lossless tracks,    ³
 ³                 which are broken out by muxers as additional tracks.         ³
 ³     10.8) Including additional special audio tracks (e.g. isolated scores,   ³
 ³           original mixes, different narrators) is allowed.                   ³
 ³     10.9) Supplementary audio tracks must have the title field set to a      ³
 ³           descriptive name. e.g. original, remastered, commentary with       ³
 ³           director.                                                          ³
 ³     10.10) The correct ISO 639 language code supported by MKVToolnix must be ³
 ³            set for all audio tracks.                                         ³
 ³         10.10.1) In situations where the language is not supported by        ³
 ³                  MKVToolnix, 'und' must be used.                             ³
 ³     10.11) Dupes based on multiple audio tracks, audio format, different     ³
 ³            narrators or remastered audio are not allowed, use INTERNAL.      ³
 ³     10.12) Retail audio may be used in place of audio tracks extracted from  ³
 ³            the source. Each source and what content came from which must be  ³
 ³            noted in the NFO.                                                 ³
 ³                e.g. Video from Netflix, dubbed track from DVD.               ³
 ³         10.12.1) Lossless tracks include, but are not limited to: DTS:X,     ³
 ³                  TrueHD Atmos, DTS-HD MA and TrueHD.                         ³
 ³         10.12.2) Use of the highest quality retail lossless track in the     ³
 ³                  order of preference specified in 10.12.1 is accepted for    ³
 ³                  resolutions above 720p.                                     ³
 ³         10.12.3) 720p must respect 5.6.1 by first attempting to extract an   ³
 ³                  AC3 or E-AC3 core at or above 640 Kbps or transcoding from  ³
 ³                  the best lossless/lossy retail track.                       ³
 ³         10.12.4) SD and commentary audio must respect 5.6.2, by transcoding  ³
 ³                  from the best lossless/lossy retail track.                  ³
 ³                                                                              ³
 ³ 11) [ Common: Subtitles ]                                                    ³
 ³     11.1) All subtitles present on the source must be converted to SubRip    ³
 ³           format and included in the release.                                ³
 ³         11.1.1) It is at the discretion of the group to include forced       ³
 ³                 subtitles for dubbed audio tracks not included in the        ³
 ³                 release.                                                     ³
 ³         11.1.2) Except in cases when 11.2.2 applies for non-forced tracks,   ³
 ³                 PGS or ASS format must be used instead.                      ³
 ³         11.1.3) Except when capturing non-forced subtitles are optional, but ³
 ³                 it is strongly recommend to find a way to extract them from  ³
 ³                 the source.                                                  ³
 ³     11.2) Features with foreign dialogue or overlays must include a separate ³
 ³           SubRip subtitle (.srt) track for forced English subtitles set as   ³
 ³           forced and default.                                                ³
 ³         11.2.1) Except in situations where the source video stream contains  ³
 ³                 hardcoded subtitles for non-English dialogue and overlays.   ³
 ³         11.2.2) Except for features with excessive positional subtitles      ³
 ³                 (e.g. Anime) which cannot be presented well in SubRip        ³
 ³                 format. PGS or ASS subtitles must be used instead and set as ³
 ³                 forced and default.                                          ³
 ³     11.3) Forced SubRip subtitles must be free of technical flaws.           ³
 ³           Including, but not limited to: sync issues, spelling, incorrect    ³
 ³           OCR.                                                               ³
 ³         11.3.1) SubRip subtitles must be carefully OCR'd.                    ³
 ³         11.3.2) Minor errors in grammar or punctuation which do not change   ³
 ³                 the meaning of the sentence are tolerated. However, it is    ³
 ³                 recommended all errors be corrected.                         ³
 ³     11.4) Subtitles from an officially licenced (e.g. HBO TV, Starz TV) HDTV ³
 ³           source or retail discs of the same feature are allowed.            ³
 ³         11.4.1) Subtitles included from another source must be noted in the  ³
 ³                 NFO. The source and which subtitle tracks used must be       ³
 ³                 mentioned.                                                   ³
 ³         11.4.2) Fan-made or custom subtitles are not allowed.                ³
 ³             11.4.2.1) This does not included stripped SDH subtitles, which   ³
 ³                       may be optionally made by groups from a valid SDH      ³
 ³                       subtitle.                                              ³
 ³     11.5) Hardcoded subtitles which are only present in the source video     ³
 ³           stream are allowed, with the exception of non-English hardcoded    ³
 ³           subtitles in English features.                                     ³
 ³         11.5.1) When hardcoded subtitles extend over the entire feature, it  ³
 ³                 must be tagged as SUBBED.                                    ³
 ³                     e.g. English hardcoded subtitles throughout entire       ³
 ³                     feature = Tag SUBBED                                     ³
 ³                         e.g. English hardcoded subtitles for foreign         ³
 ³                         dialogue only = Do not tag SUBBED                    ³
 ³         11.5.2) Subtitles which are only present within the letterboxed      ³
 ³                 matte (i.e. the black borders) of a video frame must be      ³
 ³                 cropped and OCR'd to SubRip format.                          ³
 ³         11.5.3) In situations where subtitles overlay active video and       ³
 ³                 letterbox matte, cropping must be to the widest frame where  ³
 ³                 the subtitles are present and applied equally to the         ³
 ³                 relevant sides of the video frame.                           ³
 ³         11.5.4) 11.5.2 and 11.5.3 do not apply to WEB releases.              ³
 ³     11.6) Subtitles, unless otherwise stated, are not subject to propers or  ³
 ³           nukes for any technical flaws that may be present in the track.    ³
 ³     11.7) Dupes based on subtitles are not allowed, use INTERNAL.            ³
 ³                                                                              ³
 ³ 12) [ Common: Subtitle Format ]                                              ³
 ³     12.1) Allowed formats are PGS (.sup), SubStation Alpha (.ass) and SubRip ³
 ³           (.srt).                                                            ³
 ³         12.1.1) Compression must only be used when muxing PGS subtitles,     ³
 ³                 zlib is the only allowed compression algorithm.              ³
 ³         12.1.2) PGS subtitles must not be resized and must be muxed as is.   ³
 ³         12.1.3) UTF-8 encoding must be used for SubStation Alpha and SubRip  ³
 ³                 subtitle tracks.                                             ³
 ³         12.1.4) When converting to SubStation Alpha format, subtitles must   ³
 ³                 be cleanly converted without any unnecessary modifications   ³
 ³                 to display format. e.g. position, font, color. Subtitle Edit ³
 ³                 is the recommended tool.                                     ³
 ³         12.1.5) Closed captions (e.g. CEA-708) embedded in video bitstreams  ³
 ³                 must be left as is and not stripped.                         ³
 ³             12.1.5.1) Retaining closed captions when transcoding is optional ³
 ³                       but strongly recommend.                                ³
 ³             12.1.5.2) Extracting closed captions to create SubRip or when    ³
 ³                       appropriate SubStation Alpha formatted subtitles is    ³
 ³                       optional but strongly recommend.                       ³
 ³     12.2) Subtitles must:                                                    ³
 ³         12.2.1) Have the correct ISO 639 language code supported by          ³
 ³                 MKVToolNix set                                               ³
 ³             12.2.1.1) In situations where the language is not supported by   ³
 ³                       MKVToolNix, 'und' must be used.                        ³
 ³         12.2.2) Not be set as default or forced, unless otherwise stated in  ³
 ³                 section 11.                                                  ³
 ³         12.2.3) Have the correct sync offset set during muxing.              ³
 ³         12.2.4) Be converted correctly without creating new flaws. Groups    ³
 ³                 are not responsible for any flaws already present in non-    ³
 ³                 forced subtitle tracks.                                      ³
 ³                     e.g. Subtitle is out of sync on the source in a non-     ³
 ³                     forced track, when converted it is still out of sync.    ³
 ³                     This is not a technical flaw.                            ³
 ³                         e.g. Subtitle is in sync on the source and converted ³
 ³                         to SubRip format incorrectly by the group resulting  ³
 ³                         in sync issues. This is a technical flaw.            ³
 ³     12.3) It is strongly recommended to have descriptive names set on the    ³
 ³           title field.                                                       ³
 ³               e.g. Director's Commentary, English (Forced), English (SDH).   ³
 ³     12.4) Burning-in subtitles to the video stream is not allowed.           ³
 ³     12.5) External subtitles located in 'Subs' directories are not allowed.  ³
 ³                                                                              ³
 ³ 13) [ Common: Container ]                                                    ³
 ³     13.1) Container must be Matroska (.mkv). MKVToolnix is the recommended   ³
 ³           muxer.                                                             ³
 ³         13.1.1) Custom muxing tools are allowed. However, the output must    ³
 ³                 adhere to the Matroska specifications and must retain        ³
 ³                 identical compatibility with demuxers as files created with  ³
 ³                 MKVToolnix.                                                  ³
 ³     13.2) Support for file streaming and playback from RAR is mandatory.     ³
 ³     13.3) Matroska header compression must not be enabled.                   ³
 ³     13.4) Chapters are allowed and strongly recommended.                     ³
 ³         13.4.1) Chapter names are optional, but any chapter names including  ³
 ³                 those auto-generated by muxers must be in English.           ³
 ³     13.5) Watermarks, intros, outros or any other forms of defacement in any ³
 ³           track (e.g. video, audio, subtitles, chapters) are not allowed.    ³
 ³                                                                              ³
 ³ 14) [ Common: Packaging ]                                                    ³
 ³     14.1) Releases must be packed with RAR files and broken into a maximum   ³
 ³           of 101 volumes.                                                    ³
 ³         14.1.1) The old style extension-based naming scheme must be used.    ³
 ³                 i.e. .rar to .r99.                                           ³
 ³         14.1.2) The extension of the first volume in the archive set must be ³
 ³                 .rar.                                                        ³
 ³     14.2) RAR5/RARv5.0 is not allowed. RAR3/v2.0 or RAR4/v2.9 must be used.  ³
 ³         14.2.1) Custom RAR tools can be used. Files produced from custom     ³
 ³                 tools must adhere to the RAR3/v2.0 or RAR4/v2.9 archive      ³
 ³                 specification and retain identical compatibility with        ³
 ³                 extractors and demuxers as file created with WinRAR/rar.     ³
 ³     14.3) The following archive sizes are allowed:                           ³
 ³         14.3.1) 15,000,000 bytes or 20,000,000 bytes for SD. Multiples of    ³
 ³                 these values are not allowed.                                ³
 ³         14.3.2) Positive integer multiples of 50,000,000 bytes for all       ³
 ³                 resolutions.                                                 ³
 ³                     e.g. (50 * 10^6) * n bytes, where n > 0.                 ³
 ³                     (50 * 10^6) * 4 bytes, 100,000,000 bytes, 400,000,000    ³
 ³                     bytes.                                                   ³
 ³         14.3.3) Releases must have a minimum of 10 volumes before the next   ³
 ³                 multiple of 50,000,000 bytes is used.                        ³
 ³                     e.g. 10 volumes at 50,000,000 bytes can be repackaged to ³
 ³                     5 volumes at 100,000,000 bytes.                          ³
 ³                     5 volumes at 100,000,000 bytes cannot be repacked to 4   ³
 ³                     volumes at 150,000,000 bytes.                            ³
 ³     14.4) A single SFV must be present for the primary archives and contain  ³
 ³           the entire archive set.                                            ³
 ³     14.5) NFO, RAR, SFV, Proof, Sample files must have unique, lower-case    ³
 ³           filenames with the group tag.                                      ³
 ³         14.5.1) Group tags must be unique to each group, and may be an       ³
 ³                 abbreviated variation of the group name.                     ³
 ³     14.6) Preing a release with missing RAR(s) or SFV on all sites is        ³
 ³           considered a technical flaw.                                       ³
 ³     14.7) Corrupt RAR(s) (errors upon extraction) is considered a technical  ³
 ³           flaw.                                                              ³
 ³     14.8) RAR compression and recovery records are not allowed.              ³
 ³     14.9) Encryption or password protection is not allowed.                  ³
 ³     14.10) RAR archive set must only contain a single mkv file, any other    ³
 ³            files (e.g. multiple mkv files, txt files) are not allowed.       ³
 ³         14.10.1) Except for extras releases, multiple mkv files are allowed  ³
 ³                  and filenames must be unique and descriptive.               ³
 ³                      e.g.                                                    ³
 ³                      The.Big.Bang.Theory.S01.EXTRAS.1080p.WEB.H264-GROUP     ³
 ³                      contains:                                               ³
 ³                      - Interview.with.the.Cast.mkv                           ³
 ³                      - S01E01.Bloopers.mkv                                   ³
 ³             14.10.1.1) All extras of the resolution tagged must be included. ³
 ³             14.10.1.2) External extras located in 'Extras' directories are   ³
 ³                        not allowed.                                          ³
 ³                                                                              ³
 ³ 15) [ Common: Proof ]                                                        ³
 ³     15.1) Proof must be provided for every release that contains retail      ³
 ³           elements. e.g. subtitles and audio.                                ³
 ³         15.1.1) A photograph of reasonable high quality of the printed side  ³
 ³                 of the physical disc with the group name clearly visible     ³
 ³                 must be used.                                                ³
 ³         15.1.2) Photographs must be at least 640x480px in resolution. Disc   ³
 ³                 details must be clear and legible.                           ³
 ³         15.1.3) Small identifiable or sensitive information may be redacted. ³
 ³         15.1.4) Photographs must be of the actual disc used for the final    ³
 ³                 encode.                                                      ³
 ³         15.1.5) Cover scans or m2ts samples may be included, but do not      ³
 ³                 count as the required proof.                                 ³
 ³     15.2) Proof must be placed in a separate directory named 'Proof'.        ³
 ³         15.2.1) Proof must be in JPEG or PNG format and must not be          ³
 ³                 archived.                                                    ³
 ³     15.3) When video, audio or subtitles are taken from multiple retail      ³
 ³           sources, proof must be provided for all sources used.              ³
 ³               e.g. Video from Source A and audio from Source B are used.     ³
 ³               Proof of Source A and B is required.                           ³
 ³     15.4) All EXIF data (especially any personally identifiable such as      ³
 ³           geolocation) must be stripped.                                     ³
 ³         15.4.1) Drawing attention (e.g. nuking, propering, mentioning in     ³
 ³                 nfo) to proof which has not stripped EXIF data is strictly   ³
 ³                 not allowed.                                                 ³
 ³     15.5) A release which fails to pre with the required proof is considered ³
 ³           technically flawed and can be propered.                            ³
 ³         15.5.1) Proof fixes must be pred within 24 hours of the original     ³
 ³                 pre.                                                         ³
 ³         15.5.2) Fixes provided after a proper has been released, or after 24 ³
 ³                 hours has elapsed from the original pre will not be          ³
 ³                 accepted.                                                    ³
 ³                                                                              ³
 ³ 16) [ Common: Samples / Source Samples ]                                     ³
 ³     16.1) Releases must include a 50-70 second sample for each release,      ³
 ³           samples must:                                                      ³
 ³         16.1.1) Be placed in a separate directory named 'Sample'.            ³
 ³         16.1.2) Be cut from the final video, not encoded separately and not  ³
 ³                 be archived.                                                 ³
 ³         16.1.3) Not contain opening (e.g. studio titles) or closing (e.g.    ³
 ³                 credits) footage when possible. e.g. cut samples from at     ³
 ³                 least 2m in or the middle to avoid this.                     ³
 ³     16.2) Source samples are required for any release where the validity of  ³
 ³           the source may be brought into question.                           ³
 ³         16.2.1) Included source samples must have a unique filename and be   ³
 ³                 placed within the 'Proof' directory.                         ³
 ³         16.2.2) If there is a question as to the validity of a source,       ³
 ³                 encoding methods, or filters used; the release may be nuked  ³
 ³                 within 24 hours of pre requesting a source sample and must   ³
 ³                 include the initial suspicion or reason.                     ³
 ³                     e.g.                                                     ³
 ³                     source.sample.requested_suspicion.of.invalid.decimation. ³
 ³         16.2.3) Requests may mention a specific timecode to verify the       ³
 ³                 sample provided is the same source used for the encode in    ³
 ³                 question.                                                    ³
 ³                     e.g. include.ghosting.at.2m22s.                          ³
 ³         16.2.4) The group has 48 hours from the first nuke to pre a source   ³
 ³                 sample that is at least 30 seconds and no more than minutes  ³
 ³                 in length. If no specific timestamp is requested, source     ³
 ³                 samples must be of the main feature and not the starting or  ³
 ³                 ending credits.                                              ³
 ³         16.2.5) Source samples must be packed as per section 14 and use the  ³
 ³                 SOURCE.SAMPLE tag.                                           ³
 ³         16.2.6) Failing to provide source proof, or providing insufficient   ³
 ³                 proof to disprove any claims, the original release must      ³
 ³                 remain nuked and can be considered technically flawed.       ³
 ³                                                                              ³
 ³ 17) [ Common: NFO ]                                                          ³
 ³     17.1) A single NFO file must be present, and must contain the following  ³
 ³           information:                                                       ³
 ³         17.1.1) Transcoded content: Source video stream bitrate.             ³
 ³             17.1.1.1) Must be retrieved using an accurate method, such as:   ³
 ³                       MediaInfo (using --parsespeed=1), ffprobe, etc.        ³
 ³     17.2) The following information is optional, but recommended:            ³
 ³         17.2.1) Release name and group.                                      ³
 ³         17.2.2) Release date.                                                ³
 ³         17.2.3) Runtime.                                                     ³
 ³         17.2.4) Resolution and aspect ratio.                                 ³
 ³         17.2.5) Frame rate.                                                  ³
 ³         17.2.6) Audio format.                                                ³
 ³         17.2.7) File size.                                                   ³
 ³         17.2.8) Archive information.                                         ³
 ³         17.2.9) List of included subtitles.                                  ³
 ³         17.2.10) CRF value.                                                  ³
 ³                                                                              ³
 ³ 18) [ Common: Tagging ]                                                      ³
 ³     18.1) The following source tags are allowed:                             ³
 ³           WEB, WEBRIP                                                        ³
 ³     18.2) Only the following additional tags are allowed:                    ³
 ³           ALTERNATIVE.CUT, BW, CHRONO, COLORIZED, CONVERT, DC, DIRFIX,       ³
 ³           DUBBED, DV, EXTENDED, EXTRAS, FS, HDR, HDR10Plus, HR, INTERNAL,    ³
 ³           LINE, NFOFIX, OAR, OM, PROOFFIX, PROPER, PURE, RATED, READNFO,     ³
 ³           REAL, REMASTERED, REPACK, RERIP, RESTORED, SAMPLEFIX,              ³
 ³           SOURCE.SAMPLE, SUBBED, THEATRICAL, UNCENSORED, UNCUT, UNRATED, WS  ³
 ³         18.2.1) <VERSION / CUT TITLE> may be used when a tag from 18.2 does  ³
 ³                 not fit.                                                     ³
 ³                     e.g. Deadpool 2: The Super Duper Cut may be tagged as    ³
 ³                     Deadpool.2.2018.The.Super.Duper.Cut                      ³
 ³         18.2.2) Proof must be provided for all remastered/restored releases  ³
 ³                 to prove it is in fact a remaster/restore. Acceptable proof  ³
 ³                 is:                                                          ³
 ³             18.2.2.1) At least 3 screenshots comparing the new and old       ³
 ³                       sources or encodes, depicting a stark difference       ³
 ³                       included in the 'Proof' directory.                     ³
 ³             18.2.2.2) Link in the NFO to a comparison website (e.g. caps-a-  ³
 ³                       holic.com) which has already performed comparisons.    ³
 ³             18.2.2.3) Subsequent releases from the same remastered/restored  ³
 ³                       source may refer back to the first release in the NFO  ³
 ³                       in lieu of including proof again.                      ³
 ³                           e.g. 1080p released first with proof, 720p can     ³
 ³                           refer back to the proof in the 1080p.              ³
 ³         18.2.3) HR may only be used when 21.5.3 applies.                     ³
 ³     18.3) Variations of any additional tag are not allowed.                  ³
 ³               e.g. READ.NFO or RNFO is not allowed, READNFO must be used.    ³
 ³     18.4) READNFO should be used sparingly. Discretion is recommended.       ³
 ³         18.4.1) The READNFO tag must not be used with PROPER, REPACK, or     ³
 ³                 RERIP.                                                       ³
 ³     18.5) Tags must be grouped together, period-delimited, and follow the    ³
 ³           mandatory directory format, see rule 19.4.                         ³
 ³               e.g. EXTENDED.RERIP, REMASTERED.REPACK.                        ³
 ³     18.6) Tags must only be used once, but the order is left to the          ³
 ³           discretion of the group.                                           ³
 ³         18.6.1) Except in situations where the REAL tag is required to be    ³
 ³                 stacked to differentiate between multiple invalid releases.  ³
 ³                     e.g. A REAL.REAL.PROPER is required for a REAL.PROPER    ³
 ³                     and PROPER.                                              ³
 ³     18.7) All HDR content must be tagged as such.                            ³
 ³                                                                              ³
 ³ 19) [ Common: Directory Nomenclature ]                                       ³
 ³     19.1) Acceptable characters allowed for directories are:                 ³
 ³           ABCDEFGHIJKLMNOPQRSTUVWXYZ                                         ³
 ³           abcdefghijklmnopqrstuvwxyz                                         ³
 ³           0123456789._-                                                      ³
 ³     19.2) Single punctuation must be used. Consecutive punctuation is not    ³
 ³           allowed.                                                           ³
 ³               e.g. Show----Name.S01E01, Show.Name....S01E01                  ³
 ³     19.3) Typos or spelling mistakes in the directory are not allowed.       ³
 ³     19.4) Releases must match the following directory format:                ³
 ³         19.4.1)                                                              ³
 ³                 Feature.Title.<YEAR>.<TAGS>.[LANGUAGE].<RESOLUTION>.<FORMAT> ³
 ³                 -GROUP                                                       ³
 ³         19.4.2) Weekly.TV.Show.[COUNTRY_CODE].[YEAR].SXXEXX[Episode.Part].[E ³
 ³                 pisode.Title].<TAGS>.[LANGUAGE].<RESOLUTION>.<FORMAT>-GROUP  ³
 ³         19.4.3) Weekly.TV.Show.Special.SXXE00.Special.Title.<TAGS>.[LANGUAGE ³
 ³                 ].<RESOLUTION>.<FORMAT>-GROUP                                ³
 ³         19.4.4) Multiple.Episode.TV.Show.SXXEXX-EXX[Episode.Part].[Episode.T ³
 ³                 itle].<TAGS>.[LANGUAGE].<RESOLUTION>.<FORMAT>-GROUP          ³
 ³         19.4.5) Cross.Over.TV.Show.One.SXXEXX[Episode.Part].[Episode.Title]_ ³
 ³                 Show.Two.SXXEXX[Episode.Part].[Episode.Title].<TAGS>.[LANGUA ³
 ³                 GE].<RESOLUTION>.<FORMAT>-GROUP                              ³
 ³         19.4.6) Miniseries.Show.PartX.[Episode.Title].<TAGS>.[LANGUAGE].<RES ³
 ³                 OLUTION>.<FORMAT>-GROUP                                      ³
 ³     19.5) Named directory arguments formatted inside <> must be included.    ³
 ³           Optional arguments formatted inside [] can be used  in some cases. ³
 ³         19.5.1) Mini-series parts must be at least 1 integer wide, and       ³
 ³                 values used may extend past 9.                               ³
 ³                     e.g. Miniseries.Part.1, Miniseries.Part.10.              ³
 ³         19.5.2) Episode and seasonal numbering must be at least 2 integers   ³
 ³                 wide, and values used may extend past 99.                    ³
 ³                     e.g. S01E99, S01E100, S101E01.                           ³
 ³         19.5.3) Episode part refers to episodes, usually cartoons or         ³
 ³                 animation, which split episodes into stories by different    ³
 ³                 directors. Episode parts must be alphanumeric (A-Z, a-z,     ³
 ³                 0-9).                                                        ³
 ³                     e.g. The first episode from Season 2 of SpongeBob        ³
 ³                     SquarePants is split into S02E01A/B, see:                ³
 ³                     https://goo.gl/CVGXKu                                    ³
 ³         19.5.4) Season must be omitted if a series is not a mini-series and  ³
 ³                 does not have seasons.                                       ³
 ³                     e.g. One Piece must be tagged as One.Piece.E01.          ³
 ³         19.5.5) Episode title is optional.                                   ³
 ³         19.5.6) Tags refers to all permitted tags only, see section 18.      ³
 ³         19.5.7) Non-English releases must include the language tag. English  ³
 ³                 releases must not include the language tag.                  ³
 ³             19.5.7.1) Language tags must be the full name of the language.   ³
 ³                       Abbreviations or language codes are not allowed.       ³
 ³                           e.g. FRENCH, RUSSIAN, GERMAN.                      ³
 ³         19.5.8) Format refers to whether the release is transcoded           ³
 ³                 (WEBRip.x264/x265) or untouched (WEB.H264/WEB.H265).         ³
 ³     19.6) Do not indicate the ripping, or encoding methods that were used.   ³
 ³           Use the NFO for any technical details.                             ³
 ³     19.7) Non-series releases (e.g. movies, documentaries) must include the  ³
 ³           production year.                                                   ³
 ³     19.8) Different shows with the same title produced in different          ³
 ³           countries must have the ISO 3166-1 alpha 2 country code in  the    ³
 ³           show name.                                                         ³
 ³         19.8.1) Except for UK shows, which must use UK, not GB.              ³
 ³         19.8.2) This rule does not apply to an original show, only shows     ³
 ³                 that succeed the original.                                   ³
 ³                     e.g. The.Office.S01E01 and The.Office.US.S01E01.         ³
 ³     19.9) Different shows with the same title produced in the same country   ³
 ³           which begin in different years must have the year of the first     ³
 ³           season in the directory.                                           ³
 ³         19.9.1) The year is not required for the show broadcasted first.     ³
 ³                     e.g. Second.Chance.S01E01 and Second.Chance.2016.S01E01. ³
 ³     19.10) Different shows with the same titles produced in the same country ³
 ³            which begin in different years must have the ISO-3166-1 alpha 2   ³
 ³            country code followed by the year of the first season in the      ³
 ³            directory.                                                        ³
 ³         19.10.1) See rules 19.8 and 19.9 for country code and year           ³
 ³                  explanations.                                               ³
 ³                      e.g. Wanted.S01E01 (2005), Wanted.AU.S01E01 (2013),     ³
 ³                      Wanted.AU.2016.S01E01 (2016).                           ³
 ³     19.11) Show names which are hyphenated or include punctuation must       ³
 ³            follow the format shown in the title sequence or credits of the   ³
 ³            first episode, limited to the list of acceptable characters.      ³
 ³         19.11.1) If no title card exists, see rule 19.13.1.                  ³
 ³         19.11.2) Additional titles and names given to an individual season   ³
 ³                  must not be used.                                           ³
 ³                      e.g. Archer.Vice.S05, Strike.Back.Legacy.S05.           ³
 ³         19.11.3) Acronyms which show the ellipsis of letters with non-       ³
 ³                  standard characters must be replaced with a period.         ³
 ³                      e.g. M*A*S*H must be M.A.S.H.                           ³
 ³                          e.g. George Carlin... It's Bad for Ya! must be      ³
 ³                          George.Carlin.Its.Bad.For.Ya.                       ³
 ³     19.12) Directory nomenclature and numbering must remain consistent       ³
 ³            across the lifetime of an individual show or event.               ³
 ³         19.12.1) Shows which contain acronyms or secondary titles must       ³
 ³                  follow the format used by the first release.                ³
 ³                      e.g. Law.and.Order.SVU.S01E01 is the standard format    ³
 ³                      that must be used for all following episodes,           ³
 ³                      Law.and.Order.Special.Victims.Unit.S01E02 is not        ³
 ³                      allowed.                                                ³
 ³                      Shadowhunters.The.Mortal.Instruments.S01E01 is the      ³
 ³                      standard format, Shadowhunters.S01E02 is not allowed.   ³
 ³         19.12.2) Shows which air with extended content under modified names  ³
 ³                  must use the primary show name and numbering with the       ³
 ³                  EXTENDED tag.                                               ³
 ³                      e.g. QI.S06E01 and QI.XL.S01E01, must be tagged as      ³
 ³                      QI.S06E01 and QI.S06E01.EXTENDED respectively.          ³
 ³                      Room.101.S01E01 and Room.101.Extra.Storage.S01E01, must ³
 ³                      be tagged as Room.101.S01E01 and                        ³
 ³                      Room.101.S01E01.EXTENDED respectively.                  ³
 ³         19.12.3) Groups cannot change the directory format of a show after a ³
 ³                  second release or episode with the same format exists.      ³
 ³                      e.g. 2016-01-01: Law.and.Order.SVU.S01E01 sets the      ³
 ³                      format.                                                 ³
 ³                      2016-01-08: Law.and.Order.SVU.S01E02 continues the      ³
 ³                      format.                                                 ³
 ³                      2016-01-09:                                             ³
 ³                      Law.and.Order.Special.Victims.Unit.S01E01.DIRFIX is not ³
 ³                      valid as the second episode already exists and          ³
 ³                      continues with the previously defined format.           ³
 ³         19.12.4) Except in situations where the show has an official change  ³
 ³                  in its name, whereby all official references by the         ³
 ³                  broadcaster or studio are of the new name. This change must ³
 ³                  be mentioned in the first NFO with the new name with        ³
 ³                  relevant references.                                        ³
 ³                      e.g. Gold.Rush.Alaska.S01E01 changed to                 ³
 ³                      Gold.Rush.S02E01.                                       ³
 ³         19.12.5) Official name changes for a show does not include the       ³
 ³                  renaming of individual seasons. Seasonal name changes  must ³
 ³                  be ignored.                                                 ³
 ³                      e.g. Power.Rangers.S01 and Power.Rangers.S07 must be    ³
 ³                      used. Power.Rangers.Lost.Galaxy.S07 must not be used.   ³
 ³                      Strike.Back.S03, Strike.Back.S05 must be used.          ³
 ³                      Strike.Back.Vengeance.S03, Strike.Back.Legacy.S05 must  ³
 ³                      not be used.                                            ³
 ³         19.12.6) Any deviations or changes require sufficient evidence       ³
 ³                  listed in the NFO as to the reason for change.              ³
 ³     19.13) User-contributed services such as TVMaze or TheTVDB must not be   ³
 ³            used as a reference when naming and numbering episodes. It may be ³
 ³            used as a general guide; however, official guides must be used.   ³
 ³         19.13.1) The following order must be used as the primary source for  ³
 ³                  naming and numbering.                                       ³
 ³             19.13.1.1) Official website of the show.                         ³
 ³             19.13.1.2) Order and format listed by the original broadcaster.  ³
 ³             19.13.1.3) Network guide.                                        ³
 ³         19.13.2) In situations where official sources have inconsistent      ³
 ³                  listings, or offer none at all, previously established      ³
 ³                  numbering must be used.                                     ³
 ³                      e.g. MythBusters, National Geographic Special Episodes. ³
 ³                                                                              ³
 ³ 20) [ Common: Fixes ]                                                        ³
 ³     20.1) The following fixes are allowed:                                   ³
 ³           DIRFIX, NFOFIX, PROOFFIX, SAMPLEFIX.                               ³
 ³     20.2) Any other form of fix is not allowed.                              ³
 ³               e.g. RARFIX, SFVFIX, SUBFIX                                    ³
 ³     20.3) All fixes require an NFO and must state which release is being     ³
 ³           fixed.                                                             ³
 ³     20.4) A proper may not be released for a flaw which can be fixed with    ³
 ³           the above methods, with the exception of prooffixes, see 15.5.1.   ³
 ³     20.5) If multiple releases from a single season require a DIRFIX, a      ³
 ³           single DIRFIX per season is allowed and recommended.               ³
 ³               e.g. Show.Name.S01.1080p.DIRFIX.WEB.H264-GROUP.                ³
 ³         20.5.1) If a single DIRFIX is used, all relevant releases and        ³
 ³                 corresponding fixes must be listed in the NFO.               ³
 ³                     e.g. The NFO should contain the following:               ³
 ³                     This is the correct order in which to watch the show;    ³
 ³                     Some.Show.S01E02.720p.WEB.H264-GROUP is actually E01     ³
 ³                     Some.Show.S01E01.720p.WEB.H264-GROUP is actually E02     ³
 ³                     Some.Show.S01E03.720p.WEB.H264-GROUP                     ³
 ³                     Some.Show.S01E05.720p.WEB.H264-GROUP is actually E04     ³
 ³                     Some.Show.S01E04.720p.WEB.H264-GROUP is actually E05     ³
 ³                     Some.Show.S01E06.720p.WEB.H264-GROUP                     ³
 ³                                                                              ³
 ³ 21) [ Common: Dupes ]                                                        ³
 ³     21.1) Same second releases, with a maximum acceptable variance of two    ³
 ³           seconds (+/- 2 seconds) between timestamps reported by a majority  ³
 ³           of pre bots, are not considered dupes and should not be nuked.     ³
 ³         21.1.1) Timestamps must be considered as whole integers and round    ³
 ³                 half towards zero.                                           ³
 ³         21.1.2) The earliest timestamp must be used when considering dupes.  ³
 ³                     e.g. Release A: 1451572201.427158 -> 1451572201          ³
 ³                     Release B: 1451572203.626645 -> 1451572203               ³
 ³                     Release C: 1451572204.137665 -> 1451572204               ³
 ³                     Release B does not dupe Release A: 1451572203 -          ³
 ³                     1451572201 = 2, i.e. maximum variance allowed.           ³
 ³                     Release C dupes Releases A and B: 1451572204 -           ³
 ³                     1451572201 = 3, i.e. 3 > 2.                              ³
 ³         21.1.3) In situations where a release is found to contain a          ³
 ³                 technical flaw, same second dupes which do not exhibit any   ³
 ³                 technical flaws must be considered the final release. Groups ³
 ³                 may release a DIRFIX to PROPER for their original release,   ³
 ³                 but it is not required.                                      ³
 ³                     e.g. Release A and Release B are released at the same    ³
 ³                     time. Release A is nuked as containing glitches, Release ³
 ³                     B then becomes the de facto release and a DIRFIX to      ³
 ³                     PROPER may be released.                                  ³
 ³     21.2) WEBRip.x264/x265 dupes WEB.H264/H265.                              ³
 ³     21.3) WEB.H264/H265 does not dupe WEBRip.x264/x265.                      ³
 ³     21.4) WEB.H264/H265 and WEBRip.x264/x265 does not dupe                   ³
 ³           DSR/PDTV/HR.PDTV/AHDTV/HDTV.                                       ³
 ³     21.5) WEB.H264/H265 and WEBRip.x264/x265 dupes an equivalent Retail      ³
 ³           release.                                                           ³
 ³         21.5.1) Except in situations where the aspect ratio of the release   ³
 ³                 exceeds that of its respective retail release.               ³
 ³                     e.g. A 2.39:1 release will not dupe a 1.78:1 retail      ³
 ³                     release, provided there is clearly more visible on-      ³
 ³                     screen footage. Proof demonstrating this difference is   ³
 ³                     recommended, but not mandatory.                          ³
 ³         21.5.2) Except in situations where the release is a different        ³
 ³                 version (e.g. ALTERNATIVE.CUT, COLORIZED) of its respective  ³
 ³                 retail release, and is not censored after uncensored.        ³
 ³                     e.g. An UNCENSORED.720p.WEB.H264 release does not dupe a ³
 ³                     censored 720p.BluRay.x264.                               ³
 ³         21.5.3) Except in situations where SD WEB has a width between, and   ³
 ³                 including, 960 and 1024. In that case it may be released     ³
 ³                 after SD retail, and only if no HD retail release exists.    ³
 ³                 The release must be tagged as HR (High resolution).          ³
 ³     21.6) Native video streams do not dupe converted video streams.          ³
 ³     21.7) Converted video streams dupe native video streams.                 ³
 ³     21.8) Releases with muxed-in subtitles do not dupe releases with         ³
 ³           hardcoded subtitles.                                               ³
 ³     21.9) Releases with hardcoded subtitles (i.e. SUBBED) dupe releases with ³
 ³           muxed in subtitles.                                                ³
 ³     21.10) HDR after SDR or vice versa does not dupe.                        ³
 ³     21.11) Non-foreign tagged English release does not dupe a foreign tagged ³
 ³            release.                                                          ³
 ³                                                                              ³
 ³ 22) [ Common: Propers / Rerips / Repacks ]                                   ³
 ³     22.1) Detailed reasons must be included in the NFO for all repacks,      ³
 ³           rerips, and propers.                                               ³
 ³         22.1.1) Proper reasons must be clearly stated in the NFO, including  ³
 ³                 timestamps and specifics in regards to the flaw when         ³
 ³                 appropriate.                                                 ³
 ³         22.1.2) If a release is not globally nuked, a sample demonstrating   ³
 ³                 the flaws in the original release is required and must be    ³
 ³                 placed within the 'Proof' directory.                         ³
 ³     22.2) Propers are only permitted in the case of a technical flaw in the  ³
 ³           original release.                                                  ³
 ³         22.2.1) Except in cases of video and/or audio based qualitative      ³
 ³                 propers, which are only allowed within 15 minutes of the     ³
 ³                 original release's pre time.                                 ³
 ³             22.2.1.1) All qualitative propers must follow 23.1.1, 23.1.1.1   ³
 ³                       and 23.1.3 to prove superior quality of video and/or   ³
 ³                       audio.                                                 ³
 ³             22.2.1.2) Mixing sources on qualitative based propers is not     ³
 ³                       allowed, use INTERNAL.                                 ³
 ³                           e.g. Video from Netflix, audio from retail. Video  ³
 ³                           from Amazon, audio from Netflix.                   ³
 ³             22.2.1.3) 23.2, 23.2.1 and 23.2.2 must be respected              ³
 ³                       (supplementing internal(led)/internalling with         ³
 ³                       proper(ed)/propering) on all qualitative propers.      ³
 ³         22.2.2) Transcoded releases cannot proper any untouched files.       ³
 ³                     e.g. WEBRip.x264 cannot proper WEB.H264.                 ³
 ³             22.2.2.1) Unless it is a transcode of a lossless stream          ³
 ³                       correcting the technical flaw, see rule 1.4.           ³
 ³             22.2.2.2) Unless it can be proven that all untouched sources are ³
 ³                       flawed which cannot be repaired by transcoding, but a  ³
 ³                       WEBRip does not exhibit the same technical flaw(s).    ³
 ³                           e.g. iTunes, Amazon, and Netflix only offer the    ³
 ³                           content. Amazon and iTunes sourced files cannot be ³
 ³                           repaired by transcoding, however a Netflix WEBRip  ³
 ³                           is fine.                                           ³
 ³         22.2.3) Untouched files can proper transcoded releases for any valid ³
 ³                 technical flaw.                                              ³
 ³     22.3) Audio or visual glitches can be propered with a release which does ³
 ³           not exhibit the same flaw.                                         ³
 ³         22.3.1) In situations where mastering issues results in visual or    ³
 ³                 audio glitches, a release must not be nuked until a valid    ³
 ³                 proper, repack, or rerip using a glitch-free source or       ³
 ³                 master is released.                                          ³
 ³     22.4) Highest quality video and audio, and all subtitles present counts  ³
 ³           at time of pre. Propering with higher quality video, audio, or     ³
 ³           subtitles that may appear later on the source is not allowed, use  ³
 ³           INTERNAL.                                                          ³
 ³               e.g. Movie is posted to Netflix with 24 subtitles and 448      ³
 ³               E-AC3 audio, released as is. Two hours later, five additional  ³
 ³               subtitle tracks are added, and audio is upgraded to 640Kbps    ³
 ³               E-AC3 audio and propered. That proper is invalid.              ³
 ³         22.4.1) This does not apply when certain regions may have degraded   ³
 ³                 video or audio quality, but another region on the source     ³
 ³                 does not.                                                    ³
 ³                     e.g. Netflix has limited bitrates to 10Mbps in South     ³
 ³                     America due to bandwidth limitations, but Europe has the ³
 ³                     expected 25Mbps streams. Using the 10Mbps stream from    ³
 ³                     South America is a technical flaw.                       ³
 ³         22.4.2) Propers based on one region having more subtitles than       ³
 ³                 another is not allowed, use INTERNAL.                        ³
 ³                     e.g. Netflix in Japan has four more subtitle tracks at   ³
 ³                     time of pre than Europe, group releases from Europe      ³
 ³                     missing the extra 4 subtitles - propering from Japan is  ³
 ³                     not allowed, use INTERNAL.                               ³
 ³     22.5) RERIP must be used for ripping or encoding issues.                 ³
 ³     22.6) REPACK must be used for packing or muxing issues.                  ³
 ³                                                                              ³
 ³ 23) [ Common: Internals ]                                                    ³
 ³     23.1) Internals are only allowed when they provide superior quality to   ³
 ³           the last internal/non-internal WEB/WEBRip or non-internal retail   ³
 ³           release, when internaling over:                                    ³
 ³               e.g. Feature is released as WEB, then released again as        ³
 ³               INTERNAL with superior quality. To release another INTERNAL it ³
 ³               must be superior to the last INTERNAL not the first release.   ³
 ³                   e.g. Feature is released as WEB, then retail and then      ³
 ³                   again as INTERNAL retail. To release INTERNAL it must be   ³
 ³                   superior to the non-internal retail, not the internal      ³
 ³                   retail or the first release (WEB).                         ³
 ³         23.1.1) Video quality, a minimum of four B to B frame comparisons    ³
 ³                 (INTERNAL vs last release) in PNG format spread throughout   ³
 ³                 the feature, showing a stark improvement in video quality,   ³
 ³                 must be included in the 'Proof' directory.                   ³
 ³             23.1.1.1) Comparison frame numbers must be included in the NFO   ³
 ³                       file or embedded in comparisons. FFInfo is the         ³
 ³                       recommend method.                                      ³
 ³         23.1.2) Number of subtitle or audio tracks, the release must have    ³
 ³                 all the tracks the previous release had plus new additional  ³
 ³                 tracks.                                                      ³
 ³             23.1.2.1) Inclusion or lacking of closed captions subtitles      ³
 ³                       defined by rule 12.1.5 or stripped SDH subtitles       ³
 ³                       defined by rule 11.4.2.1, must not be taken into       ³
 ³                       consideration.                                         ³
 ³                           e.g. Only improvement is inclusion of closed       ³
 ³                           captions - internal is invalid.                    ³
 ³         23.1.3) Audio quality must be better quality as defined by rule      ³
 ³                 2.3.1.                                                       ³
 ³     23.2) Any aspects (i.e. video, subtitles, audio) not being internalled   ³
 ³           over better quality, must be of equal quality to the previous      ³
 ³           release. As per 23.1.2.1 closed captions and stripped SDH          ³
 ³           subtitles must not be taken into consideration.                    ³
 ³               e.g. Internalling over video quality, but not providing audio  ³
 ³               of equal or better quality or lacking subtitles the previous   ³
 ³               release had, is not allowed.                                   ³
 ³                   e.g. Internalling over audio quality, but not providing    ³
 ³                   video of equal or better quality or lacking subtitles the  ³
 ³                   previous release had, is not allowed.                      ³
 ³                       e.g. Internalling over video quality, having better    ³
 ³                       audio, more/equal subtitles and lacking closed         ³
 ³                       captions the original release had is allowed.          ³
 ³         23.2.1) All improvements must be detailed within the NFO.            ³
 ³         23.2.2) Proof of superior quality for a certain source need only be  ³
 ³                 provided for the first release of a season. All other        ³
 ³                 releases must refer back to the first release in the NFO.    ³
 ³     23.3) Internals with equal files/quality are allowed after one year of   ³
 ³           release and should be used sparingly only when a release has gone  ³
 ³           missing from archives. The release that went missing must be       ³
 ³           mentioned in the NFO.                                              ³
 ³     23.4) Internals are required to follow all rules.                        ³
 ³     23.5) Using DIRFIX.INTERNAL to avoid a nuke is not allowed, and must be  ³
 ³           nuked fix.for.nuke.                                                ³
 ³                                                                              ³
 ³ 24) [ Common: Ruleset Specifics ]                                            ³
 ³     24.1) This ruleset is to be considered the ONLY official ruleset for WEB ³
 ³           and WEBRip releases. It supersedes all previous revisions,         ³
 ³           rulesets and precedents.                                           ³
 ³         24.1.1) Releasing under former rulesets or codecs is not allowed,    ³
 ³                 and must be nuked defunct.ruleset or defunct.codec.          ³
 ³         24.1.2) The naming standards listed in this document must only take  ³
 ³                 effect once a current running season has ended. Any existing ³
 ³                 naming schemes must be used in the event of missing          ³
 ³                 episode(s) from older seasons being filled.                  ³
 ³         24.1.3) This ruleset is not retroactive, and only applies to         ³
 ³                 releases released under it.                                  ³
 ³     24.2) The following definition of keywords throughout this ruleset are   ³
 ³           as follows:                                                        ³
 ³         24.2.1) Must: the rule is explicit in the definition and is          ³
 ³                 compulsory.                                                  ³
 ³         24.2.2) Should: implies the rule is a suggestion, and is non-        ³
 ³                 compulsory.                                                  ³
 ³         24.2.3) Can or may: implies the rule is optional, and is non-        ³
 ³                 compulsory.                                                  ³
 ³         24.2.4) e.g: refers to common examples, elements listed should not   ³
 ³                 be considered as all possibilities.                          ³
 ³         24.2.5) i.e: refers to the only examples, elements listed will be    ³
 ³                 considered as all valid possibilities.                       ³
 ³                                                                              ³
 ³ 25) [ Common: Notes ]                                                        ³
 ³     25.1) The inclusion of 2-pass in this ruleset should not be misconstrued ³
 ³           as preferring it for every release, CRF must always be considered  ³
 ³           the primary method. Instead, it is encouraged for groups to use    ³
 ³           2-pass methods for rare cases when files provided are of extremely ³
 ³           high quality.                                                      ³
 ³         25.1.1) Video which contains an excessive amount of noise may often  ³
 ³                 result in an unnecessary large bitrate. In such situations,  ³
 ³                 encoding to a smaller bitrate using 2-pass can result in a   ³
 ³                 file size improvement with negligible loss in video quality. ³
 ³     25.2) Dolby Vision (DV) and HDR10+ (HDR10Plus) are considered out of     ³
 ³           scope, due to lack of support and no standard workflow for         ³
 ³           producing them, and must only be released as INTERNAL.             ³
 ³         25.2.1) DV encodes must have DV Profile (--dolby-vision-profile) and ³
 ³                 RPU metadata (--dolby-vision-rpu) set to the same values as  ³
 ³                 the source.                                                  ³
 ³             25.2.1.1) Including the DV enhancement layer on a HDR or         ³
 ³                       HDR10Plus encode is another option.                    ³
 ³             25.2.1.2) Until such a time as Matroska gains support for Dolby  ³
 ³                       Vision, MP4 may be used and dlb_mp4base or MP4Box are  ³
 ³                       the only allowed muxers. It is fully at the group's    ³
 ³                       discretion to work around any pitfalls of the MP4      ³
 ³                       container (e.g. limited audio codec and subtitles      ³
 ³                       support). Groups are exempt from any rules with        ³
 ³                       regards to these pitfalls.                             ³
 ³         25.2.2) HDR10Plus releases, in addition to HDR specifics (see        ³
 ³                 4.23.4), must have SEI tone mapping metadata (--dhdr10-info) ³
 ³                 set to the same values as the source. Tone mapping metadata  ³
 ³                 optimisation (--dhdr10-opt) must be enabled.                 ³
 ³         25.2.3) Any metadata must be extracted from the whole concatenated   ³
 ³                 source, not a partial source. e.g. the first m2ts file.      ³
 ³         25.2.4) Until such a time as mapping metadata to cropped encodes is  ³
 ³                 possible, DV and HDR10Plus are exempt from cropping rules    ³
 ³                 and must be left uncropped.                                  ³
 ³         25.2.5) The rules below will apply in a hypothetical future when all ³
 ³                 pitfalls and issues mentioned above are resolved, support    ³
 ³                 has become widespread, does not result in any playback       ³
 ³                 issues and at least three months have elapsed from support   ³
 ³                 being added.                                                 ³
 ³             25.2.5.1) If the source contains a DV enhancement layer, it must ³
 ³                       be muxed in with the correct DV Profile set for the    ³
 ³                       source during muxing.                                  ³
 ³             25.2.5.2) If the source contains HDR10Plus SEI metadata, 25.2.2  ³
 ³                       is mandatory.                                          ³
 ³             25.2.5.3) 25.2.3 must be respected.                              ³
 ³             25.2.5.4) The HDR10Plus tag must not be used.                    ³
 ³             25.2.5.5) DV single layer encodes (see 25.2.1) or untouched are  ³
 ³                       only allowed when the source is single layer DV (i.e.  ³
 ³                       No HDR, only DV). The DV tag must only be used in the  ³
 ³                       case of single layer DV.                               ³
 ³             25.2.5.6) Dolby Vision (DV) and HDR10+ (HDR10Plus) no longer     ³
 ³                       need be released only as INTERNAL.                     ³
 ³     25.3) YouTube may only be used as a source if geographical restrictions  ³
 ³           apply to legitimate content uploaded by the rights holder or on a  ³
 ³           verified channel.                                                  ³
 ³     25.4) Re-releasing uncropped WEB which has already been released as      ³
 ³           uncropped INTERNAL.WEB or cropped WEBRIP is not allowed and must   ³
 ³           be considered dupe.                                                ³
 ³         25.4.1) Any WEB release nuked solely for not being cropped and not   ³
 ³                 reripped, repacked or propered may be unnuked and now be     ³
 ³                 considered valid.                                            ³
 ³     25.5) Re-releasing any INTERNAL WEB/WEBRips that duped                   ³
 ³           DSR/PDTV/HR.PDTV/AHDTV/HDTV under v1.0 of this ruleset is not      ³
 ³           allowed and must be considered dupe.                               ³
 ³                                                                              ³
 ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
 ³                                                                              ³
 ³ [ Signed (in alphabetical order) - 92 Groups ]                               ³
 ³ 57CHAN, 707, aAF, ADMiT, ADRENALiNE, AMCON, AMRAP, ANiURL, APRiCiTY,         ³
 ³ ASCENDANCE, ASSOCiATE, AVR, BAKFYLLA, BALLIN, BARGE, BATV, BAWSER, BiQ,      ³
 ³ BRAINFUEL, BREXiT, CAFFEiNE, CBFM, CookieMonster, CREED, CRiMSON, CROOKS,    ³
 ³ DANES, DEADPOOL, DHD, DISKRIMINERING, DKiDS, DKiNO, EDHD, ELIMINERING, EMX,  ³
 ³ EXECUTION, EXEKVERING, FaiLED, FAiRCHANCE, FELTET, FFD, FLEKSNES, GIMINI,    ³
 ³ GRiP, HANGAR17, HENRETTELSE, HOTLiPS, iNDKAST, iNSPiRiT, iNTENSO, JAWN, JRP, ³
 ³ KOMPOST, KYR, LEiEFiLM, LEViTATE, LiGATE, LSDK, MenInTights, METCON, MoA,    ³
 ³ MTB, NCC1701D, NiXON, NORPiLT, NORUSH, OldSeasons, PETRiFiED, PLAYD,         ³
 ³ PLUTONiUM, QPEL, REGRET, RiVER, SECRETOS, SERIOUSLY, SHERLOCK, SHiFT, SKGTV, ³
 ³ SKRiTT, SOAPLOVE, STATOiL, TRUMP, TVADDiCT, TViLLAGE, TVSLiCES, TWERK,       ³
 ³ UNDERBELLY, VERUM, WALT, WATCHER, WATSON, WEBELL                             ³
 ³                                                                              ³
 ³ [ Refused to Sign ]                                                          ³
 ³ This refused to sign list consists of 31 groups, many of them sub-groups.    ³
 ³                                                                              ³
 ³ ACES, BAMBOOZLE, BiSH, BRASS, CONVOY, CROSSFIT, CUTEYS, DARKFLiX,            ³
 ³ DECAPiTATiON, DEFY, ELiMiNATE, FLX, HANDBOLL, HILLARY, I_KnoW, KiNDERGARTEN, ³
 ³ KLINGON, LiNKLE, MEMENTO, MORSOM, OATH, RADiOACTiVE, ROBOTS, ROWBOATS,       ³
 ³ SLAUGHTER, STRiFE, TBS, TURBO, URANiME, W4F, XLF                             ³
 ³                                                                              ³
 ³ These groups felt encouraging the use of high quality sources with           ³
 ³ qualitative based propers was "anti-competitive".                            ³
 ³ They believe it's acceptable to use worse sources to win races instead of    ³
 ³ waiting mere seconds and picking the better ones.                            ³
 ³                                                                              ³
 ³ They demanded that they be allowed to release internals that were either     ³
 ³ worse quality, technically flawed or same file dupes.                        ³
 ³ They feel that "because it's always been that way" no change should happen   ³
 ³ and are standing in the way of progress.                                     ³
 ³                                                                              ³
 ³ They banded together and went against majority voting on changes made to the ³
 ³ rules below:                                                                 ³
 ³ Rule 22.2.1 (Qualitative based propers allowed within 15 min of pre time) -  ³
 ³ 19 for and 7 against.                                                        ³
 ³ Rule 23.1 (Internals only for better quality) - 27 for and 2 against.        ³
 ³                                                                              ³
 ³ Every group present during drafting was given 1 vote and collectively        ³
 ³ decided on all changes made.                                                 ³
 ³ This egregious and unreasonable behaviour will not be tolerated in a         ³
 ³ democratic system.                                                           ³
 ³                                                                              ³
 ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
 ³                                                                              ³
 ³ [ Revisions ]                                                                ³
 ³ 2016-03-16 - v1.0 - Final commit and public release of ruleset.              ³
 ³ 2020-05-13 - v2.0 - Restructuring and hardening of all rules, UHD and HDR    ³
 ³ supported properly, qualitative based propers allowed, internals specificity ³
 ³ hardened.                                                                    ³
 ³                                                                              ³
 ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
 |