E. S. Swayze Drugstore

The E.S. Swayze Drugstore in Otisville, Michigan, also known as Otisville Mason Lodge No. 401, is a building from 1874. It was listed on the National Register of Historic Places in 1982[1] and designated as a Michigan State Historic Site in 2010.[2]

E. S. Swayze Drugstore/Otisville Mason Lodge No. 401
The lodge building in November 2014
Location106 Main St.,
Otisville, Michigan
Coordinates43°10′0″N 83°31′27″W
Arealess than one acre
Built1874
Architectural styleItalianate
MPSGenesee County MRA
NRHP reference No.82000529[1]
Significant dates
Added to NRHPNovember 26, 1982
Designated MSHS2010[2]

History

This building was constructed to replace a previous store that burned in 1874. The second floor meeting hall was used by the Free Methodist Church for services from 1887 to 1890. In 1903 Otisville Lodge #401 (a local Masonic lodge) purchased the building, and used it as their meeting hall. It was owned by the Masons until 1970.[2] The lodge has moved to other premises.[3] The building remained vacant until at least the 1980s, but was then refurbished.[4]

Description

The E. S. Swayze Drugstore is a two-story red brick structure constructed in a vernacular Italianate style. The first floor has a double, five-panel door next to a Palladian-inspired window. Both window of which feature are set in rounded brick archways with keystones. A secondary cornice separates the first floor from the second. The second floor consists of a series of panels, containing four windows similar in to those at the first floor level. Brick corbelling runs across the cornice.[4]

gollark: >contacts
gollark: Sure? I would move it to beside <#733816666089062511> but mobile.
gollark: Heavpoot is to be declared SCP-3125-A with immediate effect.
gollark: My tape download program now supports downloading big files without splitting them, via range requests, assuming they're served from a server which supports it: https://pastebin.com/LW9RFpmY (do `web2tape https://url.whatever range`)
gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.