Jeffrey Friedl's Blog » Preset Template Tokens in My Lightroom Plugins (2024)

  • Jeffrey's Lightroom Goodies
  • Jeffrey's Blog

Many of my plugins for Adobe Lightroom Classic offer the ability toconstruct certain kinds of data dynamically, such as setting image titles when uploading photos to aremote site.

The rest of this page documents the template notation as it exists forthe latest versions of the plugins runningin the latest version of Lightroom. If somethingdoesn't seem to work as documented, please make sure you're using thelatest version of your plugin, via the check now button in theupper-right section of the Plugin Manager.

A template is a combination of prose and special tokens wrapped in { ... } that insert photo-specific items.

For example, the template

 Copyright {YYYY} {Artist}

includes the text Copyright, a space, the token YYYY (which stands forthe year that the photo was taken), a space, and the Artist token (whichstands for the value of the Artist metadata item).

For one of my photos taken in 2006, this example would become

 Copyright 2006 Jeffrey Eric Francis Friedl

Here is the list of tokens that are currently supported:

Photo Date
YYYY The year the photo was taken, as a four-digit string
YY The year the photo was taken, as a two-digit string
MM The month the photo was taken, as a two-digit string
DD The day of the month the photo was taken, as a two-digit string
HH The hour value for the time the photo was taken, in 24-hour notation, as a two-digit string
HH12 The hour value for the time the photo was taken, in 12-hour notation, as one- or two-digit string
AMPM The AM/PM designation for the time when the photo was taken
MIN The minute value for the time the photo was taken, as a two-digit string
SS The seconds value for the time the photo was taken, as a two-digit string
SST1 The sub-second value for the time the photo was taken, as a single-digit number of tenths of a second. If the photo time was not captured to detail beyond integral seconds, the value is 0.
SST2 The sub-second value for the time the photo was taken, as a two-digit number of hundredths of a second. If the photo time is not available to detail beyond integral seconds, the value is 00.
SST3 The sub-second value for the time the photo was taken, as a three-digit number of thousandths of a second. If the photo time is not available to detail beyond integral seconds, the value is 000.
Weekday Localized day of the week that the photo was taken (e.g. Wednesday).
Wday Localized short form (usually three-character string) of the day of the week that the photo was taken (e.g. Wed).
Mon The month the photo was taken, as a localized three-character string
Month The month the photo was taken, as a localized string
Date The day of the month the photo was taken, as one- or two-digit string
DAYNUM The ISO-8601 day of the year that the photo was taken on, as a three-digit string.
WEEKNUM The ISO-8601 week of the year that the photo was taken on, as a two-digit string.
ISO8601Date The ISO 8601 date/time string of the photo. Unlike other date-related fields, this may include a timezone indication, and/or a sub-second timestamp.
D1 The full date of the photo, in the system-localized short format that you can set in your operating system's preferences dialog. On my system this is something along the lines of 2010-03-24.
D2 The full date of the photo, in the system-localized medium format that you can set in your operating system's preferences dialog. On my system this is something along the lines of Mar 24, 2010.
D3 The full date of the photo, in the system-localized long format that you can set in your operating system's preferences dialog. On my system this is something along the lines of March 24, 2010.
T1 The full time-of-day of the photo, in the system-localized short format that you can set in your operating system's preferences dialog. On my system this is something along the lines of 3:38 PM.
T2 The full time-of-day of the photo, in the system-localized long format that you can set in your operating system's preferences dialog. On my system this is something along the lines of 3:38:02 PM.
PhotoDaysSince=dateThe number of days from the given date and the date of the photo. This is intended for use along the lines of My 2010 In Photos: Day {PhotoDaysSince=2009-12-31}

The date argument is in the form YYYY-MM-DD but may also have an appended time, inHH:MM 24-hour notation, to delimit when dates start. If you're a night-owl who mightwant to include a photo taken late in the evening, after midnight, as being part of the previous day,you might want to use something like My 2010 In Photos: Day {PhotoDaysSince=2009-12-31 04:00}to have photo taken until 4am be considered part of the previous day.

One concern to watch out for with this date/time example is that photos taken during the first four hours of Jan 12010 would appear to still be part of the previous day, day 0.

PhotoDaysUntil=date Like PhotoDaysSince, but in the counting-down-until sense.
IptcDateCreated The IPTC Date Created field.
Current Date
yyyy The current year as a four-digit string
yy The current year as a two-digit string
mm The current month as a two-digit string
dd The current day of the month as a two-digit string
hh The current hour value, in 24-hour format, as a two-digit string
hh12 The current hour value, in 12-hour format, as a one- or two-digit string
ampm The current time's AM/PM designation
min The current minute value, as a two-digit string
ss The current seconds value, as a two-digit string
weekday The current day of the week, as a localized string, e.g. Wednesday.
wday The current day of the week, as short-form (usually three-character) localized string, e.g. Wed.
mon The current month, as a localized three-character string
month The current month, as a localized string
date The current day of the month, as one- or two-digit string
daynum The current ISO-8601 day of the year, as a three-digit string.
weeknum The current ISO-8601 week of the year, as a two-digit string.
d1 The current full date, in the system-localized short format that you can set in your operating system's preferences dialog. On my system this is something along the lines of 2010-03-23.
d2 The current full date, in the system-localized medium format that you can set in your operating system's preferences dialog. On my system this is something along the lines of Mar 23, 2010.
d3 The current full date, in the system-localized long format that you can set in your operating system's preferences dialog. On my system this is something along the lines of March 23, 2010.
t1 The current full time-of-day, in the system-localized short format that you can set in your operating system's preferences dialog. On my system this is something along the lines of 3:38 PM.
t2 The current full time-of-day, in the system-localized long format that you can set in your operating system's preferences dialog. On my system this is something along the lines of 3:38:02 PM.
DaysSince=date Like PhotoDaysSince, but measuresthe current date to the date (or date/time) given in the argument, without regard to any photo date. You might want to usethis along with something likeMy 2010 In Photos: Day {DaysSince=2009-12-31}if you want to have the Day counter refer to when you do the upload, not when you took the shot. With this token, you'd wantto use the date/time form if you're a night owl and want an upload done late in the evening, after midnight, to be considered as having been done the previous day.
DaysUntil=date Like PhotoDaysUntil, but in the counting-down-until sense.
Master File Filesystem Dates
These are available only if the master image file is currently available.
FileYYYY File creation year, as a four-digit string
FileYY File creation year, as a two-digit string
FileMM File creation month, as a two-digit string
FileDD File creation day of the month, as a two-digit string
FileHH File creation hour value, in 24-hour notation, as a two-digit string
FileMIN File creation minute value, as a two-digit string
FileSS File creation seconds value, as a two-digit string
FileModYYYY File modification year, as a four-digit string
FileModYY File modification year, as a two-digit string
FileModMM File modification month, as a two-digit string
FileModDD File modification day of the month, as a two-digit string
FileModHH File modification hour value, in 24-hour notation, as a two-digit string
FileModMIN File modification minute value, as a two-digit string
FileModSS File modification seconds value, as a two-digit string
Filenames, Paths, and Catalog Organization
FullExportedFile When an Export or Publish operation is ongoing, the full path and filename of the exported copy
FullExportedFolder When an Export or Publish operation is ongoing, the full path to the folder of the exported copy
Filename When an Export or Publish operation is ongoing, the filename – without path and without extension – of the exported copy
FILENAME Like Filename, but includes the extension
FilenameNumber

