private void ReadVertexDuplicationIndices(XFileTokenReader tokenReader)
        {
            if (tokenReader.FileReader.GetNextToken() == XToken.Name)
            {
                tokenReader.ReadName();
            }

            tokenReader.ReadAssert(XToken.OpenedBrace);

            int indicesCount = tokenReader.ReadIntegerFromList();

            this.OriginalVerticesCount    = tokenReader.ReadIntegerFromList();
            this.VertexDuplicationIndices = tokenReader.ReadIntegerArrayFromList(indicesCount);

            tokenReader.ReadAssert(XToken.ClosedBrace);
        }