Perl is a dynamic, dynamically-typed, high-level, scripting (interpreted) language most comparable with PHP and Python. Perl's syntax owes a lot to ancient shell scripting tools, and it is famed for its overuse of confusing symbols, the majority of which are impossible to Google for. Perl's shell scripting heritage makes it great for writing glue code: scripts which link together other scripts and programs. Perl is ideally suited for processing text data and producing more text data. Perl is widespread, popular, highly portable and well-supported. Perl was designed with the philosophy "There's More Than One Way To Do It" (TMTOWTDI) (contrast with Python, where "there should be one - and preferably only one - obvious way to do it").
Perl has horrors, but it also has some great redeeming features. In this respect it is like every other programming language ever created.
This document is intended to be informative, not evangelical. It is aimed at people who, like me:
This document is intended to be as short as possible, but no shorter.
The following can be said of almost every declarative statement in this document: "that's not, strictly speaking, true; the situation is actually a lot more complicated". If you see a serious lie, point it out, but I reserve the right to preserve certain critical lies-to-children.
Throughout this document I'm using example print statements to output data but not explicitly appending line breaks. This is done to prevent me from going crazy and to give greater attention to the actual string being printed in each case, which is invariably more important. In many examples, this results in alotofwordsallsmusheduptogetherononeline if the code is run in reality. Try to ignore this.
A Perl script is a text file with the extension .pl.
Here's the full text of helloworld.pl:
use strict; use warnings;Perl scripts are interpreted by the Perl interpreter,
perlorperl.exe:perl helloworld.pl [arg0 [arg1 [arg2 ...]]]A few immediate notes. Perl's syntax is highly permissive and it will allow you to do things which result in ambiguous-looking statements with unpredictable behaviour. There's no point in me explaining what these behaviours are, because you want to avoid them. The way to avoid them is to put
use strict; use warnings;at the very top of every Perl script or module that you create. Statements of the formuse foo;are pragmas. A pragma is a signal toperl.exe, which takes effect when initial syntactic validation is being performed, before the program starts running. These lines have no effect when the interpreter encounters them at run time.The semicolon,
;, is the statement terminator. The symbol#begins a comment. A comment lasts until the end of the line. Perl has no block comment syntax.Variables
Perl variables come in three types: scalars, arrays and hashes. Each type has its own sigil:
$,@and%respectively. Variables are declared usingmy, and remain in scope until the end of the enclosing block or file.Scalar variables
A scalar variable can contain:
undef(corresponds toNonein Python,nullin PHP)- a number (Perl does not distinguish between an integer and a float)
- a string
- a reference to any other variable.
my $undef = undef; print $undef; # prints the empty string "" and raises a warning # implicit undef: my $undef2; print $undef2; # prints "" and raises exactly the same warningmy $num = 4040.5; print $num; # "4040.5"my $string = "world"; print $string; # "world"(References are coming up shortly.)
String concatenation using the
.operator (same as PHP):print "Hello ".$string; # "Hello world""Booleans"
Perl has no boolean data type. A scalar in an
ifstatement evaluates to boolean "false" if and only if it is one of the following:
undef- number
0- string
""- string
"0".The Perl documentation repeatedly claims that functions return "true" or "false" values in certain situations. In practice, when a function is claimed to return "true" it usually returns
1, and when it is claimed to return false it usually returns the empty string,"".Weak typing
It is impossible to determine whether a scalar contains a "number" or a "string". More precisely, it should never be necessary to do this. Whether a scalar behaves like a number or a string depends on the operator with which it is used. When used as a string, a scalar will behave like a string. When used as a number, a scalar will behave like a number (raising a warning if this isn't possible):
my $str1 = "4G"; my $str2 = "4H"; print $str1 . $str2; # "4G4H" print $str1 + $str2; # "8" with two warnings print $str1 eq $str2; # "" (empty string, i.e. false) print $str1 == $str2; # "1" with two warnings # The classic error print "yes" == "no"; # "1" with two warnings; both values evaluate to 0 when used as numbersThe lesson is to always using the correct operator in the correct situation. There are separate operators for comparing scalars as numbers and comparing scalars as strings:
# Numerical operators: <, >, <=, >=, ==, !=, <=>, +, * # String operators: lt, gt, le, ge, eq, ne, cmp, ., xArray variables
An array variable is a list of scalars indexed by integers beginning at 0. In Python this is known as a list, and in PHP this is known as an array. An array is declared using a parenthesised list of scalars:
my @array = ( "print", "these", "strings", "out", "for", "me", # trailing comma is okay );You have to use a dollar sign to access a value from an array, because the value being retrieved is not an array but a scalar:
print $array[0]; # "print" print $array[1]; # "these" print $array[2]; # "strings" print $array[3]; # "out" print $array[4]; # "for" print $array[5]; # "me" print $array[6]; # returns undef, prints "" and raises a warningYou can use negative indices to retrieve entries starting from the end and working backwards:
print $array[-1]; # "me" print $array[-2]; # "for" print $array[-3]; # "out" print $array[-4]; # "strings" print $array[-5]; # "these" print $array[-6]; # "print" print $array[-7]; # returns undef, prints "" and raises a warningThere is no collision between a scalar
$varand an array@varcontaining a scalar entry$var[0]. There may, however, be reader confusion, so avoid this.To get an array's length:
print "This array has ".(scalar @array)."elements"; # "This array has 6 elements" print "The last populated index is ".$#array; # "The last populated index is 5"The arguments with which the original Perl script was invoked are stored in the built-in array variable
@ARGV.Variables can be interpolated into strings:
print "Hello $string"; # "Hello world" print "@array"; # "print these strings out for me"Caution. One day you will put somebody's email address inside a string,
"jeff@gmail.com". This will cause Perl to look for an array variable called@gmailto interpolate into the string, and not find it, resulting in a runtime error. Interpolation can be prevented in two ways: by backslash-escaping the sigil, or by using single quotes instead of double quotes.print "Hello \$string"; # "Hello $string" print 'Hello $string'; # "Hello $string" print "\@array"; # "@array" print '@array'; # "@array"Hash variables
A hash variable is a list of scalars indexed by strings. In Python this is known as a dictionary, and in PHP it is known as an array.
my %scientists = ( "Newton" => "Isaac", "Einstein" => "Albert", "Darwin" => "Charles", );Notice how similar this declaration is to an array declaration. In fact, the double arrow symbol
=>is called a "fat comma", because it is just a synonym for the comma separator. A hash is declared using a list with an even number of elements, where the even-numbered elements (0, 2, ...) are all taken as strings.Once again, you have to use a dollar sign to access a value from a hash, because the value being retrieved is not a hash but a scalar:
print $scientists{"Newton"}; # "Isaac" print $scientists{"Einstein"}; # "Albert" print $scientists{"Darwin"}; # "Charles" print $scientists{"Dyson"}; # returns undef, prints "" and raises a warningNote the braces used here. Again, there is no collision between a scalar
$varand a hash%varcontaining a scalar entry$var{"foo"}.You can convert a hash straight to an array with twice as many entries, alternating between key and value (and the reverse is equally easy):
my @scientists = %scientists;However, unlike an array, the keys of a hash have no underlying order. They will be returned in whatever order is more efficient. So, notice the rearranged order but preserved pairs in the resulting array:
print "@scientists"; # something like "Einstein Albert Darwin Charles Newton Isaac"To recap, you have to use square brackets to retrieve a value from an array, but you have to use braces to retrieve a value from a hash. The square brackets are effectively a numerical operator and the braces are effectively a string operator. The fact that the index supplied is a number or a string is of absolutely no significance:
my $data = "orange"; my @data = ("purple"); my %data = ( "0" => "blue"); print $data; # "orange" print $data[0]; # "purple" print $data["0"]; # "purple" print $data{0}; # "blue" print $data{"0"}; # "blue"Lists
A list in Perl is a different thing again from either an array or a hash. You've just seen several lists:
( "print", "these", "strings", "out", "for", "me", ) ( "Newton" => "Isaac", "Einstein" => "Albert", "Darwin" => "Charles", )A list is not a variable. A list is an ephemeral value which can be assigned to an array or a hash variable. This is why the syntax for declaring array and hash variables is identical. There are many situations where the terms "list" and "array" can be used interchangeably, but there are equally many where lists and arrays display subtly different and extremely confusing behaviour.
Okay. Remember that
=>is just,in disguise and then look at this example:("one", 1, "three", 3, "five", 5) ("one" => 1, "three" => 3, "five" => 5)The use of
=>hints that one of these lists is an array declaration and the other is a hash declaration. But on their own, neither of them are declarations of anything. They are just lists. Identical lists. Also:()There aren't even hints here. This list could be used to declare an empty array or an empty hash and the
perlinterpreter clearly has no way of telling either way. Once you understand this odd aspect of Perl, you will also understand why the following fact must be true: List values cannot be nested. Try it:my @array = ( "apples", "bananas", ( "inner", "list", "several", "entries", ), "cherries", );Perl has no way of knowing whether
("inner", "list", "several", "entries")is supposed to be an inner array or an inner hash. Therefore, Perl assumes that it is neither and flattens the list out into a single long list:print $array[0]; # "apples" print $array[1]; # "bananas" print $array[2]; # "inner" print $array[3]; # "list" print $array[4]; # "several" print $array[5]; # "entries" print $array[6]; # "cherries"The same is true whether the fat comma is used or not:
my %hash = ( "beer" => "good", "bananas" => ( "green" => "wait", "yellow" => "eat", ), ); # The above raises a warning because the hash was declared using a 7-element list print $hash{"beer"}; # "good" print $hash{"bananas"}; # "green" print $hash{"wait"}; # "yellow"; print $hash{"eat"}; # undef, so prints "" and raises a warningOf course, this does make it easy to concatenate multiple arrays together:
my @bones = ("humerus", ("jaw", "skull"), "tibia"); my @fingers = ("thumb", "index", "middle", "ring", "little"); my @parts = (@bones, @fingers, ("foot", "toes"), "eyeball", "knuckle"); print @parts;More on this shortly.
Context
Perl's most distinctive feature is that its code is context-sensitive. Every expression in Perl is evaluated either in scalar context or list context, depending on whether it is expected to produce a scalar or a list. Without knowing the context in which an expression is evaluated, it is impossible to determine what it will evaluate to.
A scalar assignment such as
my $scalar =evaluates its expression in scalar context. Here, the expression is"Mendeleev":my $scalar = "Mendeleev";An array or hash assignment such as
my @array =ormy %hash =evaluates its expression in list context. Here, the expression is("Alpha", "Beta", "Gamma", "Pie")(or("Alpha" => "Beta", "Gamma" => "Pie"), the two are equivalent):my @array = ("Alpha", "Beta", "Gamma", "Pie"); my %hash = ("Alpha" => "Beta", "Gamma" => "Pie");A scalar expression evaluated in list context is silently converted into a single-element list:
my @array = "Mendeleev"; # same as 'my @array = ("Mendeleev");'An array expression evaluated in scalar context returns the length of the array:
my @array = ("Alpha", "Beta", "Gamma", "Pie"); my $scalar = @array; print $scalar; # "4"A list expression (a list is different from an array, remember?) evaluated in scalar context returns not the length of the list but the final scalar in the list:
my $scalar = ("Alpha", "Beta", "Gamma", "Pie"); print $scalar; # "Pie"The
my @array = ("Alpha", "Beta", "Goo"); my $scalar = "-X-"; print @array; # "AlphaBetaGoo"; print $scalar, @array, 98; # "-X-AlphaBetaGoo98";Caution. Many Perl expressions and built-in functions display radically different behaviour depending on the context in which they are evaluated. The most prominent example is the function
reverse. In list context,reversetreats its arguments as a list, and reverses the list. In scalar context,reverseconcatenates the whole list together and then reverses it as a single word.print reverse "hello world"; # "hello world" my $string = reverse "hello world"; print $string; # "dlrow olleh"You can force any expression to be evaluated in scalar context using the
scalarbuilt-in function:print scalar reverse "hello world"; # "dlrow olleh"Remember how we used
scalarearlier, to get the length of an array?References and nested data structures
In the same way that lists cannot contain lists as elements, arrays and hashes cannot contain other arrays and hashes as elements. They can only contain scalars. Watch what happens when we try:
my @outer = ("Sun", "Mercury", "Venus", undef, "Mars"); my @inner = ("Earth", "Moon"); $outer[3] = @inner; print $outer[3]; # "2"
$outer[3]is a scalar, so it demands a scalar value. When you try to assign an array value like@innerto it,@inneris evaluated in scalar context. This is the same as assigningscalar @inner, which is the length of array@inner, which is 2.However, a scalar variable may contain a reference to any variable, including an array variable or a hash variable. This is how more complicated data structures are created in Perl.
A reference is created using a backslash.
my $colour = "Indigo"; my $scalarRef = \$colour;Any time you would use the name of a variable, you can instead just put some braces in, and, within the braces, put a reference to a variable instead.
print $colour; # "Indigo" print $scalarRef; # e.g. "SCALAR(0x182c180)" print ${ $scalarRef }; # "Indigo"As long as the result is not ambiguous, you can omit the braces too:
print $$scalarRef; # "Indigo"If your reference is a reference to an array or hash variable, you can get data out of it using braces or using the more popular arrow operator,
->:my @colours = ("Red", "Orange", "Yellow", "Green", "Blue"); my $arrayRef = \@colours; print $colours[0]; # direct array access print ${ $arrayRef }[0]; # use the reference to get to the array print $arrayRef->[0]; # exactly the same thing my %atomicWeights = ("Hydrogen" => 1.008, "Helium" => 4.003, "Manganese" => 54.94); my $hashRef = \%atomicWeights; print $atomicWeights{"Helium"}; # direct hash access print ${ $hashRef }{"Helium"}; # use a reference to get to the hash print $hashRef->{"Helium"}; # exactly the same thing - this is very commonDeclaring a data structure
Here are four examples, but in practice the last one is the most useful.
my %owner1 = ( "name" => "Santa Claus", "DOB" => "1882-12-25", ); my $owner1Ref = \%owner1; my %owner2 = ( "name" => "Mickey Mouse", "DOB" => "1928-11-18", ); my $owner2Ref = \%owner2; my @owners = ( $owner1Ref, $owner2Ref ); my $ownersRef = \@owners; my %account = ( "number" => "12345678", "opened" => "2000-01-01", "owners" => $ownersRef, );That's obviously unnecessarily laborious, because you can shorten it to:
my %owner1 = ( "name" => "Santa Claus", "DOB" => "1882-12-25", ); my %owner2 = ( "name" => "Mickey Mouse", "DOB" => "1928-11-18", ); my @owners = ( \%owner1, \%owner2 ); my %account = ( "number" => "12345678", "opened" => "2000-01-01", "owners" => \@owners, );It is also possible to declare anonymous arrays and hashes using different symbols. Use square brackets for an anonymous array and braces for an anonymous hash. The value returned in each case is a reference to the anonymous data structure in question. Watch carefully, this results in exactly the same
%accountas above:# Braces denote an anonymous hash my $owner1Ref = { "name" => "Santa Claus", "DOB" => "1882-12-25", }; my $owner2Ref = { "name" => "Mickey Mouse", "DOB" => "1928-11-18", }; # Square brackets denote an anonymous array my $ownersRef = [ $owner1Ref, $owner2Ref ]; my %account = ( "number" => "12345678", "opened" => "2000-01-01", "owners" => $ownersRef, );Or, for short (and this is the form you should actually use when declaring complex data structures in-line):
my %account = ( "number" => "31415926", "opened" => "3000-01-01", "owners" => [ { "name" => "Philip Fry", "DOB" => "1974-08-06", }, { "name" => "Hubert Farnsworth", "DOB" => "2841-04-09", }, ], );Getting information out of a data structure
Now, let's assume that you still have
%accountkicking around but everything else (if there was anything else) has fallen out of scope. You can print the information out by reversing the same procedure in each case. Again, here are four examples, of which the last is the most useful:my $ownersRef = $account{"owners"}; my @owners = @{ $ownersRef }; my $owner1Ref = $owners[0]; my %owner1 = %{ $owner1Ref }; my $owner2Ref = $owners[1]; my %owner2 = %{ $owner2Ref }; print "Account #", $account{"number"}, "\n"; print "Opened on ", $account{"opened"}, "\n"; print "Joint owners:\n"; print "\t", $owner1{"name"}, " (born ", $owner1{"DOB"}, ")\n"; print "\t", $owner2{"name"}, " (born ", $owner2{"DOB"}, ")\n";Or, for short:
my @owners = @{ $account{"owners"} }; my %owner1 = %{ $owners[0] }; my %owner2 = %{ $owners[1] }; print "Account #", $account{"number"}, "\n"; print "Opened on ", $account{"opened"}, "\n"; print "Joint owners:\n"; print "\t", $owner1{"name"}, " (born ", $owner1{"DOB"}, ")\n"; print "\t", $owner2{"name"}, " (born ", $owner2{"DOB"}, ")\n";Or using references and the
->operator:my $ownersRef = $account{"owners"}; my $owner1Ref = $ownersRef->[0]; my $owner2Ref = $ownersRef->[1]; print "Account #", $account{"number"}, "\n"; print "Opened on ", $account{"opened"}, "\n"; print "Joint owners:\n"; print "\t", $owner1Ref->{"name"}, " (born ", $owner1Ref->{"DOB"}, ")\n"; print "\t", $owner2Ref->{"name"}, " (born ", $owner2Ref->{"DOB"}, ")\n";And if we completely skip all the intermediate values:
print "Account #", $account{"number"}, "\n"; print "Opened on ", $account{"opened"}, "\n"; print "Joint owners:\n"; print "\t", $account{"owners"}->[0]->{"name"}, " (born ", $account{"owners"}->[0]->{"DOB"}, ")\n"; print "\t", $account{"owners"}->[1]->{"name"}, " (born ", $account{"owners"}->[1]->{"DOB"}, ")\n";How to shoot yourself in the foot with array references
This array has five elements:
my @array1 = (1, 2, 3, 4, 5); print @array1; # "12345"This array, however, has ONE element (which happens to be a reference to an anonymous, five-element array):
my @array2 = [1, 2, 3, 4, 5]; print @array2; # e.g. "ARRAY(0x182c180)"This scalar is a reference to an anonymous, five-element array:
my $array3Ref = [1, 2, 3, 4, 5]; print $array3Ref; # e.g. "ARRAY(0x22710c0)" print @{ $array3Ref }; # "12345" print @$array3Ref; # "12345"Conditionals
if...elsif...else...No surprises here, other than the spelling of
elsif:my $word = "antidisestablishmentarianism"; my $strlen = length $word; if($strlen >= 15) { print "'", $word, "' is a very long word"; } elsif(10 <= $strlen && $strlen < 15) { print "'", $word, "' is a medium-length word"; } else { print "'", $word, "' is a short word"; }Perl provides a shorter "statement
ifcondition" syntax which is highly recommended for short statements:print "'", $word, "' is actually enormous" if $strlen >= 20;
unless...else...my $temperature = 20; unless($temperature > 30) { print $temperature, " degrees Celsius is not very hot"; } else { print $temperature, " degrees Celsius is actually pretty hot"; }
unlessblocks are generally best avoided like the plague because they are very confusing. An "unless[...else]" block can be trivially refactored into an "if[...else]" block by negating the condition [or by keeping the condition and swapping the blocks]. Mercifully, there is noelsunlesskeyword.This, by comparison, is highly recommended because it is so easy to read:
print "Oh no it's too cold" unless $temperature > 15;Ternary operator
The ternary operator
?:allows simpleifstatements to be embedded in a statement. The canonical use for this is singular/plural forms:my $gain = 48; print "You gained ", $gain, " ", ($gain == 1 ? "experience point" : "experience points"), "!";Aside: singulars and plurals are best spelled out in full in both cases. Don't do something clever like the following, because anybody searching the codebase to replace the words "tooth" or "teeth" will never find this line:
my $lost = 1; print "You lost ", $lost, " t", ($lost == 1 ? "oo" : "ee"), "th!";Ternary operators may be nested:
my $eggs = 5; print "You have ", $eggs == 0 ? "no eggs" : $eggs == 1 ? "an egg" : "some eggs";
ifstatements evaluate their conditions in scalar context. For example,if(@array)returns true if and only if@arrayhas 1 or more elements. It doesn't matter what those elements are - they may containundefor other false values for all we care.Loops
There's More Than One Way To Do It.
Perl has a conventional
whileloop:my $i = 0; while($i < scalar @array) { print $i, ": ", $array[$i]; $i++; }Perl also offers the
untilkeyword:my $i = 0; until($i >= scalar @array) { print $i, ": ", $array[$i]; $i++; }These
doloops are almost equivalent to the above (a warning would be raised if@arraywere empty):my $i = 0; do { print $i, ": ", $array[$i]; $i++; } while ($i < scalar @array);and
my $i = 0; do { print $i, ": ", $array[$i]; $i++; } until ($i >= scalar @array);Basic C-style
forloops are available too. Notice how we put amyinside theforstatement, declaring$ionly for the scope of the loop:for(my $i = 0; $i < scalar @array; $i++) { print $i, ": ", $array[$i]; } # $i has ceased to exist here, which is much tidier.This kind of
forloop is considered old-fashioned and should be avoided where possible. Native iteration over a list is much nicer. Note: unlike PHP, theforandforeachkeywords are synonyms. Just use whatever looks most readable:foreach my $string ( @array ) { print $string; }If you do need the indices, the range operator
..creates an anonymous list of integers:foreach my $i ( 0 .. $#array ) { print $i, ": ", $array[$i]; }You can't iterate over a hash. However, you can iterate over its keys. Use the
keysbuilt-in function to retrieve an array containing all the keys of a hash. Then use theforeachapproach that we used for arrays:foreach my $key (keys %scientists) { print $key, ": ", $scientists{$key}; }Since a hash has no underlying order, the keys may be returned in any order. Use the
sortbuilt-in function to sort the array of keys alphabetically beforehand:foreach my $key (sort keys %scientists) { print $key, ": ", $scientists{$key}; }If you don't provide an explicit iterator, Perl uses a default iterator,
$_.$_is the first and friendliest of the built-in variables:foreach ( @array ) { print $_; }If using the default iterator, and you only wish to put a single statement inside your loop, you can use the super-short loop syntax:
print $_ foreach @array;Loop control
nextandlastcan be used to control the progress of a loop. In most programming languages these are known ascontinueandbreakrespectively. We can also optionally provide a label for any loop. By convention, labels are written inALLCAPITALS. Having labelled the loop,nextandlastmay target that label. This example finds primes below 100:CANDIDATE: for my $candidate ( 2 .. 100 ) { for my $divisor ( 2 .. sqrt $candidate ) { next CANDIDATE if $candidate % $divisor == 0; } print $candidate." is prime\n"; }Array functions
In-place array modification
We'll use
@stackto demonstrate these:my @stack = ("Fred", "Eileen", "Denise", "Charlie"); print @stack; # "FredEileenDeniseCharlie"
popextracts and returns the final element of the array. This can be thought of as the top of the stack:print pop @stack; # "Charlie" print @stack; # "FredEileenDenise"
pushappends extra elements to the end of the array:push @stack, "Bob", "Alice"; print @stack; # "FredEileenDeniseBobAlice"
shiftextracts and returns the first element of the array:print shift @stack; # "Fred" print @stack; # "EileenDeniseBobAlice"
unshiftinserts new elements at the beginning of the array:unshift @stack, "Hank", "Grace"; print @stack; # "HankGraceEileenDeniseBobAlice"
pop,push,shiftandunshiftare all special cases ofsplice.spliceremoves and returns an array slice, replacing it with a different array slice:print splice(@stack, 1, 4, "<<<", ">>>"); # "GraceEileenDeniseBob" print @stack; # "Hank<<<>>>Alice"Creating new arrays from old
Perl provides the following functions which act on arrays to create other arrays.
The
joinfunction concatenates many strings into one:my @elements = ("Antimony", "Arsenic", "Aluminum", "Selenium"); print @elements; # "AntimonyArsenicAluminumSelenium" print "@elements"; # "Antimony Arsenic Aluminum Selenium" print join(", ", @elements); # "Antimony, Arsenic, Aluminum, Selenium"In list context, the
reversefunction returns a list in reverse order. In scalar context,reverseconcatenates the whole list together and then reverses it as a single word.print reverse("Hello", "World"); # "WorldHello" print reverse("HelloWorld"); # "HelloWorld" print scalar reverse("HelloWorld"); # "dlroWolleH" print scalar reverse("Hello", "World"); # "dlroWolleH"The
mapfunction takes an array as input and applies an operation to every scalar$_in this array. It then constructs a new array out of the results. The operation to perform is provided in the form of a single expression inside braces:my @capitals = ("Baton Rouge", "Indianapolis", "Columbus", "Montgomery", "Helena", "Denver", "Boise"); print join ", ", map { uc $_ } @capitals; # "BATON ROUGE, INDIANAPOLIS, COLUMBUS, MONTGOMERY, HELENA, DENVER, BOISE"The
grepfunction takes an array as input and returns a filtered array as output. The syntax is similar tomap. This time, the second argument is evaluated for each scalar$_in the input array. If a boolean true value is returned, the scalar is put into the output array, otherwise not.print join ", ", grep { length $_ == 6 } @capitals; # "Helena, Denver"Obviously, the length of the resulting array is the number of successful matches, which means you can use
grepto quickly check whether an array contains an element:print scalar grep { $_ eq "Columbus" } @capitals; # "1"
grepandmapmay be combined to form list comprehensions, an exceptionally powerful feature conspicuously absent from many other programming languages.By default, the
sortfunction returns the input array, sorted into lexical (alphabetical) order:my @elevations = (19, 1, 2, 100, 3, 98, 100, 1056); print join ", ", sort @elevations; # "1, 100, 100, 1056, 19, 2, 3, 98"However, similar to
grepandmap, you may supply some code of your own. Sorting is always performed using a series of comparisons between two elements. Your block receives$aand$bas inputs and should return -1 if$ais "less than"$b, 0 if they are "equal" or 1 if$ais "greater than"$b.The
cmpoperator does exactly this for strings:print join ", ", sort { $a cmp $b } @elevations; # "1, 100, 100, 1056, 19, 2, 3, 98"The "spaceship operator",
<=>, does the same for numbers:print join ", ", sort { $a <=> $b } @elevations; # "1, 2, 3, 19, 98, 100, 100, 1056"
$aand$bare always scalars, but they can be references to quite complex objects which are difficult to compare. If you need more space for the comparison, you can create a separate subroutine and provide its name instead:sub comparator { # lots of code... # return -1, 0 or 1 } print join ", ", sort comparator @elevations;You can't do this for
grepormapoperations.Notice how the subroutine and block are never explicitly provided with
$aand$b. Like$_,$aand$bare, in fact, global variables which are populated with a pair of values to be compared each time.Built-in functions
By now you have seen at least a dozen built-in functions:
sort,map,grep,keys,scalarand so on. Built-in functions are one of Perl's greatest strengths. They
- are numerous
- are very useful
- are extensively documented
- vary greatly in syntax, so check the documentation
- sometimes accept regular expressions as arguments
- sometimes accept entire blocks of code as arguments
- sometimes don't require commas between arguments
- sometimes will consume an arbitrary number of comma-separated arguments and sometimes will not
- sometimes will fill in their own arguments if too few are supplied
- generally don't require brackets around their arguments except in ambiguous circumstances
The best advice regarding built-in functions is to know that they exist. Skim the documentation for future reference. If you are carrying out a task which feels like it's low-level and common enough that it's been done many times before, the chances are that it has.
User-defined subroutines
Subroutines are declared using the
subkeyword. In contrast with built-in functions, user-defined subroutines always accept the same input: a list of scalars. That list may of course have a single element, or be empty. A single scalar is taken as a list with a single element. A hash with N elements is taken as a list with 2N elements.Although the brackets are optional, subroutines should always be invoked using brackets, even when called with no arguments. This makes it clear that a subroutine call is happening.
Once you're inside a subroutine, the arguments are available using the built-in array variable
@_. Example:sub hyphenate { # Extract the first argument from the array, ignore everything else my $word = shift @_; # An overly clever list comprehension $word = join "-", map { substr $word, $_, 1 } (0 .. (length $word) - 1); return $word; } print hyphenate("exterminate"); # "e-x-t-e-r-m-i-n-a-t-e"Perl calls by reference
Unlike almost every other major programming language, Perl calls by reference. This means that the variables or values available inside the body of a subroutine are not copies of the originals. They are the originals.
my $x = 7; sub reassign { $_[0] = 42; } reassign($x); print $x; # "42"If you try something like
reassign(8);then an error occurs and execution halts, because the first line of
reassign()is equivalent to8 = 42;which is obviously nonsense.
The lesson to learn is that in the body of a subroutine, you should always unpack your arguments before working with them.
Unpacking arguments
There's More Than One Way To unpack
@_, but some are superior to others.The example subroutine
left_padbelow pads a string out to the required length using the supplied pad character. (Thexfunction concatenates multiple copies of the same string in a row.) (Note: for brevity, these subroutines all lack some elementary error checking, i.e. ensuring the pad character is only 1 character, checking that the width is greater than or equal to the length of existing string, checking that all needed arguments were passed at all.)
left_padis typically invoked as follows:print left_pad("hello", 10, "+"); # "+++++hello"
Unpacking
@_entry by entry is effective but not terribly pretty:sub left_pad { my $oldString = $_[0]; my $width = $_[1]; my $padChar = $_[2]; my $newString = ($padChar x ($width - length $oldString)) . $oldString; return $newString; }Unpacking
@_by removing data from it usingshiftis recommended for up to 4 arguments:sub left_pad { my $oldString = shift @_; my $width = shift @_; my $padChar = shift @_; my $newString = ($padChar x ($width - length $oldString)) . $oldString; return $newString; }If no array is provided to the
shiftfunction, then it operates on@_implicitly. This approach is seen very commonly:sub left_pad { my $oldString = shift; my $width = shift; my $padChar = shift; my $newString = ($padChar x ($width - length $oldString)) . $oldString; return $newString; }Beyond 4 arguments it becomes hard to keep track of what is being assigned where.
You can unpack
@_all in one go using multiple simultaneous scalar assignment. Again, this is okay for up to 4 arguments:sub left_pad { my ($oldString, $width, $padChar) = @_; my $newString = ($padChar x ($width - length $oldString)) . $oldString; return $newString; }For subroutines with large numbers of arguments or where some arguments are optional or cannot be used in combination with others, best practice is to require the user to provide a hash of arguments when calling the subroutine, and then unpack
@_back into that hash of arguments. For this approach, our subroutine call would look a little different:print left_pad("oldString" => "pod", "width" => 10, "padChar" => "+");And the subroutine itself looks like this:
sub left_pad { my %args = @_; my $newString = ($args{"padChar"} x ($args{"width"} - length $args{"oldString"})) . $args{"oldString"}; return $newString; }Returning values
Like other Perl expressions, subroutine calls may display contextual behaviour. You can use the
wantarrayfunction (which should be calledwantlistbut never mind) to detect what context the subroutine is being evaluated in, and return a result appropriate to that context:sub contextualSubroutine { # Caller wants a list. Return a list return ("Everest", "K2", "Etna") if wantarray; # Caller wants a scalar. Return a scalar return 3; } my @array = contextualSubroutine(); print @array; # "EverestK2Etna" my $scalar = contextualSubroutine(); print $scalar; # "3"System calls
Apologies if you already know the following non-Perl-related facts. Every time a process finishes on a Windows or Linux system (and, I assume, on most other systems), it concludes with a 16-bit status word. The highest 8 bits constitute a return code between 0 and 255 inclusive, with 0 conventionally representing unqualified success, and other values representing various degrees of failure. The other 8 bits are less frequently examined - they "reflect mode of failure, like signal death and core dump information".
You can exit from a Perl script with the return code of your choice (from 0 to 255) using
exit.Perl provides More Than One Way To - in a single call - spawn a child process, pause the current script until the child process has finished, and then resume interpretation of the current script. Whichever method is used, you will find that immediately afterwards, the built-in scalar variable
$?has been populated with the status word that was returned from that child process's termination. You can get the return code by taking just the highest 8 of those 16 bits:$? >> 8.The
systemfunction can be used to invoke another program with the arguments listed. The value returned bysystemis the same value with which$?is populated:my $rc = system "perl", "anotherscript.pl", "foo", "bar", "baz"; $rc >>= 8; print $rc; # "37"Alternatively, you can use backticks
``to run an actual command at the command line and capture the standard output from that command. In scalar context the entire output is returned as a single string. In list context, the entire output is returned as an array of strings, each one representing a line of output.my $text = `perl anotherscript.pl foo bar baz`; print $text; # "foobarbaz"This is the behaviour which would be seen if
anotherscript.plcontained, for example:use strict; use warnings; print @ARGV; exit 37;Files and file handles
A scalar variable may contain a file handle instead of a number/string/reference or
undef. A file handle is essentially a reference to a specific location inside a specific file.Use
opento turn a scalar variable into a file handle.openmust be supplied with a mode. The mode<indicates that we wish to open the file to read from it:my $f = "text.txt"; my $result = open my $fh, "<", $f; if(!$result) {If successful,
openreturns a true value. Otherwise, it returns false and an error message is stuffed into the built-in variable$!. As seen above, you should always check that theopenoperation completed successfully. This checking being rather tedious, a common idiom is:open(my $fh, "<", $f) || die "Couldn't open '".$f."' for reading because: ".$!;Note the need for parentheses around the
opencall's arguments.To read a line of text from a filehandle, use the
readlinebuilt-in function.readlinereturns a full line of text, with a line break intact at the end of it (except possibly for the final line of the file), orundefif you've reached the end of the file.while(1) { my $line = readline $fh; last unless defined $line; # process the line... }To truncate that possible trailing line break, use
chomp:chomp $line;Note that
chompacts on$linein place.$line = chomp $lineis probably not what you want.You can also use
eofto detect that the end of the file has been reached:while(!eof $fh) { my $line = readline $fh; # process $line... }But beware of just using
while(my $line = readline $fh), because if$lineturns out to be"0", the loop will terminate early. If you want to write something like that, Perl provides the<>operator which wraps upreadlinein a fractionally safer way. This is very commonly-seen and perfectly safe:while(my $line = <$fh>) { # process $line... }And even:
while(<$fh>) { # process $_... }Writing to a file involves first opening it in a different mode. The mode
>indicates that we wish to open the file to write to it. (>will clobber the content of the target file if it already exists and has content. To merely append to an existing file, use mode>>.) Then, simply provide the filehandle as a zeroth argument for theopen(my $fh2, ">", $f) || die "Couldn't open '".$f."' for writing because: ".$!; print $fh2 "The eagles have left the nest";Notice the absence of a comma between
$fh2and the next argument.File handles are actually closed automatically when they drop out of scope, but otherwise:
close $fh2; close $fh;Three filehandles exist as global constants:
STDIN,STDOUTandSTDERR. These are open automatically when the script starts. To read a single line of user input:my $line = <STDIN>;To just wait for the user to hit Enter:
<STDIN>;Calling
<>with no filehandle reads data fromSTDIN, or from any files named in arguments when the Perl script was called.As you may have gathered,
STDOUTby default if no filehandle is named.File tests
The function
-eis a built-in function which tests whether the named file exists.print "what" unless -e "/usr/bin/perl";The function
-dis a built-in function which tests whether the named file is a directory.The function
-fis a built-in function which tests whether the named file is a plain file.These are just three of a large class of functions of the form
-XwhereXis some lower- or upper-case letter. These functions are called file tests. Note the leading minus sign. In a Google query, the minus sign indicates to exclude results containing this search term. This makes file tests hard to Google for! Just search for "perl file test" instead.Regular expressions
Regular expressions appear in many languages and tools other than Perl. Perl's core regular expression syntax is basically the same as everywhere else, but Perl's full regular expression capabilities are terrifyingly complex and difficult to understand. The best advice I can give you is to avoid this complexity wherever possible.
Match operations are performed using
=~ m//. In scalar context,=~ m//returns true on success, false on failure.my $string = "Hello world"; if($string =~ m/(\w+)\s+(\w+)/) { print "success"; }Parentheses perform sub-matches. After a successful match operation is performed, the sub-matches get stuffed into the built-in variables
$1,$2,$3, ...:print $1; # "Hello" print $2; # "world"In list context,
=~ m//returns$1,$2, ... as a list.my $string = "colourless green ideas sleep furiously"; my @matches = $string =~ m/(\w+)\s+((\w+)\s+(\w+))\s+(\w+)\s+(\w+)/; print join ", ", map { "'".$_."'" } @matches; # prints "'colourless', 'green ideas', 'green', 'ideas', 'sleep', 'furiously'"Substitution operations are performed using
=~ s///.my $string = "Good morning world"; $string =~ s/world/Vietnam/; print $string; # "Good morning Vietnam"Notice how the contents of
$stringhave changed. You have to pass a scalar variable on the left-hand side of an=~ s///operation. If you pass a literal string, you'll get an error.The
/gflag indicates "group match".In scalar context, each
=~ m//gcall finds another match after the previous one, returning true on success, false on failure. You can access$1and so on afterwards in the usual way. For example:my $string = "a tonne of feathers or a tonne of bricks"; while($string =~ m/(\w+)/g) { print "'".$1."'\n"; }In list context, an
=~ m//gcall returns all of the matches at once.my @matches = $string =~ m/(\w+)/g; print join ", ", map { "'".$_."'" } @matches;An
=~ s///gcall performs a global search/replace and returns the number of matches. Here, we replace all vowels with the letter "r".# Try once without /g. $string =~ s/[aeiou]/r/; print $string; # "r tonne of feathers or a tonne of bricks" # Once more. $string =~ s/[aeiou]/r/; print $string; # "r trnne of feathers or a tonne of bricks" # And do all the rest using /g $string =~ s/[aeiou]/r/g; print $string, "\n"; # "r trnnr rf frrthrrs rr r trnnr rf brrcks"The
/iflag makes matches and substitutions case-insensitive.The
/xflag allows your regular expression to contain whitespace (e.g., line breaks) and comments."Hello world" =~ m/ (\w+) # one or more word characters [ ] # single literal space, stored inside a character class world # literal "world" /x; # returns trueModules and packages
In Perl, modules and packages are different things.
Modules
A module is a
.pmfile that you can include in another Perl file (script or module). A module is a text file with exactly the same syntax as a.plPerl script. An example module might be located atC:\foo\bar\baz\Demo\StringUtils.pmor/foo/bar/baz/Demo/StringUtils.pm, and read as follows:use strict; use warnings; sub zombify { my $word = shift @_; $word =~ s/[aeiou]/r/g; return $word; } return 1;Because a module is executed from top to bottom when it is loaded, you need to return a true value at the end to show that it was loaded successfully.
So that the Perl interpreter can find them, directories containing Perl modules should be listed in your environment variable
PERL5LIBbefore callingperl. List the root directory containing the modules, don't list the module directories or the modules themselves:set PERL5LIB="C:\foo\bar\baz;%PERL5LIB%"or
export PERL5LIB="/foo/bar/baz:$PERL5LIB"Once the Perl module is created and
perlknows where to look for it, you can use therequirebuilt-in function to search for and execute it during a Perl script. For example, callingrequire Demo::StringUtilscauses the Perl interpreter to search each directory listed inPERL5LIBin turn, looking for a file calledDemo/StringUtils.pm. After the module has been executed, the subroutines that were defined there suddenly become available to the main script. Our example script might be calledmain.pland read as follows:use strict; use warnings; require Demo::StringUtils; print zombify("i want brains"); # "r wrnt brrrns"Note the use of the double colon
::as a directory separator.Now a problem surfaces: if
main.plcontains manyrequirecalls, and each of the modules so loaded contains morerequirecalls, then it can become difficult to track down the original declaration of thezombify()subroutine. The solution to this problem is to use packages.Packages
A package is a namespace in which subroutines can be declared. Any subroutine you declare is implicitly declared within the current package. At the beginning of execution, you are in the
mainpackage, but you can switch package using thepackagebuilt-in function:use strict; use warnings; sub subroutine { print "universe"; } package Food::Potatoes; # no collision: sub subroutine { print "kingedward"; }Note the use of the double colon
::as a namespace separator.Any time you call a subroutine, you implicitly call a subroutine which is inside the current package. Alternatively, you can explicitly provide a package. See what happens if we continue the above script:
subroutine(); # "kingedward" main::subroutine(); # "universe" Food::Potatoes::subroutine(); # "kingedward"So the logical solution to the problem described above is to modify
C:\foo\bar\baz\Demo\StringUtils.pmor/foo/bar/baz/Demo/StringUtils.pmto read:use strict; use warnings; package Demo::StringUtils; sub zombify { my $word = shift @_; $word =~ s/[aeiou]/r/g; return $word; } return 1;And modify
main.plto read:use strict; use warnings; require Demo::StringUtils; print Demo::StringUtils::zombify("i want brains"); # "r wrnt brrrns"Now read this next bit carefully.
Packages and modules are two completely separate and distinct features of the Perl programming language. The fact that they both use the same double colon delimiter is a huge red herring. It is possible to switch packages multiple times over the course of a script or module, and it is possible to use the same package declaration in multiple locations in multiple files. Calling
require Foo::Bardoes not look for and load a file with apackage Foo::Bardeclaration somewhere inside it, nor does it necessarily load subroutines in theFoo::Barnamespace. Callingrequire Foo::Barmerely loads a file calledFoo/Bar.pm, which need not have any kind of package declaration inside it at all, and in fact might declarepackage Baz::Quxand other nonsense inside it for all you know.Likewise, a subroutine call
Baz::Qux::processThis()need not necessarily have been declared inside a file namedBaz/Qux.pm. It could have been declared literally anywhere.Separating these two concepts is one of the stupidest features of Perl, and treating them as separate concepts invariably results in chaotic, maddening code. Fortunately for us, the majority of Perl programmers obey the following two laws:
- A Perl script (
.plfile) must always contain exactly zeropackagedeclarations.- A Perl module (
.pmfile) must always contain exactly onepackagedeclaration, corresponding exactly to its name and location. E.g. moduleDemo/StringUtils.pmmust begin withpackage Demo::StringUtils.Because of this, in practice you will find that most "packages" and "modules" produced by reliable third parties can be regarded and referred to interchangeably. However, it is important that you do not take this for granted, because one day you will meet code produced by a madman.
Object-oriented Perl
Perl is not a great language for OO programming. Perl's OO capabilities were grafted on after the fact, and this shows.
An object is simply a reference (i.e. a scalar variable) which happens to know which class its referent belongs to. To tell a reference that its referent belongs to a class, use
bless. To find out what class a reference's referent belongs to (if any), useref.A method is simply a subroutine that expects an object (or, in the case of class methods, a package name) as its first argument. Object methods are invoked using
$obj->method(); class methods are invoked usingPackage::Name->method().A class is simply a package that happens to contain methods.
A quick example makes this clearer. An example module
Animal.pmcontaining a classAnimalreads like this:use strict; use warnings; package Animal; sub eat { # First argument is always the object to act upon. my $self = shift @_; foreach my $food ( @_ ) { if($self->can_eat($food)) { print "Eating ", $food; } else { print "Can't eat ", $food; } } } # For the sake of argument, assume an Animal can eat anything. sub can_eat { return 1; } return 1;And we might make use of this class like so:
require Animal; my $animal = { "legs" => 4, "colour" => "brown", }; # $animal is an ordinary hash reference print ref $animal; # "HASH" bless $animal, "Animal"; # now it is an object of class "Animal" print ref $animal; # "Animal"Note: literally any reference can be blessed into any class. It's up to you to ensure that (1) the referent can actually be used as an instance of this class and (2) that the class in question exists and has been loaded.
You can still work with the original hash in the usual way:
print "Animal has ", $animal->{"legs"}, " leg(s)";But you can now also call methods on the object using the same
->operator, like so:$animal->eat("insects", "curry", "eucalyptus");This final call is equivalent to
Animal::eat($animal, "insects", "curry", "eucalyptus").Constructors
A constructor is a class method which returns a new object. If you want one, just declare one. You can use any name you like. For class methods, the first argument passed is not an object but a class name. In this case,
"Animal":use strict; use warnings; package Animal; sub new { my $class = shift @_; return bless { "legs" => 4, "colour" => "brown" }, $class; } # ...etc.And then use it like so:
my $animal = Animal->new();Inheritance
To create a class inheriting from a parent class, use
use parent. Let's suppose we subclassedAnimalwithKoala, located atKoala.pm:use strict; use warnings; package Koala; # Inherit from Animal use parent ("Animal"); # Override one method sub can_eat { my $self = shift @_; # Not used. You could just put "shift @_;" here my $food = shift @_; return $food eq "eucalyptus"; } return 1;And some sample code:
use strict; use warnings; require Koala; my $koala = Koala->new(); $koala->eat("insects", "curry", "eucalyptus"); # eat only the eucalyptusThis final method call tries to invoke
Koala::eat($koala, "insects", "curry", "eucalyptus"), but a subroutineeat()isn't defined in theKoalapackage. However, becauseKoalahas a parent classAnimal, the Perl interpreter tries callingAnimal::eat($koala, "insects", "curry", "eucalyptus")instead, which works. Note how the classAnimalwas loaded automatically byKoala.pm.Since
use parentaccepts a list of parent class names, Perl supports multiple inheritance, with all the benefits and horrors this entails.
BEGINblocksA
BEGINblock is executed as soon asperlhas finished parsing that block, even before it parses the rest of the file. It is ignored at execution time:use strict; use warnings; print "This gets printed second"; BEGIN { print "This gets printed first"; } print "This gets printed third";A
BEGINblock is always executed first. If you create multipleBEGINblocks (don't), they are executed in order from top to bottom as the compiler encounters them. ABEGINblock always executes first even if it is placed halfway through a script (don't do this) or at the end (or this). Do not mess with the natural order of code. PutBEGINblocks at the beginning!A
BEGINblock is executed as soon as the block has been parsed. Once this is done, parsing resumes at the end of theBEGINblock. Only once the whole script or module has been parsed is any of the code outside ofBEGINblocks executed.use strict; use warnings; print "This 'print' statement gets parsed successfully but never executed"; BEGIN { print "This gets printed first"; } print "This, also, is parsed successfully but never executed"; ...because e4h8v3oitv8h4o8gch3o84c3 there is a huge parsing error down here.Because they are executed at compilation time, a
BEGINblock placed inside a conditional block will still be executed first, even if the conditional evaluates to false and despite the fact that the conditional has not been evaluated at all yet and in fact may never be evaluated.if(0) { BEGIN { print "This will definitely get printed"; } print "Even though this won't"; }Do not putBEGINblocks in conditionals! If you want to do something conditionally at compile time, you need to put the conditional inside theBEGINblock:BEGIN { if($condition) { # etc. } }
useOkay. Now that you understand the obtuse behaviour and semantics of packages, modules, class methods and
BEGINblocks, I can explain the exceedingly commonly-seenusefunction.The following three statements:
use Caterpillar ("crawl", "pupate"); use Caterpillar (); use Caterpillar;are respectively equivalent to:
BEGIN { require Caterpillar; Caterpillar->import("crawl", "pupate"); } BEGIN { require Caterpillar; } BEGIN { require Caterpillar; Caterpillar->import(); }
- No, the three examples are not in the wrong order. It is just that Perl is dumb.
- A
usecall is a disguisedBEGINblock. The same warnings apply.usestatements must always be placed at the top of the file, and never inside conditionals.import()is not a built-in Perl function. It is a user-defined class method. The burden is on the programmer of theCaterpillarpackage to define or inheritimport(), and the method could theoretically accept anything as arguments and do anything with those arguments.use Caterpillar;could do anything. Consult the documentation ofCaterpillar.pmto find out exactly what will happen.- Notice how
require Caterpillarloads a module namedCaterpillar.pm, whereasCaterpillar->import()calls theimport()subroutine that was defined inside theCaterpillarpackage. Let's hope the module and the package coincide!Exporter
The most common way to define an
import()method is to inherit it from the Exporter module. Exporter is a core module, and a de facto core feature of the Perl programming language. In Exporter's implementation ofimport(), the list of arguments that you pass in is interpreted as a list of subroutine names. When a subroutine isimport()ed, it becomes available in the current package as well as in its own original package.This concept is easiest to grasp using an example. Here's what
Caterpillar.pmlooks like:use strict; use warnings; package Caterpillar; # Inherit from Exporter use parent ("Exporter"); sub crawl { print "inch inch"; } sub eat { print "chomp chomp"; } sub pupate { print "bloop bloop"; } our @EXPORT_OK = ("crawl", "eat"); return 1;The package variable
@EXPORT_OKshould contain a list of subroutine names.Another piece of code may then
import()these subroutines by name, typically using ausestatement:use strict; use warnings; use Caterpillar ("crawl"); crawl(); # "inch inch"In this case, the current package is
main, so thecrawl()call is actually a call tomain::crawl(), which (because it was imported) maps toCaterpillar::crawl().Note: regardless of the content of
@EXPORT_OK, every method can always be called "longhand":use strict; use warnings; use Caterpillar (); # no subroutines named, no import() call made # and yet... Caterpillar::crawl(); # "inch inch" Caterpillar::eat(); # "chomp chomp" Caterpillar::pupate(); # "bloop bloop"Perl has no private methods. Customarily, a method intended for private use is named with a leading underscore or two.
@EXPORTThe Exporter module also defines a package variable called
@EXPORT, which can also be populated with a list of subroutine names.use strict; use warnings; package Caterpillar; # Inherit from Exporter use parent ("Exporter"); sub crawl { print "inch inch"; } sub eat { print "chomp chomp"; } sub pupate { print "bloop bloop"; } our @EXPORT = ("crawl", "eat", "pupate"); return 1;The subroutines named in
@EXPORTare exported ifimport()is called with no arguments at all, which is what happens here:use strict; use warnings; use Caterpillar; # calls import() with no arguments crawl(); # "inch inch" eat(); # "chomp chomp" pupate(); # "bloop bloop"But notice how we are back in a situation where, without other clues, it might not be easy to tell where
crawl()was originally defined. The moral of this story is twofold:
When creating a module which makes use of Exporter, never use
@EXPORTto export subroutines by default. Always make the user call subroutines "longhand" orimport()them explicitly (using e.g.use Caterpillar ("crawl"), which is a strong clue to look inCaterpillar.pmfor the definition ofcrawl()).When
useing a module which makes use of Exporter, always explicitly name the subroutines you want toimport(). If you don't want toimport()any subroutines and wish to refer to them longhand, you must supply an explicit empty list:use Caterpillar ().Miscellaneous notes
The core module Data::Dumper can be used to output an arbitrary scalar to the screen. This is an essential debug tool.
There's an alternate syntax,
qw{ }, for declaring arrays. This is often seen inusestatements:use Account qw{create open close suspend delete};There are many other quote-like operators.
In
=~ m//and=~ s///operations, you can use braces instead of slashes as the regex delimiters. This is quite useful if your regex contains a lot of slashes, which would otherwise need escaping with backslashes. For example,=~ m{///}matches three literal forward slashes, and=~ s{^https?://}{}removes the protocol part of a URL.Perl does have
CONSTANTS. These are discouraged now, but weren't always. Constants are actually just subroutine calls with omitted brackets.Sometimes people omit quotes around hash keys, writing
$hash{key}instead of$hash{"key"}. They can get away with it because in this situation the barewordkeyoccurs as the string"key", as opposed to a subroutine callkey().If you see a block of unformatted code wrapped in a delimiter with double chevrons, like
<<EOF, the magic word to Google for is "here-doc".Warning! Many built-in functions can be called with no arguments, causing them to operate on
$_instead. Hopefully this will help you understand formations like:print foreach @array;and
foreach ( @array ) { next unless defined; }I dislike this formation because it can lead to problems when refactoring.
And that's two and a half hours.
Back to Things Of Interest
日本高清在线不卡一区二区| 国产九色91在线视频| 欧美乱妇无乱码一区二区| 国产成人精品av网站| 久久这里只有精品热视频| 插小穴高清无码中文字幕| 中文字日产幕乱六区蜜桃| 久碰精品少妇中文字幕av| 日本一区二区三区免费小视频| 国产又粗又黄又硬又爽| 丝袜美腿欧美另类 中文字幕| 9久在线视频只有精品| 精品国产成人亚洲午夜| 午夜美女少妇福利视频| 久久久久久久亚洲午夜综合福利| 国产欧美日韩在线观看不卡| 最近中文字幕国产在线| 少妇被强干到高潮视频在线观看 | 青青草人人妻人人妻| 国产精品久久久久国产三级试频| 在线观看一区二区三级| 少妇系列一区二区三区视频| 国产精品成人xxxx| 亚洲高清国产拍青青草原| 欧美专区日韩专区国产专区| 成人网18免费视频版国产| 亚洲欧洲一区二区在线观看| 熟女少妇激情五十路| 国产精品久久久黄网站| av天堂资源最新版在线看| 视频在线亚洲一区二区| 久草视频中文字幕在线观看| 久精品人妻一区二区三区 | 适合午夜一个人看的视频| 人妻少妇性色欲欧美日韩| japanese五十路熟女熟妇| 精品视频中文字幕在线播放| 狠狠躁夜夜躁人人爽天天久天啪| 午夜频道成人在线91| 班长撕开乳罩揉我胸好爽| av网址在线播放大全| 粉嫩欧美美人妻小视频| 自拍偷拍日韩欧美一区二区| 日韩美av高清在线| 成人高清在线观看视频| 淫秽激情视频免费观看| 亚洲精品国产综合久久久久久久久 | 中出中文字幕在线观看| 国产视频在线视频播放| av中文字幕电影在线看| 亚洲国产欧美一区二区丝袜黑人| 激情国产小视频在线| 91精品国产综合久久久蜜| 国产av自拍偷拍盛宴| 淫秽激情视频免费观看| 精品一区二区三区在线观看| 9久在线视频只有精品| 日视频免费在线观看| 亚洲av成人免费网站| 国产男女视频在线播放| 亚洲精品三级av在线免费观看| 18禁无翼鸟成人在线| 亚洲综合图片20p| 在线观看视频 你懂的| 国产精品久久久久久美女校花| 亚洲成人av一区在线| 欲满人妻中文字幕在线| 精品人人人妻人人玩日产欧| 日韩精品中文字幕播放| 国产黄色片蝌蚪九色91| 综合一区二区三区蜜臀| 91国产在线免费播放| 人妻自拍视频中国大陆| 中文字幕日韩91人妻在线| 色婷婷六月亚洲综合香蕉| 精品av国产一区二区三区四区| 人妻无码色噜噜狠狠狠狠色| 北条麻妃av在线免费观看| 午夜频道成人在线91| 国产免费高清视频视频| 亚洲码av无色中文| 日本脱亚入欧是指什么| 欲乱人妻少妇在线视频裸| 成人伊人精品色xxxx视频| 亚洲av日韩精品久久久久久hd| 精品国产亚洲av一淫| 在线 中文字幕 一区| 亚洲一级美女啪啪啪| 姐姐的朋友2在线观看中文字幕 | 亚洲精品 日韩电影| 中文字幕高清免费在线人妻| 亚洲麻豆一区二区三区| 又色又爽又黄的美女裸体| 夜色福利视频在线观看| 天天日天天舔天天射进去| 久久免费看少妇高潮完整版| 日韩北条麻妃一区在线| 成人影片高清在线观看 | 人妻素人精油按摩中出| 这里只有精品双飞在线播放| 97国产精品97久久| 日本五十路熟新垣里子| 婷婷色中文亚洲网68| 日本高清成人一区二区三区| 最新日韩av传媒在线| 97精品综合久久在线| 日本在线不卡免费视频| 人妻少妇精品久久久久久| 适合午夜一个人看的视频| 日比视频老公慢点好舒服啊| 中文字幕一区二 区二三区四区| av手机在线免费观看日韩av| 视频一区 视频二区 视频| 亚洲成人av一区久久| 天天躁日日躁狠狠躁躁欧美av| 免费观看理论片完整版| 国产在线一区二区三区麻酥酥| 伊人情人综合成人久久网小说| 日韩美女搞黄视频免费| 97超碰国语国产97超碰| 亚洲另类图片蜜臀av| 日韩欧美中文国产在线| 青青青青草手机在线视频免费看| av黄色成人在线观看| 欧美精品免费aaaaaa| 中文字幕日韩无敌亚洲精品| 青青草国内在线视频精选| 五月天色婷婷在线观看视频免费| 日本福利午夜电影在线观看| 中文字幕网站你懂的| 午夜的视频在线观看| 强行扒开双腿猛烈进入免费版| 2017亚洲男人天堂| 久久久极品久久蜜桃| 国产精品久久综合久久| 日韩欧美亚洲熟女人妻| 中文字幕av一区在线观看| 欧美另类z0z变态| 91中文字幕免费在线观看| xxx日本hd高清| 成熟熟女国产精品一区| 国产精品人妻66p| 中文字幕在线乱码一区二区| av中文字幕网址在线| 都市激情校园春色狠狠| 中文字幕 亚洲av| 视频一区二区综合精品| 喷水视频在线观看这里只有精品| 91精品国产高清自在线看香蕉网| 亚洲av日韩精品久久久| 青青草精品在线视频观看| 青青草在观免费国产精品| 亚洲国产在线精品国偷产拍| 偷拍自拍视频图片免费| 成人久久精品一区二区三区| 91天堂精品一区二区| 最近的中文字幕在线mv视频| 在线播放 日韩 av| 国产高清精品极品美女| 国产又粗又猛又爽又黄的视频美国| 91免费观看国产免费| 2022国产精品视频| 欧美成人黄片一区二区三区| 91人妻精品一区二区久久| 久久久久久久久久一区二区三区| 岛国av高清在线成人在线| av破解版在线观看| 熟女在线视频一区二区三区| 色综合天天综合网国产成人| 端庄人妻堕落挣扎沉沦| 午夜激情精品福利视频| 亚洲最大免费在线观看| 中文字幕在线观看国产片| 亚洲综合另类精品小说| 97国产精品97久久| www日韩a级s片av| 欧美成人综合色在线噜噜| 噜噜色噜噜噜久色超碰| 绯色av蜜臀vs少妇| 99久久久无码国产精品性出奶水| 熟女国产一区亚洲中文字幕| 亚洲综合图片20p| 欧美在线精品一区二区三区视频| 丰满少妇人妻xxxxx| 大香蕉玖玖一区2区| av老司机亚洲一区二区| 久草视频 久草视频2| 中文字幕人妻av在线观看| 社区自拍揄拍尻屁你懂的| 首之国产AV医生和护士小芳| 日韩av大胆在线观看| 国产精品自拍偷拍a| 国产精品探花熟女在线观看| 青青色国产视频在线| 97人妻总资源视频| 亚洲国产免费av一区二区三区| 亚洲第一黄色在线观看| 亚洲福利精品福利精品福利| 青青操免费日综合视频观看| 2020中文字幕在线播放| 久久久极品久久蜜桃| brazzers欧熟精品系列| 天天摸天天干天天操科普| 国产美女一区在线观看| 日韩熟女av天堂系列| 亚洲高清自偷揄拍自拍| 真实国模和老外性视频| 丰满的子国产在线观看| 黄色成年网站午夜在线观看| 黄色片一级美女黄色片| 黄片三级三级三级在线观看| 2022精品久久久久久中文字幕| 美女吃鸡巴操逼高潮视频| 国产成人小视频在线观看无遮挡| 97人人妻人人澡人人爽人人精品| 91国偷自产一区二区三区精品| 97国产在线av精品| 人妻丰满熟妇综合网| 女同久久精品秋霞网| 啪啪啪啪啪啪啪免费视频| 摧残蹂躏av一二三区| 日韩伦理短片在线观看| 激情国产小视频在线| 午夜激情久久不卡一区二区 | 天堂中文字幕翔田av| brazzers欧熟精品系列| 日本熟妇喷水xxx| 99亚洲美女一区二区三区| 啊啊好慢点插舔我逼啊啊啊视频 | 全国亚洲男人的天堂| 伊人综合aⅴ在线网| 国产三级片久久久久久久| 老师让我插进去69AV| 国产白袜脚足J棉袜在线观看| 国产一区av澳门在线观看| 亚洲va国产va欧美精品88| 亚洲欧美清纯唯美另类| 欧洲精品第一页欧洲精品亚洲| 在线不卡成人黄色精品| 91国内视频在线观看| a v欧美一区=区三区| aⅴ五十路av熟女中出| 精品久久久久久久久久久99| 91精品国产91青青碰| 久久精品美女免费视频| 国产第一美女一区二区三区四区| 精品老妇女久久9g国产| 欧美老妇精品另类不卡片| 日韩剧情片电影在线收看| 一区二区三区四区中文| 日本一二三中文字幕| 日韩中文字幕在线播放第二页| 亚洲中文精品字幕在线观看 | 91精品高清一区二区三区| 日本午夜福利免费视频| 国产精品一区二区三区蜜臀av | av在线播放国产不卡| 中文字幕一区二区亚洲一区| 午夜激情高清在线观看| 51国产成人精品视频| 中文字幕在线乱码一区二区| 人人妻人人澡人人爽人人dvl| 午夜精品一区二区三区城中村| 欧美精品激情在线最新观看视频| 亚洲av天堂在线播放| 97年大学生大白天操逼| 亚洲人一区二区中文字幕| 欧美日韩高清午夜蜜桃大香蕉| 日本裸体熟妇区二区欧美| 天天通天天透天天插| 水蜜桃国产一区二区三区| 又大又湿又爽又紧A视频| 欧美日韩一级黄片免费观看| 97超碰国语国产97超碰| 国产第一美女一区二区三区四区| 绝顶痉挛大潮喷高潮无码| 最新的中文字幕 亚洲| 偷拍自拍视频图片免费| 国产精品入口麻豆啊啊啊| av中文在线天堂精品| 日本一区精品视频在线观看| 一二三中文乱码亚洲乱码one| 老熟妇xxxhd老熟女| 中文字幕 人妻精品| 欧美亚洲国产成人免费在线| 宅男噜噜噜666免费观看| 亚洲av日韩av第一区二区三区| 免费观看理论片完整版| 欧洲黄页网免费观看| 馒头大胆亚洲一区二区| 粗大的内捧猛烈进出爽大牛汉子| 亚洲一区二区三区五区 | 黄片色呦呦视频免费看| 在线可以看的视频你懂的 | 国产免费高清视频视频| 热99re69精品8在线播放| 大香蕉伊人中文字幕| 国产综合精品久久久久蜜臀| 亚洲美女自偷自拍11页| 99精品国自产在线人| 玖玖一区二区在线观看| 免费在线看的黄片视频| 青青伊人一精品视频| 午夜激情高清在线观看| 国产精品一区二区av国| 欧美地区一二三专区| 天天日天天添天天爽| 国产精品久久久久网| 欧美偷拍亚洲一区二区| 欧美aa一级一区三区四区| 久草视频中文字幕在线观看| av一区二区三区人妻| 夜色17s精品人妻熟女| 中英文字幕av一区| 一个人免费在线观看ww视频| 天天干天天爱天天色| 女蜜桃臀紧身瑜伽裤| 成人av中文字幕一区| 黄色视频在线观看高清无码| 人妻少妇亚洲一区二区| 国产欧美精品不卡在线| 99精品视频之69精品视频| 亚洲国产精品中文字幕网站| 男大肉棒猛烈插女免费视频| 午夜激情久久不卡一区二区| 国产成人精品一区在线观看| 不卡一不卡二不卡三| 亚洲熟女综合色一区二区三区四区| 精品日产卡一卡二卡国色天香 | 亚洲成人三级在线播放 | 桃色视频在线观看一区二区 | a v欧美一区=区三区| 亚洲中文字字幕乱码| 国产成人精品一区在线观看 | 日本裸体熟妇区二区欧美| 老司机福利精品免费视频一区二区 | 午夜精品一区二区三区福利视频| av天堂加勒比在线| 在线观看911精品国产| nagger可以指黑人吗| 久久三久久三久久三久久| 国产视频网站一区二区三区 | 2020国产在线不卡视频| 人妻少妇亚洲精品中文字幕| 自拍偷拍 国产资源| 亚洲成人午夜电影在线观看| 国产极品美女久久久久久| 亚洲人妻国产精品综合| 粉嫩av蜜乳av蜜臀| 抽查舔水白紧大视频| 国产女人被做到高潮免费视频| 国产变态另类在线观看| 欧美日韩不卡一区不区二区| 神马午夜在线观看视频| 亚洲精品精品国产综合| 91p0rny九色露脸熟女| 亚洲欧美综合在线探花| 男人操女人逼逼视频网站| 亚洲中文字字幕乱码| 天天射夜夜操狠狠干| 欧美一区二区三区啪啪同性| 最新激情中文字幕视频| 亚洲国产精品久久久久久6| 欧亚日韩一区二区三区观看视频| 亚洲精品久久综合久| 日本乱人一区二区三区| 久久亚洲天堂中文对白| 亚洲免费av在线视频| 亚洲免费在线视频网站| a v欧美一区=区三区| 偷拍自拍亚洲视频在线观看| 成人区人妻精品一区二视频| 91av中文视频在线| 欧美精品中文字幕久久二区| 在线 中文字幕 一区| 午夜大尺度无码福利视频| 成年女人免费播放视频| 人妻少妇亚洲精品中文字幕| 在线观看免费av网址大全| 97小视频人妻一区二区| 亚洲中文字幕乱码区| 性色av一区二区三区久久久| 亚洲 图片 欧美 图片| 激情小视频国产在线| 日本特级片中文字幕| 日本高清撒尿pissing| 午夜精品久久久久久99热| 蜜桃精品久久久一区二区| 1024久久国产精品| 日韩在线中文字幕色| 91在线视频在线精品3| 不戴胸罩引我诱的隔壁的人妻| 人人妻人人爱人人草| 亚洲伊人av天堂有码在线| 国产视频在线视频播放| 青青青激情在线观看视频| 欧美亚洲牲夜夜综合久久| 欧美麻豆av在线播放| 91人妻精品一区二区久久| av网址国产在线观看| 中文字幕乱码人妻电影| 精品人妻每日一部精品| 天天日天天操天天摸天天舔| 中文字幕无码一区二区免费| 91大神福利视频网| 日本啪啪啪啪啪啪啪| 开心 色 六月 婷婷| 国产精品中文av在线播放| 91国产资源在线视频| 亚洲天堂有码中文字幕视频| 五色婷婷综合狠狠爱| 欧美国品一二三产区区别| 午夜精品久久久久久99热| 亚洲成人激情av在线| 亚洲熟女久久久36d| 中文字幕一区的人妻欧美日韩| 亚洲成人免费看电影| 亚洲av第国产精品| 久久这里只有精品热视频| 国产精品中文av在线播放| 国产污污污污网站在线| 亚洲中文字幕综合小综合| 二区中出在线观看老师 | 天天干天天操天天摸天天射| 少妇人妻二三区视频| 大陆胖女人与丈夫操b国语高清| 91亚洲国产成人精品性色| 久久久久久久精品成人热| 亚洲 欧美 自拍 偷拍 在线| 最近中文字幕国产在线| 亚洲一区二区三区在线高清| 精品美女在线观看视频在线观看| 一区二区三区在线视频福利| 日本性感美女视频网站| 国产精品福利小视频a| 99久久99久国产黄毛片| 超碰在线中文字幕一区二区| 国产露脸对白在线观看| 亚洲中文字幕国产日韩| 日韩中文字幕精品淫| 一区二区三区日韩久久| 亚洲福利精品视频在线免费观看| 男女啪啪视频免费在线观看| 亚洲 国产 成人 在线| 不卡一不卡二不卡三| 含骚鸡巴玩逼逼视频| 青青草人人妻人人妻| 久久久超爽一二三av| 91chinese在线视频| 99精品免费观看视频| 在线观看操大逼视频| 91大神福利视频网| 欧美在线精品一区二区三区视频 | 精品黑人一区二区三区久久国产| 在线成人日韩av电影| 动漫av网站18禁| 小穴多水久久精品免费看| 成人精品视频99第一页| 天天做天天干天天舔| 一区二区三区综合视频| 欧美黑人性暴力猛交喷水| 一区二区三区综合视频| 精内国产乱码久久久久久| 国产chinesehd精品麻豆| 91p0rny九色露脸熟女| 中文字幕av第1页中文字幕| 热99re69精品8在线播放| 国产av福利网址大全| 国产在线免费观看成人| 在线不卡日韩视频播放| 亚洲丝袜老师诱惑在线观看| 成人动漫大肉棒插进去视频| 成人资源在线观看免费官网| 日本韩国免费一区二区三区视频| 超碰在线观看免费在线观看| 国产白袜脚足J棉袜在线观看| 人妻无码中文字幕专区| 日韩av有码中文字幕| 天天日天天干天天搡| 久久久麻豆精亚洲av麻花| 亚洲精品午夜久久久久| 中国黄色av一级片| chinese国产盗摄一区二区| 亚洲成人熟妇一区二区三区 | 人妻激情图片视频小说| 国产成人综合一区2区| 自拍偷拍日韩欧美亚洲| 自拍偷拍亚洲另类色图| 99热国产精品666| 视频在线亚洲一区二区| 大鸡巴插入美女黑黑的阴毛| 天天干天天操天天插天天日| 中文 成人 在线 视频| 欧美成人综合视频一区二区| 最近的中文字幕在线mv视频| 久久精品在线观看一区二区| 夜夜嗨av一区二区三区中文字幕| weyvv5国产成人精品的视频| 丰满的继坶3中文在线观看| 国产午夜亚洲精品麻豆| 日韩一个色综合导航| 99热这里只有国产精品6| 在线观看视频网站麻豆| 亚洲狠狠婷婷综合久久app | 久久艹在线观看视频| 又色又爽又黄的美女裸体| 粉嫩av蜜乳av蜜臀| 国产91精品拍在线观看| 视频一区二区三区高清在线| 亚洲欧美成人综合在线观看| 亚洲欧美一区二区三区电影| aiss午夜免费视频| 特大黑人巨大xxxx| 99热碰碰热精品a中文| 自拍偷拍,中文字幕| 直接观看免费黄网站| 久久免费看少妇高潮完整版| 国产成人午夜精品福利| 亚洲精品无码久久久久不卡| 揄拍成人国产精品免费看视频| 青青伊人一精品视频| 亚洲蜜臀av一区二区三区九色| 亚欧在线视频你懂的| 好吊操视频这里只有精品| 欧美亚洲国产成人免费在线| 日本五十路熟新垣里子| 免费费一级特黄真人片| 免费一级黄色av网站| 色综合天天综合网国产成人| 一区二区三区另类在线| 亚洲高清免费在线观看视频| 少妇一区二区三区久久久| 人妻熟女中文字幕aⅴ在线| 国产熟妇人妻ⅹxxxx麻豆| 天天综合天天综合天天网| 亚洲中文字幕乱码区| 日本性感美女写真视频| 一二三区在线观看视频| 一区二区三区日韩久久| 38av一区二区三区| 欧美视频综合第一页| 免费成人va在线观看| 天天干天天操天天插天天日| 成人乱码一区二区三区av| 国产又粗又猛又爽又黄的视频在线| 2022精品久久久久久中文字幕| 国产精品人妻熟女毛片av久| 91精品高清一区二区三区| 一区二区视频视频视频| 99热久久这里只有精品8| 亚洲自拍偷拍综合色| 黑人借宿ntr人妻的沦陷2| 青青青青青青青青青国产精品视频| 黑人3p华裔熟女普通话| 黄色中文字幕在线播放| 欧美xxx成人在线| 夜色17s精品人妻熟女| 在线观看成人国产电影| 狠狠操操操操操操操操操| 久久人人做人人妻人人玩精品vr| 在线播放国产黄色av| 成人乱码一区二区三区av| 美女操逼免费短视频下载链接| 午夜婷婷在线观看视频| 亚洲欧美一区二区三区电影| 日本美女成人在线视频| brazzers欧熟精品系列| 93精品视频在线观看| 午夜免费体验区在线观看| 亚洲精品无码色午夜福利理论片| 精品suv一区二区69| 91免费福利网91麻豆国产精品 | 中文字幕乱码av资源| 国产不卡av在线免费| 日本又色又爽又黄又粗| 亚洲一区av中文字幕在线观看| 久久久91蜜桃精品ad| 天天躁夜夜躁日日躁a麻豆| 一本久久精品一区二区| 久久久久久久亚洲午夜综合福利 | 亚洲av在线观看尤物| 精品国产乱码一区二区三区乱| 18禁美女黄网站色大片下载| 99视频精品全部15| 亚洲免费在线视频网站| 亚洲一区二区人妻av| 黄工厂精品视频在线观看| 久久精品美女免费视频| 天天日天天鲁天天操| 激情图片日韩欧美人妻| 日本韩国在线观看一区二区| 亚洲av极品精品在线观看| 天堂v男人视频在线观看| 首之国产AV医生和护士小芳| 搡老熟女一区二区在线观看| 亚洲乱码中文字幕在线| 任你操视频免费在线观看| 一区二区三区的久久的蜜桃的视频 | 干逼又爽又黄又免费的视频| 亚洲欧美激情国产综合久久久| 国产精品视频资源在线播放| 天天日天天爽天天干| 日韩特级黄片高清在线看| 最新中文字幕乱码在线| 男生舔女生逼逼的视频| 日本少妇高清视频xxxxx | 日本av在线一区二区三区| 午夜免费体验区在线观看| 国产视频一区在线观看| 国产精品日韩欧美一区二区| 自拍偷拍 国产资源| 伊人精品福利综合导航| 色综合久久无码中文字幕波多| 沈阳熟妇28厘米大战黑人| 最新日韩av传媒在线| 一区二区视频在线观看视频在线| 欧美精品 日韩国产| 在线播放国产黄色av| 黄色录像鸡巴插进去| 韩国一级特黄大片做受| 中文字幕日韩精品日本| 亚洲伊人色一综合网| 人妻3p真实偷拍一二区| 韩国亚洲欧美超一级在线播放视频| av成人在线观看一区| 国产精品国产三级国产精东| 亚洲一级av无码一级久久精品| 欧美亚洲自偷自拍 在线| 欧美精品中文字幕久久二区| 涩涩的视频在线观看视频| 亚洲av人人澡人人爽人人爱| 国产a级毛久久久久精品| 可以在线观看的av中文字幕 | 丝袜美腿欧美另类 中文字幕| 91人妻精品久久久久久久网站 | 日韩精品激情在线观看| 精品suv一区二区69| 任你操视频免费在线观看| 日韩成人性色生活片| 天天色天天舔天天射天天爽| 在线观看成人国产电影| 亚洲一区av中文字幕在线观看| 2012中文字幕在线高清| 日韩人妻丝袜中文字幕| 一区二区三区四区视频在线播放| 欧美精品激情在线最新观看视频| 成年人免费看在线视频| 国产91嫩草久久成人在线视频| 免费观看丰满少妇做受| 91大神福利视频网| 狠狠操操操操操操操操操| 日韩精品啪啪视频一道免费| 青青青青青操视频在线观看| 亚洲午夜福利中文乱码字幕| 91试看福利一分钟| 亚洲日产av一区二区在线| 国产乱子伦精品视频潮优女| 自拍偷拍亚洲欧美在线视频| 国产av欧美精品高潮网站| 五十路熟女人妻一区二| 国产日本精品久久久久久久| 天天日天天透天天操| 日韩一区二区电国产精品| 黑人乱偷人妻中文字幕| 亚洲高清免费在线观看视频| 中国熟女一区二区性xx| 成人18禁网站在线播放| 午夜精品久久久久麻豆影视| 成人综合亚洲欧美一区| 久久尻中国美女视频| 成人av免费不卡在线观看| 人人妻人人澡欧美91精品| 亚洲黄色av网站免费播放| 国产实拍勾搭女技师av在线| 夜色撩人久久7777| 夜鲁夜鲁狠鲁天天在线| 天天做天天干天天舔| 人妻av无码专区久久绿巨人| 青草久久视频在线观看| 视频久久久久久久人妻| 一区二区三区视频,福利一区二区 丰满的子国产在线观看 | 全国亚洲男人的天堂| 日韩欧美中文国产在线 | 91人妻人人做人人爽在线| 在线免费观看av日韩| 任你操视频免费在线观看| 新97超碰在线观看| 国产自拍在线观看成人| 五月天久久激情视频| 馒头大胆亚洲一区二区| 91精品啪在线免费| 中文字幕亚洲中文字幕| 999久久久久999| 亚洲欧美久久久久久久久| 女人精品内射国产99| 最新黄色av网站在线观看| 一区二区三区国产精选在线播放 | 都市家庭人妻激情自拍视频| 狠狠的往里顶撞h百合| 人妻在线精品录音叫床| 日本美女成人在线视频| 欧美3p在线观看一区二区三区| 天天摸天天亲天天舔天天操天天爽 | 亚洲在线一区二区欧美| 日本av在线一区二区三区| 最新黄色av网站在线观看| 欧美亚洲少妇福利视频| 最后99天全集在线观看| 中文字幕一区二 区二三区四区| 亚洲精品无码色午夜福利理论片| 2021国产一区二区| 中文字幕在线视频一区二区三区| 18禁美女无遮挡免费| 91一区精品在线观看| 搞黄色在线免费观看| 自拍偷拍日韩欧美一区二区| 91国产在线视频免费观看| 青青青国产免费视频| 一区国内二区日韩三区欧美| 97国产精品97久久| 不卡一区一区三区在线| 亚洲人妻30pwc| 欧美激情电影免费在线| 激情啪啪啪啪一区二区三区| 国产亚洲精品欧洲在线观看| 国产 在线 免费 精品| 亚洲高清自偷揄拍自拍| 白白操白白色在线免费视频| 久久精品国产23696| 大香蕉玖玖一区2区| 色综合久久无码中文字幕波多| 日韩人妻丝袜中文字幕| 青娱乐极品视频青青草| 亚洲美女自偷自拍11页| 日本熟妇一区二区x x| 视频一区二区三区高清在线| 韩国三级aaaaa高清视频| 日本人妻少妇18—xx| 黄片色呦呦视频免费看| 蜜臀av久久久久蜜臀av麻豆| 1769国产精品视频免费观看| 亚洲成人黄色一区二区三区| 日曰摸日日碰夜夜爽歪歪| 538精品在线观看视频| 东京热男人的av天堂| 在线国产精品一区二区三区| 精品老妇女久久9g国产| 国产日韩av一区二区在线| 男人在床上插女人视频| 青青青青青免费视频| 一色桃子久久精品亚洲| 91综合久久亚洲综合| 蜜桃视频入口久久久| 欧美国产亚洲中英文字幕| 日韩av大胆在线观看| 偷拍美女一区二区三区| 国产女人叫床高潮大片视频| 大白屁股精品视频国产| okirakuhuhu在线观看| 亚洲欧美另类手机在线| 1区2区3区4区视频在线观看| 亚洲综合图片20p| 中文字幕熟女人妻久久久| 大鸡吧插逼逼视频免费看| 亚洲狠狠婷婷综合久久app| 久久久久久97三级| 2022国产综合在线干| 又粗又硬又猛又爽又黄的| 丰满少妇翘臀后进式| 三上悠亚和黑人665番号| 熟女人妻在线观看视频| av资源中文字幕在线观看| 色综合色综合色综合色| 2022国产综合在线干| 成人在线欧美日韩国产| 大陆av手机在线观看| 2020中文字幕在线播放| 亚洲欧美精品综合图片小说| 亚洲人妻30pwc| 日本在线不卡免费视频| 一区二区三区久久久91| 直接观看免费黄网站| 护士特殊服务久久久久久久| 真实国模和老外性视频| 国产精品伦理片一区二区| 老司机在线精品福利视频| 国产在线91观看免费观看| 欧美精品黑人性xxxx| 亚洲午夜精品小视频| 亚洲高清视频在线不卡| 最新黄色av网站在线观看| 亚洲福利天堂久久久久久| 自拍偷拍亚洲另类色图| 动漫av网站18禁| 女同互舔一区二区三区| caoporn蜜桃视频| 中文字幕一区二 区二三区四区| 人人人妻人人澡人人| 中文字幕日本人妻中出| 日韩剧情片电影在线收看| 黑人性生活视频免费看| 中文字幕最新久久久| 亚洲欧美另类手机在线| 午夜精品亚洲精品五月色| 男人的天堂在线黄色| 区一区二区三国产中文字幕| 2017亚洲男人天堂| 欧美专区日韩专区国产专区| 在线亚洲天堂色播av电影| 97色视频在线观看| 97人人妻人人澡人人爽人人精品| 伊拉克及约旦宣布关闭领空| 521精品视频在线观看| 国产麻豆剧传媒精品国产av蜜桃| av在线资源中文字幕| 国产又粗又猛又爽又黄的视频美国| 75国产综合在线视频| 精品国产成人亚洲午夜| 91亚洲精品干熟女蜜桃频道| 亚洲欧美久久久久久久久| 亚洲无码一区在线影院| 精品一线二线三线日本| 日本女大学生的黄色小视频| 一区二区三区美女毛片| 午夜在线观看岛国av,com| 日本成人不卡一区二区| 国产综合高清在线观看| 不卡一区一区三区在线| 精品视频一区二区三区四区五区| 激情色图一区二区三区| 国产实拍勾搭女技师av在线| 大黑人性xxxxbbbb| 91欧美在线免费观看| 亚洲精品麻豆免费在线观看| 亚洲av日韩av网站| 制丝袜业一区二区三区| 97色视频在线观看| 熟女人妻一区二区精品视频| av俺也去在线播放| 欧美日韩在线精品一区二区三| 国产一级精品综合av| 国产91久久精品一区二区字幕| 都市激情校园春色狠狠| 日本黄色三级高清视频| 亚洲精品亚洲人成在线导航| 99精品国自产在线人| 好男人视频在线免费观看网站| 久久久久久久久久久久久97| 国产又粗又黄又硬又爽| 中文字幕人妻一区二区视频| yellow在线播放av啊啊啊| 日韩北条麻妃一区在线| 又黄又刺激的午夜小视频| 日本少妇在线视频大香蕉在线观看| 自拍偷拍日韩欧美亚洲| 国产91嫩草久久成人在线视频| 风流唐伯虎电视剧在线观看| 天天日天天摸天天爱| 99久久99一区二区三区| 精品视频一区二区三区四区五区| 亚洲欧美日韩视频免费观看| 亚洲精品国产在线电影| 亚洲区美熟妇久久久久| 99久久99一区二区三区| 插逼视频双插洞国产操逼插洞| 99精品国自产在线人| 免费在线黄色观看网站| 人妻久久久精品69系列| 天天日天天干天天干天天日| 99热久久这里只有精品| 扒开让我视频在线观看| 宅男噜噜噜666国产| 久久久久只精品国产三级| 粉嫩欧美美人妻小视频| 亚洲欧美成人综合在线观看| 91超碰青青中文字幕| 亚洲综合一区成人在线| 日韩美女精品视频在线观看网站| 亚国产成人精品久久久| 欧美成人精品欧美一级黄色| 伊人精品福利综合导航| 中文字幕最新久久久| 日本韩国免费福利精品| 最新中文字幕乱码在线| 成人av亚洲一区二区| 99亚洲美女一区二区三区| 亚洲第17页国产精品| 精品91自产拍在线观看一区| 黄色在线观看免费观看在线| 少妇被强干到高潮视频在线观看| 亚洲欧美人精品高清| 亚洲一级av大片免费观看| 日本女大学生的黄色小视频| 亚洲视频乱码在线观看| 狠狠躁夜夜躁人人爽天天天天97| 经典亚洲伊人第一页| 青青热久免费精品视频在线观看| 国产亚州色婷婷久久99精品| 神马午夜在线观看视频| 曰本无码人妻丰满熟妇啪啪| 韩国爱爱视频中文字幕| 精品人妻每日一部精品| 久久免费看少妇高潮完整版| 美女吃鸡巴操逼高潮视频| 大鸡巴操b视频在线| 亚洲精品久久视频婷婷| 果冻传媒av一区二区三区 | 午夜国产免费福利av| 51国产偷自视频在线播放| 国产视频一区在线观看| 日韩剧情片电影在线收看| 亚洲成人av在线一区二区| 偷拍3456eee| 中文字幕乱码人妻电影| 国产av国片精品一区二区| 91一区精品在线观看| 日韩少妇人妻精品无码专区| 精品视频中文字幕在线播放| 美女福利视频导航网站| 粉嫩欧美美人妻小视频| 亚洲综合色在线免费观看| 四川五十路熟女av| 又粗又长 明星操逼小视频| avjpm亚洲伊人久久| 日韩成人免费电影二区| 日本成人一区二区不卡免费在线| 人妻熟女中文字幕aⅴ在线| 亚洲自拍偷拍精品网| 激情图片日韩欧美人妻| 日韩精品中文字幕播放| 91在线视频在线精品3| 亚洲成人黄色一区二区三区| 国产精品女邻居小骚货| 毛片av在线免费看| 欧洲国产成人精品91铁牛tv| 好了av中文字幕在线| jiujiure精品视频在线| 天天干天天啪天天舔| 中文人妻AV久久人妻水| sspd152中文字幕在线| 日本福利午夜电影在线观看| 国产超码片内射在线| 亚洲国产最大av综合| 护士小嫩嫩又紧又爽20p| 国产a级毛久久久久精品| 欧美日韩不卡一区不区二区| 免费黄页网站4188| 在线可以看的视频你懂的| 午夜大尺度无码福利视频 | av网站色偷偷婷婷网男人的天堂| 日韩美在线观看视频黄| 骚逼被大屌狂草视频免费看| 可以免费看的www视频你懂的| 99精品亚洲av无码国产另类| 亚洲熟妇x久久av久久| 国产一区二区火爆视频 | 99av国产精品欲麻豆| 一区二区三区欧美日韩高清播放| 97国产在线av精品| 国产精品黄片免费在线观看| 欧美精产国品一二三产品价格| 日日夜夜精品一二三| 2021国产一区二区| 五十路熟女av天堂| av在线观看网址av| 欧美亚洲免费视频观看| 超级碰碰在线视频免费观看| 六月婷婷激情一区二区三区| 久草视频 久草视频2| 欧美一区二区三区久久久aaa| 欧美成人一二三在线网| 中文字幕在线观看国产片| 青青青青在线视频免费观看| 肏插流水妹子在线乐播下载| 人妻素人精油按摩中出| 沈阳熟妇28厘米大战黑人| 日日摸夜夜添夜夜添毛片性色av| 日本真人性生活视频免费看| 国产精品久久久久久美女校花| 欧美精品一二三视频| 国产成人精品av网站| 亚洲欧美国产综合777| 欧美黑人巨大性xxxxx猛交| 天天干天天日天天干天天操| 三级等保密码要求条款| 国产福利小视频免费观看| 80电影天堂网官网| 欧美交性又色又爽又黄麻豆| 天堂av在线最新版在线| 美女av色播在线播放| 精品黑人一区二区三区久久国产 | 伊人综合aⅴ在线网| 亚洲av日韩精品久久久| 国产成人精品午夜福利训2021| 久久久噜噜噜久久熟女av| 国产极品精品免费视频| 亚洲自拍偷拍综合色| 国产精品久久久久国产三级试频 | lutube在线成人免费看| 亚洲 国产 成人 在线| 人妻素人精油按摩中出| 午夜精品福利一区二区三区p| av手机免费在线观看高潮| 日韩精品激情在线观看| 香港一级特黄大片在线播放| 大香蕉伊人国产在线| 免费黄高清无码国产| 强行扒开双腿猛烈进入免费版| 欧美另类重口味极品在线观看| 91极品新人『兔兔』精品新作| 国产亚洲国产av网站在线| 2021国产一区二区| 日本一区二区三区免费小视频| 亚洲综合图片20p| 做爰视频毛片下载蜜桃视频1| 人妻丝袜精品中文字幕| 天天干天天操天天玩天天射| 青青社区2国产视频| 在线新三级黄伊人网| 日韩美女精品视频在线观看网站 | 国产精品福利小视频a| 成人av久久精品一区二区| 久久免看30视频口爆视频| 日本高清撒尿pissing| 国产福利小视频大全| 精彩视频99免费在线| 天天操天天干天天艹| 色秀欧美视频第一页| 2020国产在线不卡视频| 91国产资源在线视频| 国产一区二区视频观看| 成人乱码一区二区三区av| 久久免看30视频口爆视频| 久久精品久久精品亚洲人| 57pao国产一区二区| 色偷偷伊人大杳蕉综合网| 国产精品人久久久久久| 都市激情校园春色狠狠| 亚洲av在线观看尤物| 久草视频在线免播放| 2022国产精品视频| 亚洲人一区二区中文字幕| 2022中文字幕在线| 午夜精品福利91av| 99re久久这里都是精品视频| 91免费黄片可看视频| 国产麻豆剧传媒精品国产av蜜桃| 欧美80老妇人性视频| 免费黄页网站4188| 欧美亚洲自偷自拍 在线| 国产大学生援交正在播放| 天堂av在线最新版在线| 1区2区3区4区视频在线观看| 亚洲av在线观看尤物| 久久久91蜜桃精品ad| 久久农村老妇乱69系列| 成人区人妻精品一区二视频| 91极品大一女神正在播放| 青青草国内在线视频精选| 色综合久久无码中文字幕波多| 精品欧美一区二区vr在线观看 | 绯色av蜜臀vs少妇| yy6080国产在线视频| 日韩影片一区二区三区不卡免费| 亚洲av男人天堂久久| 在线观看视频一区麻豆| ka0ri在线视频| 午夜福利资源综合激情午夜福利资| 2020久久躁狠狠躁夜夜躁| 91福利在线视频免费观看| av手机在线观播放网站| 青青青视频手机在线观看| 日韩美av高清在线| 免费费一级特黄真人片| 偷拍自拍视频图片免费| 午夜影院在线观看视频羞羞羞| 偷拍自拍 中文字幕| 中文字幕 亚洲av| 在线观看操大逼视频| 巨乳人妻日下部加奈被邻居中出| 性感美女高潮视频久久久| 色吉吉影音天天干天天操| av天堂加勒比在线| 少妇被强干到高潮视频在线观看| 人人爱人人妻人人澡39| 国产精品久久久久久久女人18| 超级碰碰在线视频免费观看| 久久久极品久久蜜桃| 不卡一区一区三区在线| 欧美中文字幕一区最新网址| 国产午夜激情福利小视频在线| 男人的网址你懂的亚洲欧洲av| 久久永久免费精品人妻专区| 日韩欧美一级黄片亚洲| 在线成人日韩av电影| 日本在线不卡免费视频| 亚洲福利午夜久久久精品电影网| 偷拍3456eee| 午夜免费体验区在线观看| 日本午夜爽爽爽爽爽视频在线观看| 国产精品国色综合久久| 亚洲国产免费av一区二区三区| 国产伦精品一区二区三区竹菊| 绯色av蜜臀vs少妇| 午夜久久久久久久精品熟女| 中文字幕在线第一页成人 | 91成人在线观看免费视频| 超碰97人人做人人爱| 91精品国产观看免费| 中文字幕av第1页中文字幕| 一区二区三区的久久的蜜桃的视频| 日本性感美女三级视频| 骚货自慰被发现爆操| 国产一区二区神马久久| 中文字幕免费在线免费| 国产夫妻视频在线观看免费| 91久久国产成人免费网站| 欧美伊人久久大香线蕉综合| 韩国女主播精品视频网站| 欧美精品国产综合久久| 国产免费av一区二区凹凸四季| 欧美男同性恋69视频| 成年人免费看在线视频| 福利午夜视频在线观看| 天天干天天操天天摸天天射| 亚洲专区激情在线观看视频| 黑人巨大的吊bdsm| 一区二区三区在线视频福利| 搡老熟女一区二区在线观看| 中文字幕成人日韩欧美| 99热久久这里只有精品8| 91久久人澡人人添人人爽乱| 亚洲国产40页第21页| 激情色图一区二区三区| 新97超碰在线观看| 国产精品亚洲在线观看| 欧美aa一级一区三区四区| 日本男女操逼视频免费看| 在线免费观看日本片| av天堂加勒比在线| 欧美性感尤物人妻在线免费看| 国产va在线观看精品| 久久精品亚洲成在人线a| 人妻久久久精品69系列| 中文字幕第一页国产在线| 韩国一级特黄大片做受| 国产超码片内射在线| 亚洲国产成人最新资源| 色av色婷婷人妻久久久精品高清| 亚洲激情av一区二区| 国产亚洲四十路五十路| 久久这里有免费精品| 国产1区,2区,3区| 欧美伊人久久大香线蕉综合| 欧美老妇精品另类不卡片| 啊啊好慢点插舔我逼啊啊啊视频| 美女 午夜 在线视频| 大肉大捧一进一出好爽在线视频| 日韩熟女av天堂系列| 天天操夜夜操天天操天天操 | 色97视频在线播放| 91久久人澡人人添人人爽乱| 久久久精品欧洲亚洲av| 国产自拍黄片在线观看| 天天日天天天天天天天天天天 | 丰满的子国产在线观看| 午夜毛片不卡在线看| 中文字幕高清资源站| 2022国产综合在线干| 国产精品久久久久国产三级试频| 中文字幕欧美日韩射射一| 在线免费观看靠比视频的网站| 特一级特级黄色网片| 国产黄色a级三级三级三级| 超碰97免费人妻麻豆| 嫩草aⅴ一区二区三区| 适合午夜一个人看的视频| 国产性感美女福利视频| 91国产资源在线视频| aiss午夜免费视频| 岛国黄色大片在线观看| 国产三级影院在线观看| 青青伊人一精品视频| 大骚逼91抽插出水视频| 亚洲欧美久久久久久久久| 欧美色呦呦最新网址| 日韩三级黄色片网站| 一级黄片久久久久久久久| 成人性爱在线看四区| 亚洲av琪琪男人的天堂| 美女福利视频导航网站| www久久久久久久久久久| 操的小逼流水的文章| 日本成人一区二区不卡免费在线| 在线免费观看av日韩| 99久久成人日韩欧美精品| 天天干天天操天天插天天日| 人人妻人人澡人人爽人人dvl| 端庄人妻堕落挣扎沉沦| 91精品国产黑色丝袜| 91国产在线免费播放| 亚洲午夜伦理视频在线| 男生舔女生逼逼视频| 亚洲国产免费av一区二区三区| 男女第一次视频在线观看| 激情小视频国产在线| 欧美成人综合色在线噜噜| 国产综合视频在线看片| 国产精品久久久久网| 欧美精品黑人性xxxx| 天天做天天爽夜夜做少妇| 在线观看免费视频色97| 好吊视频—区二区三区| 久草视频在线一区二区三区资源站 | av天堂中文免费在线| 亚洲综合一区二区精品久久| 91九色porny国产蝌蚪视频| 欧美一区二区三区激情啪啪啪 | 大屁股肉感人妻中文字幕在线| 亚洲激情唯美亚洲激情图片| 无码中文字幕波多野不卡| 亚洲熟色妇av日韩熟色妇在线| 播放日本一区二区三区电影| 丝袜肉丝一区二区三区四区在线| 中文字幕在线视频一区二区三区| 欧美一区二区三区在线资源| 精产国品久久一二三产区区别| 婷婷午夜国产精品久久久| 国产中文精品在线观看| 99re久久这里都是精品视频| 天天干天天操天天摸天天射| 亚洲精品在线资源站| 国产精品久久久久久久久福交| av大全在线播放免费| 四川五十路熟女av| 色综合久久五月色婷婷综合| 天天干天天操天天爽天天摸| 亚洲视频在线观看高清| 成人av在线资源网站| 黄色三级网站免费下载| 日韩一区二区三区三州| 亚洲熟妇久久无码精品| 91人妻人人做人人爽在线| 黄工厂精品视频在线观看| 男生舔女生逼逼视频| 亚洲成高清a人片在线观看| 99久久激情婷婷综合五月天| 少妇人妻久久久久视频黄片| 国产chinesehd精品麻豆| 免费人成黄页网站在线观看国产 | av男人天堂狠狠干| 美味人妻2在线播放| 中国无遮挡白丝袜二区精品| 免费成人av中文字幕| av乱码一区二区三区| 一区二区三区四区五区性感视频| 日本性感美女三级视频| 99热这里只有精品中文| 日本午夜爽爽爽爽爽视频在线观看| 亚洲av色香蕉一区二区三区| 天天干夜夜操啊啊啊| av老司机亚洲一区二区| 亚洲国产欧美一区二区三区…| 肏插流水妹子在线乐播下载| 亚洲公开视频在线观看| 真实国模和老外性视频| 亚洲成人av在线一区二区| 狠狠躁狠狠爱网站视频 | 高清成人av一区三区| 人妻av无码专区久久绿巨人| 亚洲另类在线免费观看| 亚洲中文字幕综合小综合| 亚洲成人国产av在线| 成年午夜免费无码区| 欧美精品资源在线观看| 老司机深夜免费福利视频在线观看| 久久www免费人成一看片| 动色av一区二区三区| 色花堂在线av中文字幕九九| 青春草视频在线免费播放| 韩国一级特黄大片做受| 成人伊人精品色xxxx视频| 天天操,天天干,天天射| 日韩加勒比东京热二区| 年轻的人妻被夫上司侵犯| 午夜毛片不卡在线看| av在线资源中文字幕| 噜噜色噜噜噜久色超碰| 亚洲人妻视频在线网| 抽查舔水白紧大视频| 亚洲激情偷拍一区二区| 白嫩白嫩美女极品国产在线观看 | 日韩中文字幕福利av| 五十路av熟女松本翔子| 亚洲一区二区人妻av| 亚洲国产精品美女在线观看| 在线观看黄色成年人网站| 中文字幕在线观看国产片| 免费av岛国天堂网站| 韩国女主播精品视频网站| 激情内射在线免费观看| 国产精品一区二区三区蜜臀av| 男生舔女生逼逼视频| 久久艹在线观看视频| 风流唐伯虎电视剧在线观看| 青青草原色片网站在线观看| 国产久久久精品毛片| 国产视频一区二区午夜| 丰满少妇人妻xxxxx| 老司机你懂得福利视频| 老司机免费视频网站在线看| 久久三久久三久久三久久| 日日摸夜夜添夜夜添毛片性色av| 午夜精品一区二区三区更新| 日日操综合成人av| 午夜福利资源综合激情午夜福利资| 中文字幕日韩精品日本| 免费人成黄页网站在线观看国产| 色天天天天射天天舔| 狠狠鲁狠狠操天天晚上干干| 青青青青青青青青青国产精品视频 | 老熟妇凹凸淫老妇女av在线观看| 中文字幕在线乱码一区二区 | 久久美欧人妻少妇一区二区三区| 欧美亚洲免费视频观看| 99热色原网这里只有精品| 人妻另类专区欧美制服| 91久久综合男人天堂| 亚洲av成人免费网站| 啊啊好慢点插舔我逼啊啊啊视频| av俺也去在线播放| 中文字幕第三十八页久久| 亚洲区欧美区另类最新章节| 亚洲人妻国产精品综合| 精品区一区二区三区四区人妻| 久久久极品久久蜜桃| 扒开腿挺进肉嫩小18禁视频| 国产普通话插插视频| 天天插天天狠天天操| 97香蕉碰碰人妻国产樱花| 免费黄页网站4188| 色爱av一区二区三区| 中文字幕一区二区人妻电影冢本| 男生舔女生逼逼视频| 精品91自产拍在线观看一区| 日本男女操逼视频免费看| 欧美精产国品一二三产品价格| 2018在线福利视频| 精品久久久久久久久久久99| 超碰97免费人妻麻豆| 93人妻人人揉人人澡人人| 国产超码片内射在线| 亚洲va国产va欧美va在线| 日韩影片一区二区三区不卡免费| 欧美精品一二三视频| 天天色天天舔天天射天天爽| av黄色成人在线观看| 热思思国产99re| 国产亚洲精品视频合集| 亚洲天堂av最新网址| 大香蕉大香蕉在线看| 黑人性生活视频免费看| 一二三区在线观看视频| 999热精品视频在线| 色97视频在线播放| 无码精品一区二区三区人| 亚洲偷自拍高清视频| 97人妻夜夜爽二区欧美极品| 国产精品亚洲а∨天堂免| 蜜桃精品久久久一区二区| 91高清成人在线视频| 自拍偷拍 国产资源| 人妻少妇av在线观看| 国产精品久久久黄网站| 国产黄色a级三级三级三级| 亚洲国产美女一区二区三区软件| 中文亚洲欧美日韩无线码| 一区二区三区麻豆福利视频| 日韩黄色片在线观看网站| 亚洲另类图片蜜臀av| 免费男阳茎伸入女阳道视频 | 日韩在线中文字幕色| 日韩三级黄色片网站| 大香蕉大香蕉大香蕉大香蕉大香蕉| 大肉大捧一进一出好爽在线视频| 亚洲丝袜老师诱惑在线观看| 热99re69精品8在线播放| 18禁美女无遮挡免费| 在线免费91激情四射| 婷婷五月亚洲综合在线| 欧美精产国品一二三产品区别大吗| 亚洲一级特黄特黄黄色录像片| 亚洲熟妇久久无码精品| 福利在线视频网址导航| 日本少妇在线视频大香蕉在线观看| 亚洲成人av一区久久| 欧美在线偷拍视频免费看| 在线观看亚洲人成免费网址| 99婷婷在线观看视频| 欧美va不卡视频在线观看| 人人妻人人澡人人爽人人dvl| 视频在线免费观看你懂得| 国产三级影院在线观看| 日韩欧美一级精品在线观看| 日韩近亲视频在线观看| 2019av在线视频| 老司机免费视频网站在线看| caoporn蜜桃视频| 天堂女人av一区二区| 搞黄色在线免费观看| 亚洲高清免费在线观看视频| 亚洲 自拍 色综合图| 青青色国产视频在线| 天码人妻一区二区三区在线看| xxx日本hd高清| 青青青青青青青在线播放视频| 护士特殊服务久久久久久久| av老司机精品在线观看| 91天堂天天日天天操| 日本真人性生活视频免费看| 精品亚洲中文字幕av| 视频一区 视频二区 视频| 六月婷婷激情一区二区三区| 一区二区三区另类在线| 一区二区三区另类在线 | 国产精品探花熟女在线观看| 亚洲码av无色中文| 蜜臀av久久久久久久| 啊慢点鸡巴太大了啊舒服视频| 18禁网站一区二区三区四区 | 中文字幕免费福利视频6| 欧美美女人体视频一区| 高清成人av一区三区| 熟女人妻在线观看视频| 久久精品36亚洲精品束缚| 中文字幕,亚洲人妻| 看一级特黄a大片日本片黑人| 丝袜美腿欧美另类 中文字幕| 一区二区麻豆传媒黄片| 粉嫩av蜜乳av蜜臀| 69精品视频一区二区在线观看| 91 亚洲视频在线观看| 99久久成人日韩欧美精品| japanese日本熟妇另类| 午夜在线观看一区视频| 521精品视频在线观看| 天天色天天舔天天射天天爽| 日韩在线视频观看有码在线| 亚洲av香蕉一区区二区三区犇| 99国产精品窥熟女精品| 午夜精品一区二区三区更新| av久久精品北条麻妃av观看| 老师让我插进去69AV| 93精品视频在线观看| 51国产偷自视频在线播放| 亚洲欧美自拍另类图片| 婷婷色国产黑丝少妇勾搭AV| 亚欧在线视频你懂的| gay gay男男瑟瑟在线网站| 成人伊人精品色xxxx视频| 熟女视频一区,二区,三区| 国产91嫩草久久成人在线视频| 在线新三级黄伊人网| 一区二区三区麻豆福利视频| 边摸边做超爽毛片18禁色戒| 青青草原网站在线观看| 成年美女黄网站18禁久久| 日本真人性生活视频免费看| 福利一二三在线视频观看| 丰满少妇人妻xxxxx| 无码国产精品一区二区高潮久久4| 热久久只有这里有精品| 阴茎插到阴道里面的视频| 性色蜜臀av一区二区三区| 在线免费观看亚洲精品电影| 动漫黑丝美女的鸡巴| 一级黄色av在线观看| 伊人综合aⅴ在线网| 天天日天天敢天天干| 传媒在线播放国产精品一区| 人妻少妇av在线观看| 嫩草aⅴ一区二区三区| 亚洲天天干 夜夜操| 人人妻人人爽人人澡人人精品| 鸡巴操逼一级黄色气| 国产精品手机在线看片| 天堂av中文在线最新版| 高清一区二区欧美系列 | 国产精品视频资源在线播放| 国产成人一区二区三区电影网站| 漂亮 人妻被中出中文| 国产精品人妻66p| 人人爽亚洲av人人爽av| 521精品视频在线观看| 免费黄页网站4188| 极品性荡少妇一区二区色欲| 丰满少妇人妻xxxxx| 嫩草aⅴ一区二区三区| 日韩熟女系列一区二区三区| av视屏免费在线播放| 婷婷久久久综合中文字幕| 国产亚洲天堂天天一区| 天天操天天干天天插| 无码国产精品一区二区高潮久久4 日韩欧美一级精品在线观看 | 亚洲人人妻一区二区三区| 激情啪啪啪啪一区二区三区| 亚洲中文精品人人免费| 久精品人妻一区二区三区| 国产剧情演绎系列丝袜高跟| 久碰精品少妇中文字幕av | 9色精品视频在线观看| 免费高清自慰一区二区三区网站 | 中国视频一区二区三区| 2021久久免费视频| 天堂中文字幕翔田av| 粉嫩欧美美人妻小视频| 制丝袜业一区二区三区| 蜜桃视频17c在线一区二区| 欧美激情电影免费在线| 中文字幕免费在线免费| 四川五十路熟女av| 99精品国自产在线人| 色97视频在线播放| 亚洲免费国产在线日韩| 日视频免费在线观看| 91九色国产porny蝌蚪| 99精品久久久久久久91蜜桃| 日韩a级精品一区二区| 日本高清撒尿pissing| 国产综合高清在线观看| 91av精品视频在线| 国产一区成人在线观看视频| 少妇系列一区二区三区视频| 年轻的人妻被夫上司侵犯| 高清一区二区欧美系列| 一本久久精品一区二区| 韩国女主播精品视频网站| 国产自拍在线观看成人| 91社福利《在线观看| 极品丝袜一区二区三区| 欧美偷拍亚洲一区二区| 黄色中文字幕在线播放| 欧美精品黑人性xxxx| 美日韩在线视频免费看| 手机看片福利盒子日韩在线播放| 国产极品精品免费视频| 大香蕉玖玖一区2区| 亚洲天堂成人在线观看视频网站| 亚洲午夜电影之麻豆| 免费十精品十国产网站| 婷婷色国产黑丝少妇勾搭AV| 国产夫妻视频在线观看免费| 欧美激情电影免费在线| 国产成人自拍视频在线免费观看| 一区二区视频视频视频| 成人sm视频在线观看| 成人蜜桃美臀九一一区二区三区| av一本二本在线观看| 国产成人午夜精品福利| 午夜极品美女福利视频| 五月精品丁香久久久久福利社| 亚洲激情av一区二区| 中文字幕网站你懂的| 日本人妻少妇18—xx| 日韩成人免费电影二区| 美日韩在线视频免费看| av线天堂在线观看| 在线观看黄色成年人网站| 亚洲图片欧美校园春色| 中文字幕第1页av一天堂网| 三级黄色亚洲成人av| 熟女视频一区,二区,三区| 久久精品亚洲国产av香蕉| 日日操夜夜撸天天干| 一个色综合男人天堂| 1024久久国产精品| 色97视频在线播放| 国产麻豆乱子伦午夜视频观看| 国产使劲操在线播放| 亚洲黄色av网站免费播放| 红桃av成人在线观看| 国产麻豆剧果冻传媒app| 精品高跟鞋丝袜一区二区| av成人在线观看一区| 久久久久久cao我的性感人妻| 国产黄色大片在线免费播放| 天天艹天天干天天操| 一区二区视频视频视频| 亚洲综合在线观看免费| 欧美专区第八页一区在线播放| 在线视频免费观看网| 亚洲在线免费h观看网站| 绯色av蜜臀vs少妇| tube69日本少妇| 青青青青青免费视频| 晚上一个人看操B片| 51国产偷自视频在线播放| 久久免看30视频口爆视频| 国产成人精品av网站| 色花堂在线av中文字幕九九| 经典亚洲伊人第一页| 一区二区在线视频中文字幕| 99热这里只有精品中文| 中文字幕一区二区三区蜜月| 亚洲天堂有码中文字幕视频| 韩国女主播精品视频网站| 天天日天天日天天擦| 青青青青操在线观看免费| av在线资源中文字幕| 又大又湿又爽又紧A视频| 3337p日本欧洲大胆色噜噜| 91色秘乱一区二区三区| 9国产精品久久久久老师| 中文字幕欧美日韩射射一| 天天综合天天综合天天网| 高清一区二区欧美系列| 狠狠躁夜夜躁人人爽天天久天啪| 91久久综合男人天堂| 亚洲综合一区二区精品久久| av老司机精品在线观看| 亚洲第一黄色在线观看| 成人福利视频免费在线| 伊人综合免费在线视频| 青青草在观免费国产精品| 福利午夜视频在线观看| 社区自拍揄拍尻屁你懂的 | 直接观看免费黄网站| 色花堂在线av中文字幕九九| 国产精品久久久久国产三级试频| 精品亚洲中文字幕av| yellow在线播放av啊啊啊| 狍和女人的王色毛片| 成人免费公开视频无毒| 青青在线视频性感少妇和隔壁黑丝 | 在线观看亚洲人成免费网址| 在线观看的a站 最新| 成年人啪啪视频在线观看| 久久热久久视频在线观看| 欧美专区日韩专区国产专区| 99热99re在线播放| 亚洲区欧美区另类最新章节| 久草视频在线一区二区三区资源站| 蜜桃色婷婷久久久福利在线 | 国产实拍勾搭女技师av在线| 久久久超爽一二三av| 成年人的在线免费视频| 国产亚洲天堂天天一区| 日本乱人一区二区三区| 老司机99精品视频在线观看| 91高清成人在线视频| 热思思国产99re| 成人免费公开视频无毒| 日日日日日日日日夜夜夜夜夜夜| 欧美一区二区三区激情啪啪啪| 亚洲中文字幕乱码区| 亚洲免费va在线播放| 久久久91蜜桃精品ad| 亚洲中文字幕人妻一区| 免费在线看的黄片视频| 成人亚洲精品国产精品| 99精品免费久久久久久久久a| 激情色图一区二区三区| 欧美成一区二区三区四区| 99国产精品窥熟女精品| 狠狠鲁狠狠操天天晚上干干| 社区自拍揄拍尻屁你懂的| 日本精品视频不卡一二三| 欧美熟妇一区二区三区仙踪林| 国产综合视频在线看片| 精品suv一区二区69| 日本午夜久久女同精女女| 欧亚乱色一区二区三区| 欧美日韩激情啪啪啪| 色花堂在线av中文字幕九九 | 天天操天天射天天操天天天| 国产精品黄大片在线播放| 亚洲av无女神免非久久| 亚洲一区制服丝袜美腿| 欧美一区二区三区在线资源| 国产不卡av在线免费| 久草极品美女视频在线观看| 91精品国产综合久久久蜜| 亚洲自拍偷拍精品网| 欧美成人黄片一区二区三区| 亚洲视频在线观看高清| 成人影片高清在线观看| 精品亚洲中文字幕av| 国产九色91在线观看精品| 99精品视频在线观看婷婷| 亚洲精品色在线观看视频| 日本女人一级免费片| 97人人模人人爽人人喊| 中文字幕一区的人妻欧美日韩| 成人在线欧美日韩国产| 2025年人妻中文字幕乱码在线| 老司机福利精品免费视频一区二区 | 特级无码毛片免费视频播放| 亚洲综合在线视频可播放| 亚洲另类图片蜜臀av| 日本丰满熟妇BBXBBXHD| 亚洲av可乐操首页| 亚洲午夜电影在线观看| 51国产成人精品视频| 一级a看免费观看网站| 天天干天天操天天扣| 五月天中文字幕内射| 免费观看丰满少妇做受| 91 亚洲视频在线观看| 91精品激情五月婷婷在线| 精品国产在线手机在线| 国产亚洲精品品视频在线| 中文 成人 在线 视频| 精品高潮呻吟久久av| 免费看国产又粗又猛又爽又黄视频| 精品美女久久久久久| 啪啪啪啪啪啪啪啪啪啪黄色| 国产精品黄大片在线播放| 欧美色婷婷综合在线| 天天日天天做天天日天天做| 国产又色又刺激在线视频| 77久久久久国产精产品| 二区中出在线观看老师| 欧美精品免费aaaaaa| 亚洲福利精品视频在线免费观看 | 亚洲免费国产在线日韩| 无码精品一区二区三区人| 国产精品污污污久久| 国产女孩喷水在线观看| 11久久久久久久久久久| 国产妇女自拍区在线观看| 国产精品中文av在线播放| av一本二本在线观看| 免费男阳茎伸入女阳道视频| 在线观看av2025| 四川五十路熟女av| 在线免费观看黄页视频| 最新的中文字幕 亚洲| 成年人黄视频在线观看| 亚洲av日韩av网站| 国产精品大陆在线2019不卡| 亚洲av无女神免非久久| 国产aⅴ一线在线观看| 超级福利视频在线观看| 欧美爆乳肉感大码在线观看| 国产麻豆剧果冻传媒app| 日本人妻精品久久久久久| 天天干天天日天天谢综合156| av中文字幕电影在线看| 国产精品久久综合久久| 热久久只有这里有精品| 自拍偷拍日韩欧美亚洲| 精品人妻每日一部精品| 日本精品美女在线观看| 欧美久久久久久三级网| 黑人解禁人妻叶爱071| 国产一线二线三线的区别在哪| 国产一区二区三免费视频| 国产精品久久久久网| 色呦呦视频在线观看视频| 1000小视频在线| 熟女国产一区亚洲中文字幕| 中国产一级黄片免费视频播放| 人妻av无码专区久久绿巨人| 欧美视频不卡一区四区| 91精品国产高清自在线看香蕉网| 日本少妇高清视频xxxxx| 色综合天天综合网国产成人| 国产成人精品一区在线观看| 亚洲熟妇久久无码精品| 美日韩在线视频免费看| 少妇ww搡性bbb91| 精品久久久久久久久久中文蒉| 亚洲天堂精品福利成人av| 天天日天天干天天要| 美洲精品一二三产区区别| 日韩成人综艺在线播放| 亚洲国产在线精品国偷产拍| 91色网站免费在线观看| 国产午夜亚洲精品麻豆| gay gay男男瑟瑟在线网站| 久久久91蜜桃精品ad| 日本xx片在线观看| 亚洲国产最大av综合| 日本成人不卡一区二区| 中文字幕国产专区欧美激情| 欧洲亚洲欧美日韩综合| av日韩在线免费播放| 毛茸茸的大外阴中国视频| 蜜桃视频17c在线一区二区| 成年人该看的视频黄免费| 中文字幕人妻一区二区视频| 三级等保密码要求条款| 成年人中文字幕在线观看| 成人伊人精品色xxxx视频| 亚洲第17页国产精品| 97年大学生大白天操逼| 国产一区二区三免费视频| 色哟哟在线网站入口| 日本脱亚入欧是指什么| 精品黑人一区二区三区久久国产 | 国产精品大陆在线2019不卡| 91精品国产高清自在线看香蕉网 | 一区二区三区另类在线| 日本高清成人一区二区三区| 国产精品黄片免费在线观看| av在线免费观看亚洲天堂| 中文字幕在线观看国产片| 中文字幕免费在线免费| 国产密臀av一区二区三| 欧美成人综合色在线噜噜| 午夜精品福利一区二区三区p| 超碰公开大香蕉97| 久久热这里这里只有精品| 成人国产激情自拍三区| 日本熟女精品一区二区三区| 伊人日日日草夜夜草| 人妻少妇一区二区三区蜜桃| 亚洲一区二区三区精品乱码| 国产性色生活片毛片春晓精品| 激情国产小视频在线| 91免费观看在线网站| 久久久精品国产亚洲AV一| 亚洲国产精品久久久久久6| 任我爽精品视频在线播放| 一区二区视频视频视频| 天天操天天干天天日狠狠插| 成人av在线资源网站| 亚洲熟妇无码一区二区三区| 亚洲国产在人线放午夜| 美女被肏内射视频网站| 国产精选一区在线播放| 欧美黄色录像免费看的| 青青伊人一精品视频| 婷婷六月天中文字幕| 高潮视频在线快速观看国家快速| 亚洲av无女神免非久久| 91亚洲国产成人精品性色| 国产美女精品福利在线| 91老师蜜桃臀大屁股| 亚洲欧美一区二区三区电影| 啊啊啊视频试看人妻| 热久久只有这里有精品| 白嫩白嫩美女极品国产在线观看| 91人妻人人做人人爽在线| 色偷偷伊人大杳蕉综合网| 日韩欧美一级黄片亚洲| 国产成人自拍视频在线免费观看| 久久这里只有精彩视频免费| av线天堂在线观看| 1区2区3区不卡视频| 日韩在线视频观看有码在线| 日本中文字幕一二区视频| 夜色福利视频在线观看| 国产剧情演绎系列丝袜高跟| 蜜桃视频入口久久久| 国产第一美女一区二区三区四区| 亚洲1卡2卡三卡4卡在线观看| 欧美视频一区免费在线| 91在线视频在线精品3| 日本脱亚入欧是指什么| 精品黑人一区二区三区久久国产 | 天天日天天干天天干天天日| 国产精品人妻66p| 亚洲一级av无码一级久久精品| 超级福利视频在线观看| 91精品国产91久久自产久强| 天天日夜夜干天天操| 国产大鸡巴大鸡巴操小骚逼小骚逼| 又色又爽又黄的美女裸体| 小穴多水久久精品免费看| 男人天堂av天天操| 免费看高清av的网站| 1000部国产精品成人观看视频 | 欧美精产国品一二三产品价格| 国产精品免费不卡av| 亚洲精品麻豆免费在线观看| 亚洲国产精品美女在线观看| 爱爱免费在线观看视频| 成人影片高清在线观看 | 成人国产小视频在线观看| 男人靠女人的逼视频| 91国产在线视频免费观看| 国产精品久久久黄网站| 亚洲视频乱码在线观看| yy96视频在线观看| 亚洲国产精品久久久久久6| 岛国av高清在线成人在线| 综合激情网激情五月五月婷婷| 日本一道二三区视频久久| 久精品人妻一区二区三区| 午夜激情久久不卡一区二区| 久久h视频在线观看| h国产小视频福利在线观看| 精品久久婷婷免费视频| 欧美性受xx黑人性猛交| 免费无码人妻日韩精品一区二区| 欧美精品免费aaaaaa| 国产无遮挡裸体免费直播视频| brazzers欧熟精品系列| 一区二区三区日韩久久| 国产精品自拍偷拍a| 最近中文字幕国产在线| 国产之丝袜脚在线一区二区三区| 欧美亚洲少妇福利视频| 亚洲一区二区人妻av| 久草视频首页在线观看| 视频一区二区综合精品| 77久久久久国产精产品| 大香蕉伊人中文字幕| 色爱av一区二区三区| 啊慢点鸡巴太大了啊舒服视频| 亚洲一级 片内射视正片| 黄色中文字幕在线播放| aⅴ精产国品一二三产品| 国产精品中文av在线播放| 中文字幕一区二区人妻电影冢本| 欧美一区二区三区啪啪同性| 久久久超爽一二三av| 77久久久久国产精产品| 国产亚洲天堂天天一区| 大陆av手机在线观看| 97人妻无码AV碰碰视频| 亚洲免费成人a v| 亚洲一级av无码一级久久精品| 少妇高潮一区二区三区| 女蜜桃臀紧身瑜伽裤| 亚洲综合在线视频可播放| 青娱乐最新视频在线| 黄片色呦呦视频免费看| 国产精品一区二区av国| 又色又爽又黄又刺激av网站| 亚洲av人人澡人人爽人人爱| 91免费福利网91麻豆国产精品| 亚洲护士一区二区三区| 97精品视频在线观看| 青娱乐极品视频青青草| 51国产成人精品视频| av欧美网站在线观看| 天天操,天天干,天天射| 日本女大学生的黄色小视频| 日本女人一级免费片| 亚洲Av无码国产综合色区| 亚洲最大黄了色网站| 班长撕开乳罩揉我胸好爽| 四川五十路熟女av| 国产成人自拍视频播放| 好男人视频在线免费观看网站| 亚洲另类图片蜜臀av| 日韩无码国产精品强奸乱伦| 伊人综合aⅴ在线网| 人妻在线精品录音叫床| 中文字幕一区二区人妻电影冢本 | 摧残蹂躏av一二三区| av完全免费在线观看av| eeuss鲁片一区二区三区| 中文字幕人妻被公上司喝醉在线| 鸡巴操逼一级黄色气| 日韩中文字幕在线播放第二页| 91色秘乱一区二区三区| 成年人的在线免费视频| www日韩a级s片av| 97欧洲一区二区精品免费| 狠狠嗨日韩综合久久| 伊人网中文字幕在线视频| 天天操,天天干,天天射| 自拍偷拍一区二区三区图片| 国产91精品拍在线观看| 一本久久精品一区二区| 老司机午夜精品视频资源| 91天堂精品一区二区| 日本精品视频不卡一二三| 很黄很污很色的午夜网站在线观看 | 91中文字幕最新合集| 国产午夜亚洲精品不卡在线观看| 亚洲国产精品久久久久久6| 免费男阳茎伸入女阳道视频| 香蕉av影视在线观看| 天天色天天舔天天射天天爽| 99精品国自产在线人| 中文字幕第三十八页久久| 天天干天天操天天扣| 视频在线免费观看你懂得| 天天日天天天天天天天天天天 | 又粗又长 明星操逼小视频| 色吉吉影音天天干天天操| 久久机热/这里只有| 亚洲天堂有码中文字幕视频| 春色激情网欧美成人| 成人福利视频免费在线| 欧美精品激情在线最新观看视频 | 换爱交换乱高清大片| yy6080国产在线视频| 国产综合精品久久久久蜜臀| 男生用鸡操女生视频动漫| 视频一区 二区 三区 综合| 初美沙希中文字幕在线 | 精品91自产拍在线观看一区| 天天躁日日躁狠狠躁av麻豆| 喷水视频在线观看这里只有精品| 天干天天天色天天日天天射| 蜜桃视频在线欧美一区| 国产剧情演绎系列丝袜高跟| 中文字幕人妻熟女在线电影| 国际av大片在线免费观看| 国产麻豆91在线视频| 欧美日韩一区二区电影在线观看| 日本一区二区三区免费小视频| 日本少妇人妻xxxxxhd| 91在线免费观看成人| 精产国品久久一二三产区区别| 久久久精品999精品日本| mm131美女午夜爽爽爽| 国产又粗又硬又大视频| nagger可以指黑人吗| 午夜美女少妇福利视频| 好吊操视频这里只有精品| 极品性荡少妇一区二区色欲| 午夜毛片不卡在线看| 极品粉嫩小泬白浆20p主播| 无套猛戳丰满少妇人妻| 青青青青青青草国产| 好吊操视频这里只有精品| 在线观看免费岛国av| 一区二区三区毛片国产一区| 青娱乐蜜桃臀av色| 国产日韩精品免费在线| 免费岛国喷水视频在线观看 | 亚洲图片欧美校园春色| 精彩视频99免费在线| 91亚洲手机在线视频播放| 欧美伊人久久大香线蕉综合| 亚洲成人三级在线播放| 亚洲综合自拍视频一区| 亚洲成人国产综合一区| 在线可以看的视频你懂的| 免费无毒热热热热热热久| 我想看操逼黄色大片| 午夜久久久久久久99| 午夜av一区二区三区| 国产精品视频欧美一区二区| 一区二区三区久久久91| 狠狠操狠狠操免费视频| 免费观看理论片完整版| 一区国内二区日韩三区欧美| 2021久久免费视频| 亚洲欧美激情人妻偷拍| 亚洲中文字幕校园春色| 亚洲av黄色在线网站| 亚洲一区二区三区uij| 精品国产乱码一区二区三区乱| 视频一区 视频二区 视频| 国产福利小视频免费观看| 91www一区二区三区| 色狠狠av线不卡香蕉一区二区 | 香蕉91一区二区三区| 国产性色生活片毛片春晓精品| 成人国产影院在线观看| 天天通天天透天天插| 中文字幕—97超碰网| 亚洲另类伦春色综合小| 中文字幕一区的人妻欧美日韩| 国产又大又黄免费观看| 一区二区视频在线观看免费观看| 精彩视频99免费在线| 天天色天天操天天透| 国产久久久精品毛片| 在线免费观看日本片| 久久免看30视频口爆视频| 亚洲欧美成人综合视频| 超碰97人人做人人爱| 亚洲中文精品人人免费| 日韩激情文学在线视频| av无限看熟女人妻另类av| 日本韩国亚洲综合日韩欧美国产 | 国产白袜脚足J棉袜在线观看| 成人免费毛片aaaa| 一区二区三区麻豆福利视频| 男人的网址你懂的亚洲欧洲av| 狠狠操操操操操操操操操| 亚洲国产欧美一区二区丝袜黑人| av网址在线播放大全| 欧美亚洲少妇福利视频| 91麻豆精品传媒国产黄色片| 国产老熟女伦老熟妇ⅹ| 自拍偷拍亚洲欧美在线视频| 大白屁股精品视频国产| 久久久久国产成人精品亚洲午夜| 在线免费91激情四射 | 福利一二三在线视频观看| 超级福利视频在线观看| 3344免费偷拍视频| 香港一级特黄大片在线播放| av大全在线播放免费| 揄拍成人国产精品免费看视频| 日本一区美女福利视频| 秋霞午夜av福利经典影视| 亚洲丝袜老师诱惑在线观看| 人人爱人人妻人人澡39| 九九热99视频在线观看97| 99精品视频在线观看免费播放| 亚洲av色图18p| 噜噜色噜噜噜久色超碰| 日韩精品啪啪视频一道免费| 午夜福利资源综合激情午夜福利资| 夜色福利视频在线观看| 成人18禁网站在线播放| 亚洲无线观看国产高清在线| 老司机免费福利视频网| 亚洲国产最大av综合| 天堂av狠狠操蜜桃| 超碰在线观看免费在线观看| 精品国产成人亚洲午夜| 黑人大几巴狂插日本少妇| 福利午夜视频在线合集| 亚洲综合另类欧美久久| 天天摸天天亲天天舔天天操天天爽 | 99久久久无码国产精品性出奶水| 在线免费观看日本伦理| 久久久制服丝袜中文字幕| 亚洲最大免费在线观看| 国产精品系列在线观看一区二区| 亚洲一区二区三区av网站| 日本黄在免费看视频| 亚洲人妻国产精品综合| 亚洲 图片 欧美 图片| 欧美在线精品一区二区三区视频 | 欧美视频不卡一区四区| 日视频免费在线观看| 97青青青手机在线视频| 日本一二三区不卡无| 欧美精品黑人性xxxx| 熟女人妻在线观看视频| 一区二区三区国产精选在线播放| 成年人的在线免费视频| av天堂中文免费在线| 日本精品视频不卡一二三| free性日本少妇| 黄色大片免费观看网站| 中文字幕av熟女人妻| 亚洲欧美成人综合在线观看| 91麻豆精品91久久久久同性| 久久艹在线观看视频| 色婷婷久久久久swag精品| 无码中文字幕波多野不卡 | 亚洲超碰97人人做人人爱| av俺也去在线播放| 人妻爱爱 中文字幕| 91天堂精品一区二区| 精品国产污污免费网站入口自| 亚洲第17页国产精品| 亚洲精品麻豆免费在线观看| 亚洲成人av一区在线| 亚洲美女自偷自拍11页| 天天日天天鲁天天操| 欧美专区日韩专区国产专区| 真实国产乱子伦一区二区| 青青青国产片免费观看视频| 久久久超爽一二三av| 日韩欧美高清免费在线| 亚洲综合在线观看免费| 欧美一区二区三区啪啪同性| 97人人妻人人澡人人爽人人精品| 欧美 亚洲 另类综合| 男人操女人的逼免费视频| 国产精品自拍在线视频| 视频二区在线视频观看| 插逼视频双插洞国产操逼插洞| 国产成人自拍视频在线免费观看| 亚洲av第国产精品| 日日夜夜精品一二三| 国产无遮挡裸体免费直播视频| 懂色av蜜桃a v| 亚洲熟女久久久36d| 黄色资源视频网站日韩| 青青青青草手机在线视频免费看| 国产白嫩美女一区二区| 亚洲精品久久视频婷婷| 91大神福利视频网| 国产乱子伦一二三区| 日韩欧美国产一区ab| 果冻传媒av一区二区三区| 在线观看免费视频网| 97人妻人人澡爽人人精品| aⅴ五十路av熟女中出| 天天想要天天操天天干| 欧亚日韩一区二区三区观看视频| 亚洲女人的天堂av| 国产视频一区在线观看| 香蕉片在线观看av| 国产精品欧美日韩区二区| 五十路熟女人妻一区二区9933| 男人的天堂在线黄色| 久久热久久视频在线观看| 视频一区二区综合精品| 91超碰青青中文字幕| 91亚洲精品干熟女蜜桃频道| 亚洲1区2区3区精华液| 97色视频在线观看| 天堂中文字幕翔田av| 制丝袜业一区二区三区| 91啪国自产中文字幕在线| 特大黑人巨大xxxx| 精品少妇一二三视频在线| 91啪国自产中文字幕在线| 欧美另类z0z变态| 91人妻精品久久久久久久网站 | 中文字幕高清在线免费播放| 又黄又刺激的午夜小视频| 午夜影院在线观看视频羞羞羞| 国产性生活中老年人视频网站| 狍和女人的王色毛片| 最新97国产在线视频| 亚洲综合在线视频可播放| 国产欧美日韩第三页| 国产精品大陆在线2019不卡| 经典av尤物一区二区| 久久精品美女免费视频| 99久久99久国产黄毛片| 91 亚洲视频在线观看| av成人在线观看一区| 夜色撩人久久7777| 久久久极品久久蜜桃| 国产女人被做到高潮免费视频| 色爱av一区二区三区| 粉嫩av蜜乳av蜜臀| 青草久久视频在线观看| 国产又粗又黄又硬又爽| 久久99久久99精品影院| 久久精品36亚洲精品束缚| 国产成人一区二区三区电影网站| 插小穴高清无码中文字幕| 女生自摸在线观看一区二区三区| 青青青激情在线观看视频| 51国产成人精品视频| 99国内精品永久免费视频| 2020中文字幕在线播放| 国产视频在线视频播放| 中国熟女@视频91| 人妻久久久精品69系列| 国产精品久久久久久久精品视频| 欧美黑人性猛交xxxxⅹooo| 天天日天天透天天操| av天堂资源最新版在线看| 欧美精品亚洲精品日韩在线| 天堂av在线播放免费| 日韩三级黄色片网站| 66久久久久久久久久久| 特一级特级黄色网片| 青青青视频手机在线观看| 18禁免费av网站| 在线观看黄色成年人网站| 国产黑丝高跟鞋视频在线播放| 黑人巨大的吊bdsm| 2022天天干天天操| 国产av一区2区3区| 欧美日本在线观看一区二区| 久久精品视频一区二区三区四区| 一区二区三区四区中文| 亚洲欧美综合在线探花| 日本人妻少妇18—xx| 91桃色成人网络在线观看| 欧美精品国产综合久久| 久久99久久99精品影院| 天天干天天插天天谢| 天天色天天操天天透| 亚洲欧美一区二区三区爱爱动图| 黄网十四区丁香社区激情五月天| 日本18禁久久久久久| 国产成人精品福利短视频| 91天堂精品一区二区| 青草亚洲视频在线观看| 国产内射中出在线观看| 天天干夜夜操天天舔| 丝袜亚洲另类欧美变态| 亚洲美女美妇久久字幕组| 99精品免费观看视频| 自拍偷拍日韩欧美亚洲| 欧美aa一级一区三区四区| 精品成人午夜免费看| 国产综合精品久久久久蜜臀| 精品一区二区三区欧美| 国产极品精品免费视频| 色av色婷婷人妻久久久精品高清| 国产成人精品av网站| 超pen在线观看视频公开97| 97成人免费在线观看网站| 91综合久久亚洲综合| 亚洲欧美成人综合视频| 天天干天天爱天天色| 中文字幕熟女人妻久久久| 人妻熟女中文字幕aⅴ在线| 免费一级特黄特色大片在线观看| AV无码一区二区三区不卡| 日本熟妇丰满厨房55| 在线视频国产欧美日韩| 亚洲 色图 偷拍 欧美| 骚逼被大屌狂草视频免费看| 亚洲av琪琪男人的天堂| 特级欧美插插插插插bbbbb| 又黄又刺激的午夜小视频| 无码国产精品一区二区高潮久久4| 成人久久精品一区二区三区| 亚洲精品国产久久久久久| 青青青青青青青在线播放视频| 国产又粗又硬又猛的毛片视频 | 黑人巨大的吊bdsm| 日韩精品电影亚洲一区| 亚洲精品乱码久久久久久密桃明| av森泽佳奈在线观看| 九色porny九色9l自拍视频| 粉嫩欧美美人妻小视频| 亚洲一区自拍高清免费视频| 久久精品亚洲成在人线a| 国产精选一区在线播放| 日本五十路熟新垣里子| 国产精品一区二区三区蜜臀av| 韩国黄色一级二级三级| 欧美熟妇一区二区三区仙踪林| 欧美少妇性一区二区三区| 国产又粗又猛又爽又黄的视频美国| 亚洲在线一区二区欧美| 热思思国产99re| 极品性荡少妇一区二区色欲| 亚洲一区二区三区av网站| 亚洲国产精品免费在线观看| 亚洲成人av一区在线| 99国内精品永久免费视频| 在线观看操大逼视频| 一区二区三区久久久91| 亚洲精品一线二线在线观看| 亚洲免费视频欧洲免费视频| 亚洲av第国产精品| 中文字幕亚洲久久久| 97人妻夜夜爽二区欧美极品| 免费黄页网站4188| 唐人色亚洲av嫩草| 男人的天堂在线黄色| 欧美综合婷婷欧美综合| 亚洲免费福利一区二区三区| av老司机亚洲一区二区| 日本少妇精品免费视频| 大屁股熟女一区二区三区| 青青热久免费精品视频在线观看| 日本啪啪啪啪啪啪啪| 久久香蕉国产免费天天| 99的爱精品免费视频| 2022天天干天天操| 少妇与子乱在线观看| jul—619中文字幕在线| 日日摸夜夜添夜夜添毛片性色av| 精品亚洲在线免费观看| 黑人性生活视频免费看| 国产午夜福利av导航| 亚洲成人午夜电影在线观看| 青青热久免费精品视频在线观看| 亚洲欧美一区二区三区爱爱动图| 社区自拍揄拍尻屁你懂的| 一区二区三区蜜臀在线| 久久久人妻一区二区| 超碰中文字幕免费观看| 激情伦理欧美日韩中文字幕 | 国产精彩福利精品视频| 2020av天堂网在线观看| 中文字幕第一页国产在线| 亚洲av无码成人精品区辽| 亚洲国产香蕉视频在线播放| 一区二区三区综合视频| 蜜臀av久久久久蜜臀av麻豆| 国产视频一区在线观看| 五月婷婷在线观看视频免费| 亚洲欧美国产综合777| 青青青激情在线观看视频| 黄工厂精品视频在线观看| 5528327男人天堂| 亚洲乱码中文字幕在线| 欧美中文字幕一区最新网址| 中文字幕—97超碰网| 精品av久久久久久久| 97人人妻人人澡人人爽人人精品| 男大肉棒猛烈插女免费视频| 蜜桃视频在线欧美一区| 国产一区二区欧美三区| 馒头大胆亚洲一区二区| 成人av天堂丝袜在线观看 | 亚洲中文字幕校园春色| 日韩在线视频观看有码在线| av完全免费在线观看av| 天天草天天色天天干| 欧美亚洲国产成人免费在线| 99精品亚洲av无码国产另类| 国产精品福利小视频a| 国产伊人免费在线播放| 久久精品久久精品亚洲人| 日韩美女综合中文字幕pp| 黄网十四区丁香社区激情五月天 | 色综合久久久久久久久中文| 午夜极品美女福利视频| 国产亚洲视频在线观看| 青青青视频自偷自拍38碰| 精品区一区二区三区四区人妻| 日本特级片中文字幕| 国产极品美女久久久久久| 精品一线二线三线日本| 精品首页在线观看视频| 日本少妇精品免费视频| 亚洲国产精品久久久久久6| 色狠狠av线不卡香蕉一区二区| 日韩欧美国产一区不卡| 一区二区三区精品日本| 青青草人人妻人人妻| 欧美韩国日本国产亚洲| 亚洲特黄aaaa片| 38av一区二区三区| 国产97在线视频观看| 国产精品人妻熟女毛片av久| 国产成人精品久久二区91| 久久久久久久亚洲午夜综合福利 | 2022中文字幕在线| 国产亚洲欧美另类在线观看| tube69日本少妇| 国语对白xxxx乱大交| 天天操夜夜操天天操天天操 | 人人人妻人人澡人人| 日本18禁久久久久久| 亚洲伊人久久精品影院一美女洗澡 | 亚洲人妻av毛片在线| 青青草国内在线视频精选| 视频 国产 精品 熟女 | 亚洲午夜伦理视频在线|