The numeric part of the Filename, e.g. with IMG_1234.jpg, {FilenameNumber} is 1234.

If the filename contains multiple sequences of digits, such as with BODY2_FRAME1234.JPG — which has 2 and 1234 — the longest sequence is used (1234 in this example). If more than one sequence are equally long, the rightmost sequence is used, so with BODY2_FRAME1.JPG the result is 1.

Without an argument, {FilenameNumber} returns exactly that string of digits. However, if you add an argument like {FilenameNumber=####} then the result is padded with zeros (or leading zeros are truncated) as needed to make the length match the number of # in the argument. Some examples:

FilenameTokenResult
IMG_00123.jpg{FilenameNumber}000123
IMG_00123.jpg{FilenameNumber=#}123
IMG_00123.jpg{FilenameNumber=##}123
IMG_00123.jpg{FilenameNumber=###}123
IMG_00123.jpg{FilenameNumber=####}0123
IMG_00123.jpg{FilenameNumber=#####}00123
IMG_00123.jpg{FilenameNumber=######}000123
IMG_00123.jpg{FilenameNumber=#######}0000123
FullMasterFile The full path and filename of the master image on disk
LibraryFilename The filename – without path and without extension – of the master file in the library (which is not necessarily the filename being generated for the exported copy)
LIBRARYFILENAME Like LibraryFilename, but includes the extension
FolderPath The full path of the folder in which the master image in the catalog resides
RelativeFolder The part of the full path to the master image that appears in Library's Folder panel. This differs fromFolderPath in that it omits the leading part of the full path that leads to the lowest-level folder shown within the Folder Panel.
FolderName

The name of the folder (without path) in which the master image in the catalog resides.

You can also pluck folder names from the hierarchy that the image lies in by counting down from the end:

{FolderName=-1} is the parent folder that {FolderName} is in.
{FolderName=-2} is the parent of the parent of {FolderName}.
{FolderName=-3} is its parent, etc., until you pass the base folder shown in Library, after which the token becomes blank.

(For completeness, {FolderName=-0} is the same as {FolderName})

You can also count up from the root folder shown in the Library Folders panel:

{FolderName=+0} is the name of the most-root folder for the image.
{FolderName=+1} is the next successor that leads to the image.
{FolderName=+2} is the next successor after that, etc., until you get beyond {FolderName}, after which the token becomes blank.

As a concrete example, consider this folder hierarchy shown in Lightroom:

Jeffrey Friedl's Blog » Preset Template Tokens in My Lightroom Plugins (1)

The following examples are for an image in the deepest level (in the Nanzen Temple folder):

Result
{FolderName} Nanzen Temple
{FolderName=-0} Nanzen Temple
{FolderName=-1} Temples
{FolderName=-2} Kyoto
{FolderName=-3} Japan
{FolderName=-4} Asia
{FolderName=-5} Travel
{FolderName=-6} MyPhotoLibrary
{FolderName=-7} blank
{FolderName=-8} blank
{FolderName=+0} MyPhotoLibrary
{FolderName=+1} Travel
{FolderName=+2} Asia
{FolderName=+3} Japan
{FolderName=+4} Kyoto
{FolderName=+5} Temples
{FolderName=+6} Nanzen Temple
{FolderName=+7} blank
{FolderName=+8} blank

You can leave off the + if you like, so you can refer to theroot folder as{FolderName=0} or{FolderName=+0}.

CollectionNames

Jeffrey Friedl's Blog » Preset Template Tokens in My Lightroom Plugins (2)A comma-separated list of names of non-smart non-publish collections that the photo is part of. (Due to limits in Lightroom's plugin infrastructure, smart collections and publish collections are not considered.)

As an example, a photo of the Eiffel Tower included within the two highlighted collections seen in the screenshot at rightproduces Monuments, Paris.

You can use a special form where you can dress up each collection name:with our example, {CollectionNames="%s"} results in:

"Monuments", "Paris"

In this special form, the text afterthe equal sign is used, with the %s marking where the name itself should be placed. In the example, that text is

"%s"

so each keyword gets wrapped in double quotes.

Also see the CN table and the CNf function, available to the special {LUA} token.

CollectionFullNames

Like {CollectionNames} above, but each name is the full hierarchical name of the collection,such as Travel > France > Parisfor the Paris collection.

Therefore, our sample Eiffel Tower photo in the screenshot above producesMonuments, Travel > France > Paris.

The special form mentioned with CollectionNames above also works here.

Also see the CFN table and the CFNf function, available to the special {LUA} token.

Image
Filetype One of: JPEG, RAW, DNG, TIFF, PSD, DNG, or Video
OriginalWidth The width of the (possibly pre-crop) original master image (not the exported one), in pixels
OriginalHeight The height of the (possibly pre-crop) original master image (not the exported one), in pixels
Cropped Either cropped or uncropped.
CroppedWidth The width of the (possibly post-crop) library image (not the exported one), in pixels
CroppedHeight The height of the (possibly post-crop) library image (not the exported one), in pixels
AspectRatio This becomes Portrait if the cropped image is more tall than wide, Square if the cropped with and height are the same, and Landscape if wider than tall. You can substitute your own phrases for each by using the form{AspectRatio=X,Y,Z}, where X, Y, and Z are used for Portrait, Square, and Landscape, respectively.
Lens / Camera / Exposure
Aperture The photo's aperture value, formatted like f/4.5
ApertureNum The photo's aperture value, as a raw number
CameraMake The photo's Make metadata item in Lightroom's database.
CameraModel The photo's Model metadata item in Lightroom's database.
CameraName The Make and Model combined in a way that is natural to a reader. For example, if Make is EASTMAN KODAK COMPANY and Model is KODAK XYZ123 ZOOM DIGITAL CAMERA, CameraName is Kodak XYZ123 Zoom. I have a lot of camera-specific rules about how to combine the make and model sensibly, so if you find one for which I don't do a good job, please send me a sample image so that I can inspect its metadata.
CameraSerialNumber The photo's Serial Number metadata item in Lightroom's database.
Exposure

The photo's exposure data, like 1/250 sec at f/5.0.

You can supply an argument to change how the shutter speed and aperture are combined: SS within the argument is replaced by the shutter speed text,and AP is replaced by the aperture text.A bare {Exposure} is the same as {Exposure=SS at AP}.

You might, for example, use {Exposure=SS @ AP} so as to end up with 1/250 sec @ f/5.0.

ExposureBias The photo's exposure-bias setting, like -1 EV.
ExposureBiasNum The photo's exposure-bias setting, as a raw number.
ExposureProgram The photo's exposure-program setting, like Aperture priority.
Flash One of no flash, flash fired, or unknown flash.
FocalLength Focal Length, as a number
FocalLength35 Focal Length in 35mm format, as a number
FocalLength35MM Focal Length in 35mm format (with locale-specific mm appended)
FocalLengthMM Focal Length (with locale-specific mm appended)
ISO

The photo's ISO (sensor sensitivity) number.

You can provide an argument to change how the number is displayed; within it, any # is replaced by the ISO sensitivity number.For example {ISO=ISO #} becomes something like ISO 1200 when the photo has ISO data, but becomes nothing when it doesn't.(Compare that to ISO{ISO}, which becomes ISO when the photo has no ISO data.

Lens The photo's lens information, like 24-70mm f/2.8.
LensInfo

Like {Lens} except that for zoom lenses it also includes the focal length that the photo was shot, such as 24-70mm f/2.8 @ 50 mm.

You can provide an argument to configure how the basic lens info is presented along with the focal length: LENS is replaced by the basic lens info(the same as the {Lens} token), while FL is replaced by the focal-length info.A bare {LensInfo} is the same as {LensInfo=LENS @ FL}. You might instead use {LensInfo=LENS at FL} if you prefer at to @, as in24-70mm f/2.8 at 50 mm.

MeteringMode The photo's metering-mode setting, like Pattern.
ShutterSpeed The shutter speed, formatted like 1/60 sec.
ShutterSpeedNum The shutter speed as a floating-point number of seconds; Use the Places filter to limit precision.
SubjectDistance The subject distance as reported by the lens, formatted like 1.2 m. Often wildly inaccurate.
SubjectDistanceNum The subject distance as reported by the lens, as a floating-point number. Often wildly inaccurate.
Attributes
CopyName The name of the copy (master or virtual) being exported, if any
Rating The number of stars assigned to the image: 0 through 5. You can also use with an argument, e.g. {Rating=*} or {Rating=great} to have, for example, a three-star photo result in *** or great great great. In either case, a photo with a zero rating results in nothing, but you can combine tokens (as described below) along these lines: {Rating=*|"unrated"}.
FlagStatus This becomes Pick if the image is flagged as a pick, nothing if the image is not flagged, and Rejected if the image is flagged as rejected. You can substitute your own phrases for each by using the form{FlagStatus=X,Y,Z}, where X, Y, and Z are used for Pick, nothing, and Rejected, respectively.For example: {FlagStatus=Super!,okay,no good}or{FlagStatus=,, (rejected)}
ColorLabel The Label metadata item
EditCount A number that goes up each time a change is made in Lightroom to the image or its data.
UUID Lightroom's internal unique identifier for the photo, an essentially-random 36-character sequence of letters, numbers, and hyphens, such asFB4D3F92-455F-47CA-8B7B-7C885F7244FD.
Location
Latitude Latitude, as a floating-point number. Use Places, e.g. {Latitude:Places=4}, to limit precision.
Longitude Longitude, as a floating-point number. Use Places, e.g. {Longitude:Places=4}, to limit precision.
GPSCoords The photo's geoencoded coordinates in decimal format, such as 40.689253,-74.046694
GPSCoordinates The photo's geoencoded coordinates in degree-minute-second format, such as 35°1'11.51" N 135°46'16.05" E
PlusCode

The Plus Code for the geoencoded location. The default precision is 12, so for the Statue of Liberty {PlusCode} becomes 87G7MXQ4+M5PM.

Use in the form {PlusCode=10} to set more or less precision.

You can get the short form of a PlusCode by providing a reference location; For example,{PlusCode=ref=40.72,-74.00} returns short codes for locations in and around New York City, but long codes otherwise.

You can combine combine precision with a reference location: {PlusCode=10,ref=40.72,-74.00}.

GeoHash The geohash for the geoencoded location.
Altitude The photo's geoencoded altitude, as a number, in meters.Use Places, e.g. {Altitude:Places=0}, to limit precision.
GPSAltitude The photo's geoencoded as a description, e.g. 27.3 m
ImageViewDirection The direction that the camera was facing when the image was taken, e.g. North, West, South-East, etc.
ImageViewBearing The compass bearing that the camera was facing when the image was taken, as a number of degrees from North.
SpeedKPH If the photo was geoencoded via tracklog with my “Geoencoding Support” plugin, this becomes a string like 24.7 kph
SpeedMPH Like {SpeedKPH}, but MPH (e.g. 15.3 mph)
SpeedKnots Like {SpeedKPH}, but in knots (e.g. 13.3 knots)
TempC

If the photo was geoencoded via tracklog with my “Geoencoding Support” plugin, and that tracklog included temperature information, this becomes a string like 24°C.

If provided the argument raw (that is, {TempC=raw}) then whatever is in the plugin's Temperature field is passed through unchanged (even if it's Fahrenheit).

If any other argument is given, that argument is used, but with each # character in it replaced by the temperature number: for example, {TempC=it was # degrees} might become it was 24 degrees.

TempF

If the photo was geoencoded via tracklog with my “Geoencoding Support” plugin, and that tracklog included temperature information, this becomes a string like 75°F.

If provided the argument raw (that is, {TempF=raw}) then whatever is in the plugin's Temperature field is passed through unchanged (even if it's Celsius).

If any other argument is given, that argument is used, but with each # character in it replaced by the temperature number: for example, {TempF=it was # degrees} might become it was 75 degrees.

IfGeoencoded If used in the form {IfGeoencoded=some text here}, the token is replaced by the text after the = if the photo is geoencoded, or replaced by nothing if not. If used in the form {IfGeoencoded=some text here;for non-geoencoded} with a semicolon, the text after the semicolon is used when the photo is not geoencoded.
Location The Location metadata item
City The City metadata item
State The State metadata item
Province A synonym for {State}
Country The Country metadata item
CountryCode The photo's Image > ISO Country Code metadata item in Lightroom's database.
Artwork or Object
Artworks IPTC Extended Artwork or Object records, presented as a comma-separatedset of Title/Copyright/Creator/Date/Source/InventoryNum, though missing items are omitted.{Artworks=1} shows just the first recorded artwork,{Artworks=2} shows just the second, etc.
ArtworkTitle The list of Artwork or Object titles registered for the photo, separated by commas.{ArtworkTitle=1} shows just the first title, {ArtworkTitle=2} just the second, etc.
ArtworkCopyright Like {ArtworkTitle}, but for the artwork copyright.
ArtworkCreator Like {ArtworkTitle}, but for the artwork creator.
ArtworkDateCreated Like {ArtworkTitle}, but for the artwork date created.
ArtworkSource Like {ArtworkTitle}, but for the artwork source
ArtworkInventoryNum Like {ArtworkTitle}, but for the artwork inventory control number.
Other Metadata
Artist The Artist metadata item
Caption The Caption metadata string
Category The photo's IPTC > Category metadata item in Lightroom's database.
Copyright

The Copyright metadata item (usually the name of a person or company).

You can provide an argument to change how the copyright name is presented; in it, NAME is replaced by the name from the photo metadata, YYYY is replaced bythe year of the photo-capture time, and yyyy is replaced by the current year.

So, a bare {Copyright} is the same as {Copyright=NAME}, but also consider{Copyright=©NAME} to end up with something like ©Jeffrey Friedl, or perhaps {Copyright=Copyright YYYY NAME}to end up with Copyright 2019 Jeffrey Friedl.These have advantage over ©{Copyright} and Copyright {YYYY} {Copyright} in that they remainblank/empty when the photo has no copyright info.

CopyrightUrl The photo's Copyright Info Url metadata item in Lightroom's database.
Creator The photo's Contact > Creator metadata item in Lightroom's database.
CreatorAddress The photo's Contact > Address metadata item in Lightroom's database.
CreatorCity The photo's Contact > City metadata item in Lightroom's database.
CreatorCountry The photo's Contact > Country metadata item in Lightroom's database.
CreatorEmail The photo's Contact > E-Mail metadata item in Lightroom's database.
CreatorJobTitle The photo's Contact > Job Title metadata item in Lightroom's database.
CreatorPhone The photo's Contact > Phone metadata item in Lightroom's database.
CreatorState The photo's Contact > State / Province metadata item in Lightroom's database.
CreatorUrl The photo's Contact > Website metadata item in Lightroom's database.
CreatorZip The photo's Contact > Postal Code metadata item in Lightroom's database.
DescriptionWriter The photo's IPTC > Description Writer metadata item in Lightroom's database.
Genre The photo's Image > Intellectual Genre metadata item in Lightroom's database.
Headline The Headline metadata item
Instructions The photo's Workflow > Instructions metadata item in Lightroom's database.
JobIdentifier The photo's Workflow > Job Identifier metadata item in Lightroom's database.
Keywords

The list of the photo's marked-for-export keywords, separated by commas. (Actually, there's acomma+space pair between each keyword, so it's plant, rose, flower and notplant,rose,flower.)

Supports special filters:

The ChildOf and DescendantOf filters, used in the form {Keywords:ChildOf=parent} to includeonly keywords that are direct children of the named parent keyword. (DescendantOf, obviously,allows indirect children as well.)

The H filter has each keyword expand hierarchically, with each level separated by the text argument of the filter.For example, {Keywords:H=>>} might result in aSan Francisco keywordexpand toUSA>>California>>San Francisco.

The HR filter is the same as the H filter, except that the hierarchical order is reversed.Continuing with the previous example, {Keywords:HR=<<} might result inSan Francisco<<California<<USA.

Filters can be stacked up to two deep: {Keywords:DescendantOf=USA:H=>>}. However, some combinations of filters won't parse properly, due to my poor design very early on, sorry.

Note: in implementing these special filters, I had to use a different method to access the photo keywords than when no filters areused, and this can result in two differences: one is that without filters, Lightroom includes keywords even if they'renot assigned to the photo, if that unassigned keyword has a descendant keyword that is assigned. When a filter is used, only keywordsexplicitly added to a photo are included.

Secondly, the order in which keywords appear may differ depending on whether filters are used.

If you don't use filters, you can use a special form where you can dress up each keyword:for example, {Keywords=[%s]}) might result in[Paris], [landmark], [tower]. In this special form, the text afterthe equal sign is used, with the %s marking where the keyword itself should be placed. In the example, that text is [%s], so each keyword gets wrapped in square brackets.

KeywordsAll The same as Keywords, but also includes keywords not marked for export
IfKeyword

If used in the form {IfKeyword=keyword;some text here}, the token isreplaced by the text after the = if the photo has been tagged with the named keyword (even if that keyword is not marked in Lightroom as one to be exported). If no text is given after the semicolon, the keyword itself is used:{IfKeyword=public;} becomes "public“ or nothing.

If used in the form {IfKeyword=keyword;some text here;thenot-keyworded text}, with an extra semicolon-separated phrase, the token becomes the not-keyworded ifthe photo is not tagged with the named keyword.

IfExportedKeyword Like IfKeyword, but considers only keywords that have been marked in Lightroom for export.
OtherCategories The photo's “IPTC > Other Categories" metadata item in Lightroom's database.
Provider The photo's Workflow > Provider metadata item in Lightroom's database.
RightsUsageTerms The photo's Workflow > Rights Usage Terms metadata item in Lightroom's database.
Scene The Scene metadata item
Software The photo's Software metadata item in Lightroom's database.
Source The Source metadata item
SubjectCode The photo's IPTC > IPTC Subject Code metadata item in Lightroom's database.
Title The Title metadata item
PersonShown The Person Shown metadata item
People See here.
NameOfOrgShown The Name of Organization Shown metadata item
CodeOfOrgShown The Code of Organization Shown metadata item
Event The Event metadata item
AdditionalModelInfo The Additional Model Info metadata item
ModelAge The Model Age metadata item
MinorModelAge The Minor Model Age metadata item
ModelReleaseStatus The Model Release Status metadata item
ModelReleaseID The Model Release ID metadata item
ImageSupplierImageId The Image Supplier ImageId metadata item
SourceType The Source Type metadata item
PropertyReleaseID The Property Release ID metadata item
PropertyReleaseStatus The Property Release Status metadata item
DigImageGUID The Digital-Image GUID metadata item
PlusVersion The Plus Version metadata item
Online Presence
ExposureManagerUrl The url of the image at ExposureManager (only if previously uploaded with my Upload-to-ExposureManager plugin)
FacebookUrl The url of the image at Facebook (only if previously uploaded with my Upload-to-Facebook plugin)
PhotobucketUrl The url of the image at Photobucket (only if previously uploaded with my Upload-to-Photobucket plugin)
PicasawebUrl The url of the image at PicasaWeb (only if previously uploaded with my Upload-to-PicasaWeb plugin)
SmugMugUrl The url of the image at SmugMug (only if previously uploaded with my Upload-to-SmugMug plugin)
ZenfolioUrl The url of the image at Zenfolio (only if previously uploaded with my Upload-to-Zenfolio plugin)
FlickrUrl The url of the image at Flickr (only if previously uploaded with my Upload-to-Flickr plugin)
IpernityUrl The url of the image at Ipernity (only if previously uploaded with my Upload-to-Ipernity plugin)
TumblrUrl The url of the image at Tumblr (only if previously uploaded with my Upload-to-Tumblr plugin)
GoogleDriveUrl The url of the image at Google Drive (only if previously uploaded with my Upload-to-Google-Drive plugin)
OnlineID

Flickr plugin only. The Flickr ID of the image.This allows you to create a description preset along the lines of:

<a href="http://BigHugeLabs.com/flickr/onblack.php?id={OnlineID}">View on Black</a>

which creates a result at Flickr like this,which includes a link with this result.

Urls The list of URLs saved among plugin custom metadata (such as the various URLs listed above), one per line.(An example of this in use can be seen with my Bag-o-Goodies plugin.
Export Type
ExportFormat The kind of export file format being produced (JPEG, PSD, etc)
ExportQuality When the export format is JPEG, the quality setting (0 - 100)
ExportBitDepth When the export format is TIFF or PSD, the target bit depth (8 or 16)
ExportColorSpace When the export format is not DNG or ORIGINAL, the target color space (e.g. sRGB)
ExportSharpeningLevel The export-sharpening level setting (blank if sharpening is off, Low, Standard, or High)
ExportSharpeningMedia The export-sharpening media type (blank if sharpening is off, Screen, Matte Paper, Glossy Paper)
Publish
PublishCollectionName

The name of the publish collection via which an image is being processed, blank otherwise.

Note: this always appears blank in previews shown in the Publishing Manager dialog... it has a value only during an actual publish operation, so while it should work when composing captions and such for uploads, you won't be able to see it until the upload.

You can use arguments like +0 or -3, as described for FolderName, to pluck out specific parts of a publish collection-set hierarchy.

Due to how Lightroom's plugin infrastructure is built, supporting this properly is a real pain in the neck and I may have missed some situations. If you find it's not showing where you expect, please send me a note with a clear description of the situation.

PublishCollectionDepth

The depth of the publish collection via which an image is being processed. A publish collection at the root of its publish service gets 1. A publish collection within a root-level publish collection set gets 2, and so on.

Zero (0) if not within the context of a publish collection.

Note: this always appears blank in previews shown in the Publishing Manager dialog... it has a value only during an actual publish operation, so while it should work when composing captions and such for uploads, you won't be able to see it until the upload.

Due to how Lightroom's plugin infrastructure is built, supporting this properly is a real pain in the neck and I may have missed some situations. If you find it's not showing where you expect, please send me a note with a clear description of the situation.

PublishServiceTitle

The title of the overall publish service via which an image is being processed, blank otherwise.

Note: this always appears blank in previews shown in the Publishing Manager dialog... it has a value only during an actual publish operation, so while it should work when composing captions and such for uploads, you won't be able to see it until the upload.

Due to how Lightroom's plugin infrastructure is built, supporting this properly is a real pain in the neck and I may have missed some situations. If you find it's not showing where you expect, please send me a note with a clear description of the situation.

System
LrVersion The version of Lightroom running, such as 5.4
LrVersionMajor The major number of the Lightroom version, such as 5 for Lr5.4
LrVersionMinor The minor number of the Lightroom version, such as 4 for Lr5.4
LrVersionRevision The sub-minor number of the Lightroom version, usually 0.
LrVersionBuild The build number of the current Lightroom install (usually a six-digit number).
CatalogName The name of the current catalog (the filename without leading path and without the .lrcat extension).
CatalogPath The full path to the current catalog file.
OperatingSystem Either Windows or OS X
OS Either Win or Mac
Special
PluginProperty=field Allowsyou to access the per-image custom metadata kept by a plugin, wherefield is the plugin's id and the metadata field id, joined with adot. For example,
{PluginProperty=info.regex.lightroom.export.flickr2.url}
refers to the url field of the plugin with idinfo.regex.lightroom.export.flickr2 (myFlickr plugin), and the result is the same as the {FlickrUrl} token mentioned above. However, with PluginProperty, you can reference any plugin data forwhich you know the plugin id and field name. You can get these from theplugin author, or try digging around the plugin's Info.lua for theplugin id and a reference to its LrMetadataProvider, where you canfind field ids.
Empty An empty string, perhaps useful for testing. Also, when placed between joining characters, it blocks their squelching.
" text " The text as provided. It may not contain the following characters: { | } "
Hyphen Inserts a hyphen that is never squelched.
Comma Inserts a comma that is never squelched.
Space Inserts a space that is never squelched.
Newline Inserts a newline character that is never squelched; not all fields/usages can properly handle a newline character, so take care.
LUA See the section below for details on this advanced, complex token.
Exiftool=fieldcode

(Currently available only in some plugins:Bag-o-Goodies,Collection Publisher,andFolder Publisher)

Inspects the master image file for the given Exiftoolfield code. For this token to work, the master image file must be available, of course.

You can see the field codes for a given image file withmy Metadata Viewer plugin,by toggling the show field control in the upper right from name to code.

Token Basics

As mentioned above, tokens are identified within a template by wrappingthem with { ... }. The value generated bythe token has leading and trailing spaces removed before being insertedinto the result. For example, if the Caption metadata item isthe string My Vacation ,the value actually used for the Caption token(which appears as {Caption} in thetemplate) is My Vacation.

Optional If Exists...

You can have something depend on a value existing in the first place. For example, consider want to putquotes around the caption, as with:

The caption is {Caption}

This produces pleasing results when the image has a caption, but if there is no caption, it produces the result:

The caption is

However, consider the following:

{Caption?The caption is {Caption}}

This uses a special token form:

{ token ? value to use if the named token is not empty }

This produces nothing when there is no caption, but the desired The caption is... value when there is a caption.

Another example is {ISO?ISO{ISO}} which perhaps looks confusing. It produces nothing whenthe image has no ISO sensor-sensitivity metadata, but text like ISO3200 when it does. The token has three ISOin it: the first is a token name, which, because it is followed by a question mark, means to ignore everything if the token has no value.The second ISO is just text to include in the value, and that's followed immediately by the third ISOas {ISO},which is a straight-up token to reference the ISO metadata value.

Combining Tokens

You may list multiple tokens within { ...}, separated by | (a vertical bar). In such a case, the first token that results in non-empty text is used. Tokensmay result in an empty value if the photo is missing the associatedmetadata. For example, if a photo is missing the date takenmetadata, the YYYY token is empty. Thus, theprevious copyright example may be better written as:

 Copyright {YYYY|yyyy} {Artist}

In this case, if the YYYY token is empty, theyyyy token (the current year, which can never beempty) is used.

Continuing with this example, because the Artist token results in an empty item if there is noartist metadata, this example might be written as:

 Copyright {YYYY|yyyy} {Artist|"by the photographer"}

to become

 Copyright 2008 by the photographer

when there is no artist metadata.

Token Filters

Filters allow you to modify the text that a token generates. Fornexample, applying the S2U filter (Space toUnderscore) to the Caption examplegiven earlier results in a value of My_Vacation. To indicate that a filter should be applied toa token, append it to the token name with a colon.This example appears would appear in a template as{Caption:S2U}.

Token filters:

S2U Space to Underscore Any sequences of spaces (and/or underscores) are replaced by a single underscore
S2D Space to Dash Any sequences of spaces (and/or dashes) are replaced by a single dash
U2S Underscore to Space Any sequences of underscores (and/or spaces) are replaced by a single space
D2S Dash to Space Any sequences of dashes (and/or spaces) are replaced by a single space
DU2S Dash/Underscore to Space Any sequences of dashes, underscores, and/or spaces are replaced by a single space
NS No Spaces All spaces are removed
S2X Spaces to Nothing (synonym for the NS filter)
LO Letters Only All spaces and punctuation are removed, leaving only letters (and numbers)
F2D Forward slash to Dash Forward-slash characters (“/”) are replaced by dash characters (“-”)
F2S Forward slash to Space Forward-slash characters (“/”) are replaced by space characters
F2X Forward slash to nothing Forward-slash characters (“/”) are removed
B2D Backward slash to Dash Backward-slash characters (“\”) are replaced by dash characters (“-”)
B2S Backward slash to Space Backward-slash characters (“\”) are replaced by space characters
B2X Backward slash to nothing Backward-slash characters (“\”) are removed
A2D Any slash to Dash Both kinds of slash characters are replaced by dash characters
A2S Any slash to Space Both kinds of slash characters are replaced by space characters
A2X Any slash to nothing Both kinds of slash characters are removed
PF Plain Fractions Converts the typographic fractions found in some metadata to plain ASCII, e.g. converts “½” to “1/2”
Places=num specify numeric precision If the item is number, formats it to num decimal places. If the item is not a number, makes it empty.
Length=num specify max length If the item is longer than num characters long, it is truncated to the first num characters. Treats the text as UTF-8.
After=text Use value to the right of text

If the given text is found in the value that the token generates, strip it and all that appeared before (to the left), leaving only what appears to the right of text in the value. If the text is not found in the value, the result of the token is empty.

For example, if you tend to use captions likeMy trip to ParisandMy trip to the Canadian Rockies,and you wanted shorter text, you might consider using{Caption:After=trip to} to result in values likeParisandthe Canadian Rockies.

If you wanted to implement an idea such as "Strip the '...trip to' text from the caption if it's there, and use the unadulterated caption if not",you would append an unadorned Caption token as described in the Combining Tokens section above, resulting in{Caption:After=trip to|Caption}.

UC Upper Case Capitalizes the item
UCFirst Upper Case (first character) Capitalizes the first character of the item.
UCWords Upper Case Words Capitalizes the first character of the item, and any character after a space or hyphen.
LC Lower Case Ensures the item is all lower case.
LCFirst Lower Case (first character) Lowers the case of the first character of the item.
EMBED Embed value and reparse

When used in the additional keywords section of an uploader plugin, causes the token to not be treated as a single unit, but subject to one more level of inspection.

For example, if your title metadata field has one two three (without quotes) and in the additional keywords field you put{Title}, the result is one additional keyword:one two three. However, if you use{Title:EMBED}, the result is three keywords:one,two, andthree.

evenIfPrivate Forcefully reference a location-related value, even if other privacy-related settings would have excluded it. E.g.even though a photo is geoencoded, {GPSCoords} might be blank if privacy settings elsewhere indicate that the location should not be shared; but even in that case, {GPSCoords:evenIfPrivate} would show the location.

Squelching Superfluous Joining Characters

Within a template, joining characters are special:

  • space
  • comma
  • hyphen/minus
  • colon
  • the <br> and <br/> sequences

After a photo-specific value has been computed from a template, allleading and trailing joining characters are removed, and embeddedrepetitions are replaced by a single item.

As an example of the first case, consider

 Copyright {YYYY|yyyy} {Artist}

when there is no artist metadata. Without these special rules, thiswould result in the derived value having trailing space, but the specialsquelching rules remove it.

As another example, consider the template:

 {Location}-{Country}-{State}-{City}-{Caption}

for a photo that has Location and Caption,but no Country, City, or State.Assuming that location and caption are Home andHaving Fun respectively, it becomes:

 Home-Having Fun

which is better than it would be without these special rules:

 Home----Having Fun

Note that space, comma, and hyphen/minus are only special when they'repart of the template itself. When they are part of the value derivedfrom a token (such as the space in Having Fun above), theyare never considered for squelching.

As such, you can use either {-} or {"-"} to include a hyphen/minus that will never besquelched. Similarly, you can use {,} or {","} for a comma.

The special {Empty} token

The {Empty} token produces no text, but has the side effect inthat it interrupts the squelching of joining characters. Without it, thesequence <br><br>becomes <br>but with it, <br>{EMPTY}<br>becomes <br><br>.

The special {NOJOINERS} token

As mentioned above, leading and trailing joining characters arestripped, but sometimes you want them stripped whenever they appear in acertain context. For example, the template

 <span class='where'>{City}, {State}</span>

results in something like <span class='where'>Paris,</span> if City is Paris butState has no value. In this case you'd like to mark the start and end ofthe <span> as being places where no joining charactersshould accumulate, just as they shouldn't accumulate at the start and endof the whole specification.

To do this, put the special {NOJOINERS} token in these spots, e.g.

 <span class='where'>{NOJOINERS}{City}, {State}{NOJOINERS}</span>

The exact rules for how joining characters are squelched are complex,but they are designed to produce a common-sense result. If you run into onethat doesn't work as you'd like, let me know.

The Special {LUA=...} Token

This advanced programming-like feature allows you to execute arbitrary Lua code, inan environment where the tokens above have been prepopulated into variables. For example,

 {LUA=CreatorPhone}

and

 {LUA=return CreatorPhone}

are exactly the same as the {CreatorPhone} token, but, for example

 {LUA= if CreatorPhone ~= '' then return sprintf("Contact: %s", CreatorPhone) end }

becomes the string Contact: text-from-CreatorPhone if the CreatorPhonetoken is not empty, nothing if it is.

The special Lua environment, in the latest version of plugins running in the latest version of Lightroom, includes:

  • Variables exist for almost all of the tokens (except DaysSince, IfGeoencoded, etc. — tokens that require an extraargument). Each one is a string; if the token has no value, its variable in the special Lua environment is the emptystring ''.

  • The Boolean locationIsPrivate, which is true if the photo is geoencoded and its location is within an area marked private in the Map Module, false otherwise. (Always false prior to Lr4.1.)

  • The standard Lua functions tonumber(), tostring(), type(), unpack(),ipairs(), and pairs().

  • The standard Lua name spaces string, table, and math. The os namespace is partially included: os.date(), os.time(), and os.tmpname().

  • The Lightroom SDK namespacesLrDate,LrLocalization,LrMath,LrMD5,LrPathUtils,LrStringUtils, andLrSystemInfo.SDK docs can be downloaded here.

  • The Booleans WIN and MAC, which indicatethe type of host operating system, and sprintf(), which is a synonymfor string.format().

  • The function TBL(...), which returns a new table, populating it with any arguments provided. This is to help avoid curly braces in inlined Lua.

  • The function ne(item), meaning non-empty. It returns nil if the item is nil or tostring(item) evaluates to a zero-length string.

  • The function nb(item), meaning non-blank. It returns nil if the item is nil or tostring(item) evaluates to a string that has no non-whitespace characters.

  • The function uc(item), which gives the upper-case version of whatever is passed to it. There's also ucFirst(item), which uppercases only the first character, and the lowercase versions lc(item) and lcFirst(item).

  • The variable photoTime, which returns the Cocoa timestamp of the photo in question, if any. This is suitable for passing to Lightroom's LrDate.timestampToComponents() and LrDate.timeToUserFormat() functions, among others. Add 978307200 to get a Unix Time.

  • The variable currentTime, which returns the current Cocoa timestamp; identical to LrDate.currentTime().

  • The function date_diff(), which returns a string indicating the number of years/months/days separating its two arguments.Each argument can be a Cocoa timestamp like the photoTime or currentTime variables above, a string in the form YYYY-MM-DD,or a table of numbers: {year, month, date, hour, minute, second}. The hour/minute/second are optional.

    For example, the following might be used to indicate the age of a child (born on October 22, 2009) as of the photo date:{LUA= "Aged " .. date_diff("2009-10-22", photoTime)}. For a photo taken Jan 1, 2013 it returns the stringAged 3 years, 2 months, 10 days on an English system.

    This does exactly the same thing: {LUA= "Aged " .. date_diff({2009,10,22}, photoTime)}

    There's actually a third argument to date_diff() that indicates a timezone in which to interpret dates provided via string or table like the two examples above. The default is the current timezone of the computer. If you provide a timezone, it should be as a number of seconds east of UTC.

  • A table KW that has keys for every keyword applied to the photo (the values are true),and a similar table KWE with keys for exported keywords. Thus, the code snippet KW.private is trueif the keyword private has been applied to the photo, nil otherwise.

  • The function KWf() — the name comes from KeyWord formatting — that does something with each keyword marked for export.Called in the form KWf(format,joiner), the first argumentis text; within that text, the sequence %s is replaced by a keyword. After all such replacements, they're all joined together by the joiner text.

    For example, KWf("[%s]", " -- ") might result in[Paris] -- [landmark] -- [tower],and KWf("%s", "|") might result inParis|landmark|tower.

  • A table CN that has keys for every Collection Name that the photo isincluded in (the values are true). Smart collections and publish collections are not considered.Comparable to the {CollectionNames} token.

  • The function CNf() for Collection Name formatting. Used exactlylike the KWf() function, but works with items in the CN table.

  • A table CFN that has keys for every Collection Full Name that the photo isincluded in (the values are true). Smart collections and publish collections are not considered.See the {CollectionFullNames} token for more info.

  • The function CFNf() for Collection Full Name formatting. Used exactlylike the KWf() function, but works with items in the CFN table.

  • A table PCH, short forPublish Collection Hierarchy, that contains information about the current publish operation. (The table is empty except during publish operations.)

    If, for example, within a publish service you have a publish collection set named Travel, and within that another set named Asia, and within that, the final collection is Japan, then during publish of Japan the PCH table containsthree strings: { Travel, Asia, Japan }

  • The function load(), which executes Lua code in a named file, as discussed below.

  • The special PP(id) pseudo-function that returns the value of the photo's Plugin Property named by theid. For example, PP('info.regex.lightroom.gps.Speed') is the same as the {SpeedKPH} token. Due to esoteric technical limitations in Lightroom, this isnot actually implemented as a Lua function, but rather it's pre-detected in the Lua snippet and has itsvalue substituted in place, prior to the Lua snippet being interpreted as Lua code. As such, it's not available within a file imported via load(), so if you want to use it within such a file, youhave to cache the value in a variable prior to the load().

  • The table PEOPLE, which includes one entry per person tagged in the photo. Each entry is a table withfields name, nickname, bday (Coco timestamp of their birthday, or nil if not known), ts(Coco timestamp of their birthday, or the current timestamp if not known), and keyword (the LrKeyword object). Most fields willbe empty if the person keywords has not been registered via my People Support plugin.

Here are some examples. Some have been broken into multiple lines for display, with pretty indenting, for easierreading one this page; when inputting into the plugin, you'll have to put it all on one big long (ugly) line....

  • {LUA=if Artist ~= "" then return sprintf("Copyright %s", Artist) end}
    Becomes Copyright .... with the name of the Artist if there is an Artist token.

  • {LUA=if Artist ~= "" and Copyright = "" then return sprintf("Copyright %s", Artist) end}
    Like the one above, but only if there is no Copyright token.

  • {LUA=if Artist ~= "" then return sprintf("Copyright %s %s", yyyy, Artist) end}
    Becomes "Copyright #### ...." with the current year and the name of the Artist, if there is an Artist token.

  • {LUA=if Artist ~= "" then
    if yyyy == YYYY or YYYY == "" then
    return sprintf("Copyright %s %s", yyyy, Artist)
    else
    return sprintf("Copyright %s-%s %s", YYYY, yyyy, Artist)
    end
    end}

    Like the one above, but the reference to the year in the copyright statement becomes a range if the photo has a date associated with it and that date is not the current year, e.g. "Copyright 2006-2010 Jeffrey Friedl" for a photo taken in 2006 and being processed in 2010.

  • {LUA=if Artist ~= "" then
    when = YYYY==yyyy or YYYY=="" and yyyy or YYYY.."-"..yyyy
    return sprintf("Copyright %s %s", when, Artist)
    end}

    Exactly like the one just above.

  • {LUA=if GPSCoordinates ~= "" then return sprintf("geo:lat=%s;geo:lon=%s", Latitude, Longitude) end}
    If the photo is geoencoded, becomes GPS machine tags.

  • {LUA=if KW.private and not KWE.private then return "private, but not reporting as such" end}
    Becomes private, but not reporting as such if marked with the keyword private, but that keyword is not marked for export.

Loading From a File

In Lightroom 3 and later, the load() function loads Lua code from a file. You can load a library of routines and then make reference tothe routines later in the {LUA= ... }, or you can simply return the value of load(), which is the value returned at the end of the file:

 {LUA= return load("/full/path/to/your/lua/file.lua") }

This allows you to keep the tokens that appear in little plugin fields more manageable, yet lets you easily access arbitrarily-complex logic.

Real-World {LUA} Example

As one example, in my PicasaWeb (Google Plus, sort of) publish service for mySelected Blog Photos gallery on G+, I want the imagecaption to mention the url and title of the blog post that the photo was part of, and to mention the date of the blog post in English and Japanese. To do this, I created a file (PicasaWeb.lua) with this contents:

local Month = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }function comment() if not JobIdentifier then return "" end -- -- JobIdentifier should have one or more urls like "https://regex.info/blog/2012-06-09/2015" -- -- Grab the date from the final one -- local url = JobIdentifier:match(".*(http://%S+)") if not url then return "" end local Yx,Mx,Dx = url:match(".*blog/(20%d%d)%-(%d%d)-(%d%d)/") if not Dx then return "" end local rows = { sprintf("This photo appeared in an article on my blog on %s %d, %s.", Month[tonumber(Mx)], tonumber(Dx), Yx), sprintf("この写真は%d月%d日ブログの記事に載りました。", tonumber(Mx), tonumber(Dx)) } if Headline then table.insert(rows, sprintf('"%s"', Headline)) end table.insert(rows, url) return table.concat(rows, "\n")endreturn comment()

and access it from a Caption preset in the plugin with this template token:

{LUA= load("/Users/jfriedl/Dropbox/Lightroom/LuaStuff/PicasaWeb.lua")}

Jeffrey Friedl's Blog » Preset Template Tokens in My Lightroom Plugins (2024)
Top Articles
10 Delicious Keto Thanksgiving Recipes - Namaste Nourished
Roasted Leeks with Olive Oil and Parmesan - Healthy Recipes Blog
Walgreens Boots Alliance, Inc. (WBA) Stock Price, News, Quote & History - Yahoo Finance
Craigslist Vans
Unity Stuck Reload Script Assemblies
Aadya Bazaar
Botanist Workbench Rs3
Hertz Car Rental Partnership | Uber
Hotels Near 500 W Sunshine St Springfield Mo 65807
Overzicht reviews voor 2Cheap.nl
Kagtwt
Craigslist/Phx
What Does Dwb Mean In Instagram
Beau John Maloney Houston Tx
Leeks — A Dirty Little Secret (Ingredient)
Clarksburg Wv Craigslist Personals
Chile Crunch Original
Guilford County | NCpedia
DoorDash, Inc. (DASH) Stock Price, Quote & News - Stock Analysis
Farmer's Almanac 2 Month Free Forecast
Bing Chilling Words Romanized
Best Mechanics Near You - Brake Masters Auto Repair Shops
Euro Style Scrub Caps
THE FINALS Best Settings and Options Guide
Piedmont Healthstream Sign In
Milwaukee Nickname Crossword Clue
Saxies Lake Worth
Top 20 scariest Roblox games
Safeway Aciu
Ice Dodo Unblocked 76
Ryujinx Firmware 15
Allegheny Clinic Primary Care North
Elanco Rebates.com 2022
Ancestors The Humankind Odyssey Wikia
Fastpitch Softball Pitching Tips for Beginners Part 1 | STACK
Los Amigos Taquería Kalona Menu
Tamilrockers Movies 2023 Download
Beth Moore 2023
Hattie Bartons Brownie Recipe
Waffle House Gift Card Cvs
Craigslist Georgia Homes For Sale By Owner
Crazy Balls 3D Racing . Online Games . BrightestGames.com
Exam With A Social Studies Section Crossword
Boyfriends Extra Chapter 6
Bonecrusher Upgrade Rs3
Arginina - co to jest, właściwości, zastosowanie oraz przeciwwskazania
Here’s What Goes on at a Gentlemen’s Club – Crafternoon Cabaret Club
Skyward Login Wylie Isd
North Park Produce Poway Weekly Ad
Download Twitter Video (X), Photo, GIF - Twitter Downloader
When Is The First Cold Front In Florida 2022
Leslie's Pool Supply Redding California
Latest Posts
Article information

Author: Amb. Frankie Simonis

Last Updated:

Views: 6227

Rating: 4.6 / 5 (56 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Amb. Frankie Simonis

Birthday: 1998-02-19

Address: 64841 Delmar Isle, North Wiley, OR 74073

Phone: +17844167847676

Job: Forward IT Agent

Hobby: LARPing, Kitesurfing, Sewing, Digital arts, Sand art, Gardening, Dance

Introduction: My name is Amb. Frankie Simonis, I am a hilarious, enchanting, energetic, cooperative, innocent, cute, joyous person who loves writing and wants to share my knowledge and understanding with you.