Statistics

Problem Statement for "FloorLayout"

Problem Statement

You are building a house and are about to lay the floorboards in a particular room. Your architect has designed the layout of the floorboards and you now want to know how many boards you need to buy. Each board is 1 unit wide and can be of any positive integer length. The room is rectangular and the boards are to be laid out on a unit-square grid inside the room, parallel to the walls of the room.


You are given a String[] layout describing the layout of the floorboards. Character j of element i of layout describes the grid-square at position (i, j) and will either be a '-' or a '|', depending on which direction the floorboard covering that square is oriented. If two '-' characters are adjacent at the same value of i, then they form part of the same east/west-oriented floorboard. Similarly, if two '|' characters are adjacent at the same value of j, they are part of the same north/south-oriented floorboard. Return an int containing the number of distinct floorboards in the layout.

Definition

Class:
FloorLayout
Method:
countBoards
Parameters:
String[]
Returns:
int
Method signature:
int countBoards(String[] layout)
(be sure your method is public)

Constraints

  • layout will contain between 1 and 50 elements, inclusive.
  • Each element of layout will contain between 1 and 50 characters, inclusive.
  • Each element of layout will contain the same number of characters.
  • Each character in layout will be a '-' or a '|'.

Examples

  1. {"----" ,"----" ,"----" ,"----"}

    Returns: 4

    This layout contains 4 boards laid east/west.

  2. {"-||--||--" ,"--||--||-" ,"|--||--||" ,"||--||--|" ,"-||--||--" ,"--||--||-"}

    Returns: 31

    This is an aesthetic pattern made up of boards of lengths 1 and 2.

  3. {"--------" ,"|------|" ,"||----||" ,"|||--|||" ,"||----||" ,"|------|" ,"--------"}

    Returns: 13

  4. {"||-||-|||-" ,"||--||||||" ,"-|-|||||||" ,"-|-||-||-|" ,"||--|-||||" ,"||||||-||-" ,"|-||||||||" ,"||||||||||" ,"||---|--||" ,"-||-||||||"}

    Returns: 41

  5. {"-||--|" ,"||||||" ,"|||-|-" ,"-||||-" ,"||||-|" ,"||-||-"}

    Returns: 19

  6. {"-|--|--||-|||-|||-|---|-|--|||--|||||-||-|||-|-|||","|--||-----|-|-|-|--|-|||-|--|||||--|-||-|----|||||","-----|--|||-|---||--||||||||||--|||----|-|||-||||-","-|||||-----||----|||-||||-|-|||-|-||||||--|-||---|","--|-||----||-|-|||--|-----|||-|-|-||-||-|--||--|-|","||||-||||-|-|--||-|||||-|-||--||---|--|||||||--|--","||---||-|||||-||||-|||-||---|--||-|-|-|||-|-||-|-|","|---||||-||---||||||||-||-|--|||--|-||||-----||||-","|||-||-|-|-||||||-||||||||-----||-|--|--|||---||||","|-|--||||-||||--|||||----|-||||----||-||||||--||||","|-|-||||||-||||||-|||||-|-||||-||--|--|-||-|||--||","||||-||-||-|-|-||||--||-||-|--||||||----|-||||----","||-|||-||-||-|||-|||-||||--|-||--||--|--|||--||-||","||||||--||---||-||-|||-|-||--||-||-|-|-||||||-||-|","-|||--|-|||-|-||-||-|||-|||||--|--|||-||||---|-||-","----|||-|||-----||||-|-||||||---|----|||--|||||-||","|--||----||||||---|||||||||-||||||--|-|--||-|-|-|-","-|--||||--|||-|-||||-|--||-|||||||-||-|||--|-|-||-","|---|-|-||-|-|||-|----|-|||-||---|||||-|-||||-----","|-||||-||-||||||--|||--|-||||--||||-|||--|-||--|||","|||||-|||-||||-|-||||-||-||-||--|-|||||--|||---|||","-|||-|||--|---||||||--||------||-|--|||||||-||-|--","||--||||--||||-|-----||||-|-|-|-||--|-|||-||-|--||","---||-|||||---|----|-|-|||-||-||-||-|---|||-|--||-","||||-||||--||-|--|||||---||-|--|-||-||||--|||||-||","||-|||||-||----||--|||--||-|-|-|-|||-|----||-|||||","||||-||---|-|-||||-|-||--|||||||-|-------||||----|","|-||-|||||--|||--||||||-||-|---|||||---|||---||--|","|-|||||---|||||-||-||-|---|-||--||-|-||-|-||||||--","||-|--||-|--|||-|||--|----|-|||-|-|-||--|||--|-|||","-|-|-||-|||-||||||--||-|-|-||-||--|||||-|-||---|||","|--|||--|-||-|-|-||||||--|||--|-|||-||---|||-|||||","-||||--||||-|-----|||||||-|||||----||||-||--|-|--|","||--|||-||-|--||||-----||--||-|-|-||||-||||||---|-","-||||||-|-|||-|--|-|-||||||--|--|||||-|||-||-|--||","|||||||--|-|||--|-||||||--|||||--|-||--||------|||","|-|-||---|--|-|--|-|||-|--|-|-||-|||-|-||--|----||","|-||||||||-||-||||||-|-||||-||||-||||||-|-|-|||--|","-||-|-|--||----||-|-|---|-|--||-||--||||-|-||-||||","-||||--|-|----||||----|-|||||---|-|-|-|||||-||-||-","|||--||--|||-|--|||-||||--|-||-|||||||--|-|-|-||||","---|-||--|-|-||--||-||--|-----|-|||||||--||-||-|||","||-|-||||---|-||--|--|---||--|--|||||---|||-|-|-||","||-|-|||||---||-|----|---|||||-|||--|--|||-||||-|-","---||-||--|--||||||-|||---||-||--||-||-||||||-||--","-|-|---|-||||||---|-|||---|----|-|-||-|-|||--|-|||","-|||-||-|||----|-|-|||||-|-||-|||--||-|-|||-|||--|","||||||-||-|--|||-|-|-|-||||-|-||-||-||||||||-|||||","-|-|-|-||||||-||||--|--||||--||-|||||-|-|||||||-|-","-|-|--|-|-|||||--||||||-|--|||---|-||-||----|-||--"}

    Returns: 1229

  7. {"|||-|||--|-||||-|||||--||--|||||||||||---|-|||-|||","|||-|--||-||||||-||-||||-|-|||--||--|||||||||--|--","||||--||-----|-|||---|||||-|||--||-|||-|-|||---|-|","---|-||--|-||||--|-|--|--|---||--|--|--|||--|||-||","|-----||-|--|-----||||-|||||||---|-|-|||-|---||-|-","-|||||-|----|||--||||---|-|||---||--||-|--||--||--","-||||||||--||--|--||||-||||--|-|--|----|-|||----||","--|-||||||-|-||-||-||||-|--|---|-|--|-||--|----|||","|-|-||||-|||---|--||--|-|-||-|--||||||||--||--|-||","||||-||-|||--|||||-||||-||--|-||||-|-|-|-----||-||","||---||||--|-|-||-||--|-|||-|||-|||||-||||--|||||-","||-|-||----|-|-||-|-|||||--|||--||------|||-|||||-","-||--||--||||--||--|-|-|||-|||-|-|-|||||||-|-|--||","|-||||-|-|-||--||||-|||-|----|||-|-||||-|||||-||||","|||--|-|||||||-||----||-|--||--|-||||||-||||||||||","|-|||||-|||---|||-||---||-|--|||-|||||||-|-|||||--","|---||||--|-|--|-|--|--|--||-||||--|-|-||||||--||-","-||||-|-|--||-||------|||-||---||||---||--||--||--","|-|-||||-|-|||---|-||||||--|--|--|----|-||||||-|||","||||--|||--|||--|--||--|-|||--||-|-|---||-||||---|","|--|-||-|||||||-||-||---|||-|||--||||-||||-|||||||","|||||||||||||---|||--||----||||-|--||||-|-||-|||||","|-|--||-||||---|-|--|-|-|||------|-|----|||||---||","-||||-|--||-|--|-|---||-|||||-|||-|-||||-||-|-||--","||||-|||||--||---|-|||-||-||-|---||--||||--|-||-|-","||||----|||---|||---||-|||||--||----|-||-|-----|--","|||||-||--|||-|-|-|--|||-||--|-|--|||||||||-|||-||","--|||||||---|-|-|-|--||-||||-|||-|-|||||||-|--|--|","|-||||||||-||--|-|---||||----||-|||-|||-|||--|||--","-||-|-|-||||||--||-||-||-||-|-|||||||-|||--|||-|-|","|||-||||||---|-|-|||--||-||||-||-|-||||-|||||-|-||","|-|||--|||-|--||||--||-|||||-||-|-|-|||-|||--||||-","|-|--||||-||||||||||-||--|-||||-||-||-||||-|||||||","-||--||--||||-|-||||||-|||-|----|-|----||||-||||||","----||-|---||-||||-|--|-----||--|-----||-||-|||--|","||---||-|-||||-||||||--|-||-----|||-|||-|--||||-||","||-||||-|||-||--|---||-|---|--|||||||--|-|||-|-|--","||||--||||--|-||--|-|||-|-||||||||--||||||||-|-|||","|-|-|-||-|||||-|-|-||-|-------|-||--||||-|-||-||||","|||--||-|||-||-||-||--||--|-|--|||-|----|||-|||-||","-||||||||-|||||--|||-||||--|||-||------|||||-||-|-","-||||-|-||||-||-|--|||--|-|---|||---||------|-||||","-|||||-|-||--|----|||-||-|-|--||--||---||||--|||-|","-||-|-|-|-|-|||||||-|||||-|||--|--||||--|-|-||--|-","||--|---|---|-||--||-|-|||--||--|----|--|||||----|","|||-|||-|||||---||-|-||||-||-||-----|--|||--||-|-|","--||||-|---|||||-|--||-||-|----|-|||||-||-|||-||||","-|--|--|--|||||---||||-|---|-|||-||-|||||-||-|||--","||----|||||--||||-|-|||-|-|-|||||||----|--|||||||-","---|||---||||||-|||||||--|--|||||--||||||-|||--|-|"}

    Returns: 1215

  8. {"||---||-||||||-||-||-|--|-|-|-|||---||-|--||||----","|-|||||-|-||--|||||-|||||||||--|||-----|---||||---","|-|-||||||--|-|-|||-||--|||--|--|-|||-||-||-|||-||","---||-||||-||--||--|||-||||-||||||||-|-|||---||-|-","----||||||---||||---||-|||-|||--|--|--||-||---||||","||||||---|-|-|||-|--||||||||---|-||-|||||-||-|||||","|-||||---|-||||||--|||||||-||-|---|||||||||||||-|-","|-||-|||-|---||-||||-|||||--|----||-|---|||-|||||-","|||--||---|--||||||||||||-|---||--|-||-||-|-||-|-|","|||-||-|-||-|||-|-||-||-||-|||||-||||-|||---|-|--|","-|||-||||--||----||-|-|-||-|||---|||-||-|-|||---|-","|--|--||-||||--|--|||||||-|-||||||||-||-|||-|-|||-","|-||||-|||||-|||||--||-||---|-||-||||-|||||-||||-|","|||----|||||||--|-||-||||-|||||||||-||-|||-|-|-|-|","|||---|-|-|||----||-|-|||-|-|||-|--|||||-||-----|-","--|---|-||||---|-|-|-|||||--|-||-|--|||-||-|||-||-","---|--|||-|||-||-|||--|||-||-|---|--|||||-|--||||-","|||-|----|-|---||||---|-||-----||||-|-|||||||||--|","|-||-----|--|--|||-|||-|-|||-||||--|-||-||||-|-|||","-|||||||-|--|||||--|||||-||||-|||--||-||-|-|||--||","|--|||-|-|||-||-||-|||-||||-||--|-||||-||-|-|||-||","-|||-|||||-|-|--|--||-||||-|--|---|||||--||-||--|-","|-|-||||||---|-||||-|---||-|-||-||||||--|-|-||||||","|--|||||||||-|----|||-|-||||||||||-|-|------|-|||-","|---||-|||||||-||-|-||||||-||--||||-|||-|-|---|-|-","|||---|------|--|---||---|||-||||-||---||||-|---||","-||--|||---|-|||||-|-||-|-|-|---||--||||||--|||--|","-|--|--|-|||||||||-||||||-||---|||||||-||-|-||-|--","|||-|--||-||-|-||||-||-|-|||-||||||--|-|-|-|||--|-","--||||||-|-|--||||-|-||-||-|--|-|||---||--|---|-|-","|---||||--||-|||-|--||-|||||--|-|||-----||-|-----|","-|||||-|--||-|-||----||----||-|--||||-|--|--|||---","|-||-||-||--|-|||-|---||-|-||||||||-|-|--|||-|--||","||||-|||---||||--|-||-|||||-|||||--|-|---|---|--||","-----|-|-||--|-|--|||||-|||---|-||||||||||||--|-||","|||-||||-|-|||-||-|-||||||||-|-||||-|--||||-||-|||","|-|-|||||-||-|-||||--|||-|-|---|||-|||-|--|-||||--","||-||||--||||--||||-|-||||-||---||-||-||-|-||--|||","---|||-|---||||-||-|||-||||||-|-||||-||---|-||||--","|---||---|-||--||---|-||---|--|-|--|---|-|||-|-|||","--|||||||-||-||--||||||-||||||||||--||||-|||||||-|","--||-||-|||--|-||||--|---|-||||||||||||-|||--||--|","|||-----|--|-|--||||-|-||--|-|-||----|-|||--|-||||","||-||-||-|||-|||---||||||-||||-|----|-----|||-|--|","|-||||-|-||--|-||-|---|||||||||||||--||||-|||||--|","-----|||-|-|||||-|---||||-|--||-||||||-||------|--","||--||--|-|-|-|-||||||-|-|--||-|--||-||-||-|---|||","|||--||-||-|||-|-|-||--||||-||-||--|||-|||-----||-","||-|-|||-|||-|-|||||---|-||-----------|-----||||||","-|--|-||-|-|-|||-||--|---|---||||-|||||||-|--||--|"}

    Returns: 1202

  9. {"|-|---||||-||||||-|||---||||||-||||||||||||||--|||","|-||---|||||-||-|||----|-||-|-||||-||||-||||---||-","|||||||||-||------||||-|-|-|-|||||-|-|--|-|-|-|---","-|||-||-|||-|----|----||||||||-||||-------|--||-|-","|-|||||-|-|||||||-|||||-||||||-|---|-|-|||-|||||-|","|--|---||||||||-|||||||||--|-||-||-||||||-|-||-|||","|-|-|-|||||--||---|||-|-||||--|-||||||-||--|-|-|-|","-||----||-|--|||-|||-|||-||-|--|||||--|-|||-|||-||","-|||||||||-|--|||--||||||||--||--|-||||-|-||-|||--","||-|||||--||||||||---||-||--|-||-||-|||--||-|--||-","|-|-|-||-|-|-||||-||--||||--|-|||-|--|||-|-||-|---","--|-||-|----|-|||---|---|||--|||||-|||-||-|||-|--|","|||||||-||-||-|-||-|-|||---|||||-||-|-|----|||-|--","-|-||||||---|||-||||-||-||-|-||-||-|-||--||-|||--|","|-----|-|||-||-|||--||||-|-|||||||||-||||--|--||||","-||--|-|||--|-|-|-||||||||--||-----|--|-|----||||-","||||-||-||---|--|---||-|||||||--|||-||-|||-|--|-||","||-|--||||||-||-|||||||-|-||--|-||---||--|---||--|","|-||-|-|||||||||||-||-|-||--||||--||--||||||-|||-|","-||-|-----||||-|-|-||||--|--|-||--|||--||-||--||||","|-----|-||-|-||---||--|-|-|--|-||-||||||||||||-||-","|--|-||||-|---||--|-||-|||-|||-||-|---||-|||-||-||","-|-||||-|-||---|||||-|--|||---|||-|--|-----||-|-||","--|-||--|||--||-|||||--|-|||-||-|-|-||-||-||---|||","---|--||||||--||||-|||-||||----|||-||-|--||||-||||","|||||-||-|||-|||-|-||||-|||||-|||----|-|||-|-||---","--||-|-|-||-||-----|--|-|||-|||||--||||-|||||||-||","-||||-|||---|||-|-|--||-|||-|----||||----|||--||||","-|||--|-|||-|-||--||-||---|||-|---|-|---|-|||||---","-|-|-||--|-|-|-|-|||||--|-|||-||||||-|--|||-||--||","||-||||||-||-|--|-||--|-|-|-|-||||--||||||||||-|-|","|----|-||||-|----||-||||-|||-|||---|-||-|---||--|-","|||--|||-||||||||-----|-||--||--||--|------||-||||","-|||--|-|-|-|----|-|||-|-||--|-|----||-----||||-|-","-||-|||-||--|----|||||||-|||||||-|||---|-|-||--|||","||||--|------|||||-|||---||||||---|-||--||-|-||-||","-|-|||-|||--||-|||-||-|||-|-|||-|-|-|----|------|-","--||-||||||||----||-|-|--|||||-||-|||||||-|--|---|","|----|||--|-|||-|||||||-||||||||||-||--|-||-|--|||","|-|----|-|||-|-||||||--|||-|-||---|---||--|||--|||","-||-||---||||-|||-|||||-||-||-|||||||--||||--||||-","|||-|-|----|-|-|||-|||-||--|||||||-|||||||||||-|-|","|--||||||||-|||-|-||-||||-|||-|||||-|--|||-||--|--","|-||--|-|||--|--|-|----|||---||||-||-|--||||--|||-","|-||-||||---|-||||----|||-|-|||||||-|||||-||-|-|-|","--||||-|-|||--|||-||||||-|---|||----|||-|||-|-||--","-|||-|-|-|||---||--||||--|||--|||||||||||||-||-|-|","-----||-||||-----|--|--|--|||---|||||-|-||||-|-||-","||||||-|-|||||-|-|-|--||||-|||||--|--||-|--|||--||","|||----|--|--||||-||||---|||--||-||---|-|||--|--||"}

    Returns: 1231

  10. {"|||-||---||-||-|-||||-||-||-|----|-||-|||-|||-||||","-|||---|||-||-|---||||--||-|----|||--||||-||||--||","-|-||-|--|||-|--||-|-||--|-|---|||||-|---||---||-|","||-|||-||||-|||-||||--|-|-|-|||-|-|-||-||-|-||-|--","-|||---|--||||||||-||||-|-|-|-||-||-|-|-||-----||-","|||-|-||-||-|||-||||||-||-------||-||-|||||--|--||","|-||||--||-||-||||||||||---||---|||-|||||-|-||---|","|||||||||-||-|||---||-|-||---||-||-|--|-|||-||||||","---|||-||||--|||||||-||-|-|-||-|-----||||-||-||||-","||-|||||-|----|||||-|-||--|-||-||-||||||-|-||--|||","---|||||||||||||||-||||-||-||||||--|-||-|--||||--|","||-||||||||||-|-|-|-|-|-|-||||||||-||-||-|--||-||-","-|-|-|||||-|-|-|--|----||-||||-|---||||-||-|-|-|||","|-|||-||-|---|---||-|||-|-|-|---|--|||||--|||--|-|","|-|--||||---||-|-||||||||-|||-|-|-|-|-|||||-|-||||","-|-|||---|--|-----|---||-|-||-|||-||-|||-|-|--|||-","-|-||||||--|---|--||-|-|||-|----|-|--|-||-|------|","||---||||-||-----||--||-|-||-||-||||--|-|||||----|","-|-|-|||-||||-||-|||||||--||-||||||-|||--|--||-|||","|---||---||---||-||||-|-|||||-|-|---||----|-|-----","-||||-||-|-|||-||||||-||-||--|-|-|||-||--||-||||||","||-||-||-|||-|--|||||-|--|||||||-||--||--||--|-|-|","|||||-|-|-||||-|||--||||||---|---|---|||--|-||||||","-|-||-|||-|---||-|-|--|--|-|||-|-|||-|---||--|---|","||--|||-||||||||-||-|-|-||||----|-||--|-||||-||||-","||-|||--|||---|---|||-|---|-||||-||--||-||||--|||-","-||-|---|----|-||||-----|||-|-|--|-|||-|-|||||||||","--|||||||-----||--||-|||||--||||||||||----|-|-||-|","-|-||||||---||-||--|--|-||||||---|--|--||-|||-||||","||--||-|-||-|-|-|-||--||-|-||-|||-||-|-|||-----|||","||||||---||----|--||-|||||-||-||||||||-|--||-|-|||","---|-||||--|||||---|----||--|-|-||-|-|||--|--|||||","|||--|--|||--|||---|----|-|-|---|-|-||---||---|-||","|||-|-|||||-||||-||||--|||-|||-||||--|||||---|||||","-|--|||-||-|-||-|||||--||||-----|||-|||||---|-||-|","-|||---||--||-||||---||||||-|||-|||--|-|--|||||||-","|||||||-|||-|--||-|-||-|||||---|-||--|-----||-----","||---||||--||-|--||-||-||-||-||---|||||||-|||-|||-","||-|-|||||-|-||-||--|||||-||-|||---|-|--|||--|||--","--||-||-||--|-||--|||||-|--|||-|||-||-|-||||-||---","-|||||-|||-|||||||--|||--|-|--|||-||||-----|---|-|","||||-|--||-|||-|--|--||||-|-||-||----|---||||-||-|","---||-|-|-|||||||-|----|-|--|--||---|-|-----|-|-||","--||----|-----|||-||||||||--||---|---|-|-||||||||-","||--|-|-|-|--||||||||||||---||||--||-----||||-|---","||||-|-||-||||||-||--|--||||||----|||---||--|||---","||-||-|----|||-|-||||||-|||-||||--|||||-||||||||||","-|||||-|||||--|||-----|||||||--||--|||-||||-|-|-|-","--||--|-||-||-||||-||--|-|-||-|||--|||||--||-|-|-|","|||-|||-|-|---|||-|||--|-|-------|-||-||-|-|-|||||"}

    Returns: 1211

  11. {"-|-||-|-|--||||||||||-||-|||-|||-|||-|||||||||-|-|","||||-||-|---|--|-|--||||||||-||-|||-||||||||-|--||","--|||||--|||||---|-|---|||--|-|-|--||-|||--||-||--","|-----|--||--||||---|-|||||-||-|-|--------|-|-|--|","||---|||-||-|----||-|||--||-|||-||---|-||||-|||-|-","-|---||-|-||-|--||-|-||-|||---|-||||-||-||||--||||","-|-|||-|--||||||-|-||-|||||-|--|||-||--||||||-----","-|-||--|||||-|-||--|-|||-||-||||-||-|-|||---||-|||","|||--|--||-|||||||||-|--||-||-|--||--||||--|-|||||","|-||-||---|-||-|-|||--|--|-|-||-|--|-||||-|--|-|||","|--|-||-|||-|||||||--|---||-|||-|||--|||--||||||--","|-|-||---|--||-|-||-|||-||||||--|--||-|||-||||-|||","--|-||||-||---|||-||||-|--|||||-||||-|||||||||----","||---||||-|-||--||-|-||-|||-----||--||---||-|-||||","-||-|--|---|||||-|--|-|-||-|--|-|-|-|||||-|||-||||","||-|-|--|-||||--|-|||-|--|-|||--||-||-|||--|||-|||","-|-|||-|-----|-|--|-|-|||----|-||||||||||---||||-|","||||--|-|---|-|-|--||||||--||||||-|-||---|||-|---|","-||--|-||-|-||---||||-|--|--|||-|||--||-||--|||--|","-|||-||||-||||-|-|-|--|||-|----|-|-||||||-|||--|||","|||||||-||-|||||-||||-|--|||----||-||---||--|---||","|-|-|-|||-|||--||||-|-|----|-||--|-||-||-|||--|-|-","-||-|---|----||||||-|||-|-||---||-|-||||-|----|-||","-||-|||||--|||||||||||-|||-||--|||||--||--||-||||-","|--|--|-|-|||-|||-|||||--|||--||-||-||-|||-|---|--","|||||||||-|||--|-|-|--|||---|-|--|-|||||-||||||-||","||||||--|-||||--|--|||--|---|||-||||||-||-||---|--","|--|||||-|-|-|||||--|-||-|-|-|-|-||||--||-||--||-|","--||-|--|||-|||----|----||||-||-|||||-----|-|-|-|-","-||||-||-|-|||----||||-|---||-|-|--|--||||-||||-||","|-|||||||||||-||--|||-|||-|||--||-|--||--|-|--||-|","|||||||-|---|||-||-|--||-|||-|--||||||||-|||||-|-|","|||||----|-||-|||||||||||||-||-|-||||-|||||---|||-","|||||||||-|||||-|-||||-||||||||---|---|-|||-|||-||","|||-||-||||-||||-|-||--||-|--|-|--|-||||-|-|---|-|","||--|-|-|||------|-|||||||||-||-|-|-|-|-|---||----","-||-|||||||||---|||-|-|--||-|-||||-|-||--|-|||-|--","-|-|---|--|-|-|--|||-|-|-||--||-|-|-|||-|-|-|--|--","||-|-|||-||-|-|----|--||||-|--|||-||||||-|----|||-","----||-||-|-|----||--||||-||||--|||-------|||-|||-","||-|||-|-|||-||||--|--||-|||||||||||||||--|||||--|","|-||-|-||||-|||-|||--|||-|-|--|-||||-|--|||||---||","--|||-----|-||----|||||||-||-|||||---|||||||||||||","|||||||-||||||--|||||-|||--|---|-|-||||--||---|||-","-|-||||--|-||--||||-----||----||||-|---|||-||||-||","--||--|--|||||---||--||-|---||||||-||--|-|||||||||","-|-||||||-|||||---|-|||-||||||||||||--|--|||--|-||","-|--|-|--|||---||--|--|-|||-|||---|--|||-|-|-||--|","|||-|---|-|--|-|---|-|-|||||||-||-|||-|-||||-||-||","|-||--||||-|-|-|-|||-||---||---|||||-|---||--|-|||"}

    Returns: 1241

  12. {"|-|||--||-|-||-|||||--||-||||---||||-|---|--|---|-","-||-|||-||-|--|||||-|----|||||--|-||--|||-||||||--","||||||||-||-|-||-|-|||||||-|||-|-||-|||--|--||-|||","|--||||-||||||||-|--|||||||||-|-|||-||-|-||-|--|-|","|-||-||||-|--|-|------|||||||--|||--||----|-|--|-|","|-||--|-|-|--|---|--||--|-|||-|--|--|-|-|-|-|||--|","|-|||||--|||---|-|||||||-||-|||--|-|-|||-|-||--|--","--|--|--|||---||---|-||||-||--||--|||-|||--||-|||-","-||||||--||-||||-----||--|---||||-|||||||--||-||-|","||-||-|||-||||-||-||-|--|||||||---|||-||---||||-||","-||||-|-||-|-|----||--|-|||-||||-|||-|---||--|-|-|","-|-|-|||-||--|--|-||||-|||-|-||||-||--||-|-||-|||-","-|--|-------|||-||--||--|--|-|-||--|||-||||||||-||","--||----|--|-|-||||||||||||-||-||-|||||--|-|-|||||","----||||----||||-||||-||----||||-||--||||||--||--|","|||--|--|-|-----||--||--|||||-||||---||-|--|-|||-|","||||---|-||-||-||||-||---||----||-||||||-|--|-|-||","||-||--||||--|-|||-||-|---||---||||||||--|--||||-|","|||-||||-|-|---|-||||||-||-|----||-|||||--|----||-","---|-|-|||--||||||-|--||||-||||-||||-|||-|-||||-|-","---||-----||--||-|--|---||-|--||---|--|-|-|--||-|-","|-|-|||---|-|||-|----|---|||||||||-||--||-----|--|","||-|-|---|||-|-|--||||--|---||||-||--||||||----||-","-||--|||||-||-|--|-|||-|||||-----|-|-|||||---|-|-|","---|--|---||--|-|--||-|-|------||-|--|||--|||-|||-","|-|||||-|||-||||-----||---|-|-||-||-|--||--||---||","|-|--|-||||||-|||||-||--|||--||-||||||-|--|||||--|","-||||||||-||-|||-||||||---|--|---|-|-|-|||-|||-|--","||--|||||--|-----||-|||||--|-||-||||||||--||-|||||","-|-|-|-||-|||||-||--||||--|||||-|||||||||-||-|||||","-|||||||-||-||--|-||||||||-|||||||||||-|||-||||||-","-|||||||-|--|-|||||||||-||||-||-|||||||||-------||","||--||-|||||||-|-|--|-|-----|--||--|-|||||--||||||","|-||-||||--||-|--||-|-||||||-|||-|||||---|||-||||-","--||-||--|-||-|||-|--|---|||||||||||||-||||-||||||","|--|||-|||||-|||||--||-----|--|||||-|-|-||--|-||-|","-||-||-||||-|--|||-|-|----|---|-|-||-||||---|||---","-|--||||-|||---|-||-|--||-|---||-|-||||||-|-|||--|","||-||-|--|||||-|--||-|||-|||||-|||---||-||||||||||","|||--|||--|||-|||||--|-|||||||---|--||||-||----|||","-||-||||---||||||||||-||||--||---||-|||-||-||--||-","||||||-|-||---||||||||-|----||-|--|---|-||--||-|--","-||--|--|-|-||-|-|-------|-|-||-|-|-|||---||-|-|--","||-||-----|||-||||-|-||-|--||||||--||-|-||-|-|-||-","-|-|--||||-||-|-||-|-||||||--||-||-||-||-||-|-||||","-|--|-||-|-|-|||--|-|||--||||--|-|||-|-|-|-|--||-|","||-|||--|----|----||-|-||||||----|||--|-||-|||-|||","|||--|-||-||||-----|--||-|--|-||--|-|||-||---||-||","-|----|-|----|---|||||-||-|||-|||-||-|||-|||-|||||","|----||||-|||-||-|||-||-||--|||||-|-|||-||||||--||"}

    Returns: 1222

  13. {"|||||--||||--|||||||-||-|||-|-|-||-||||||--|-|---|","|||||---||---|||||--||||||||-|--|||----||--|-|||--","-||-|||||-|-|-||--|-||-|--||||-|-|||||||--|---|-||","--|||||--|||--||||--|-||||---|||||----||||--||-|||","|||---|-|-|||--|--|-||----|--|--||-||||--|-||----|","|--|--|-||||-|||-||-||----||-|||-||--||||---||||-|","-|-----|-|--||-|||-|-|--|||--|--|-||--|--|-||||---","---||--||---||-|-||||--||||-|||||--|||||-||||----|","-|--|||-|--|-|||-||||-||||-|||-|||--|-|||-|||-||--","|---|---|||-|-|-|-||--||||--|--|-||--|-||--||||-|-","----|||---||||-||-||-|---|||--||-||-|-|--|||---|-|","||-|||||||--|---|-|||||-||-|||-||---||-|--||---|--","-||||-||||-||-|-||||||||-|--|---|---|-|--||||||--|","-|--||||||--|--|||-|-----|||--|-||--|----|--|-|||-","|||-|||-|-|--|||-|--|-|||-|||-||||||||||||||||||-|","||-|-||||-|-||-|---|-||----|-|-|--||---||--|||-|||","-||||||-|-|---|--|-|--|-||||||-|||--||||--|-||-|--","--||||||-|--||||-||||-|--||---|||||||||--|--||||||","|||||-|--|||||||||--|-|--||||-|-|-|||--||||-||||-|","|-||-||-||-|||||---||||-|-||||||-||--|||-||||-|-|-","|--|-||----|-||-|-||||--|-|-||||-|-|||--|-|||--|||","||--|-|||||-|-|-|-|--|-|--|---|-||||-|-|||||-|||--","||||--||-|---|||||||-|||||||---||-|||||----||--|-|","|-|||-|-||||-|---|||-|--|---||||||-|-|||-|-||-||-|","||||||---||--||--|||||||-||-|--|||||||--||-|--||-|","---|||||||-|||--|||--|-||-|--|-|||----||||||||||-|","||||-|||||-|--|--|-||--||--|-|||||------|---|-||||","||-----||-|||||||-|-||||||||-||-|||-|-|-|-||-|-|-|","|-||-|||||---|-|---|||---|-||||||-|---||--|-|--|||","|-|||-|--|||---|-|-|-||-||-|-|--||--|-|-|||-|---|-","|||-|--|-|--||||||||-|||||---|||---|--||-|-|||||||","--|-||-|||||||-|-|||-||||--|||-||-|---||||-|-|-|--","-||-|-||-|--||--|-|-||||--|||||||||||-||-|||-||||-","||---|--|--|--|-|---||-|-|-|||--|----|--||||||||--","|||||||||||-||-||||||-|-|||||||---|||||-|---||||||","||||||--|||||----|||||||--|||||||||||---|||-|-|---","|-||-||-||-||-||----|--|||-||||--||||--|-|----|-||","-||-|||||-||--|-|-|||||--|-|||||--|---||||||-|||--","|||---|--||-|--|--||||-|--|-|---|--||-|-|-|--|--||","|||-||||-||-|||--|--|||--|-|-|-|-||---|----||||-||","|||--|--||-|||||||-|||||-||-||-|----||----|||||||-","|||||||||||-----|||------|--|-|-||-|--|||||---||||","-|||--||-||||-||||-|-|-|-||-|-||||||-|-|-||-|---|-","|----|||||--||--|--|||||-|--|||-|||-|||-||||||||--","|--||--|||--|||----|-||||-|--|||||-||-|---||-|-|--","|--||||-||||||-|||||--|-|||--|-||----||||||-||||||","|--||||||||-|||---|-|--||-||||||||--|-||||--|||||-","||-|-|||||-|--||||||-||--|------||-||||-|-|||--|--","--||||--||||-|-|||||||||--|-----|--||||||--||--|--","-||--|-|-|---|-|---||-|-|-|||-|||--|-|||-|||-||||-"}

    Returns: 1231

  14. {"||-|||||||-|-||--||-||||-||-|||---|||||-||||||||||","|||--|||||-||-|||||-|||||||--||--|-|--||--|----||-","-||---|||-|-||-|-||||||||||---|||---||||-||-||||||","-||||||||||||---||||||-|-||||--|-|-||-|--|--|--|-|","|-----|||---||||-||||||||--|||-||-|-||-|--|-|||--|","||--|--||||-|||||----|--|---|||-|||-|-|-||----|--|","--|-|-|||||-|-|||||-|-|-||||-|-||||||||-||-|------","||-|-|||||--|||||--||||--|-|---|||---|||-|--|-|--|","---|||-|||||||--||-|--||-|||-|||||-|--||||||||---|","|--|---||||||--||-||||-||---|-|-|-|||-|||-|||||||-","||-||--|--|--|-|||---|-|-|||-|||-|-||-|||----||---","||-||-||---||-||-|||-|---|||--|||||-||||||||--||-|","-|-||--|||-||-|-|||--||||-|-|-||-|-|||-||---|||-||","-|-|-|--||-|-||||||-||--||-|-|||-|-|||-||--||-|---","--||--||-|-||||-|-|||--|-|||---|||-|||||--|--|||--","----||-||-|--||---|-|||--|-|---|---||||-||||-||||-","|-|-|||||||||-||||-|||-|-|-||||||||--|||||-|||-||-","---||---|--|---|-|---|-|-|||-|-|||||||-|||-|||||||","|-|-||--|-|-|-|-|---||-||-|||--|||||-|--|--------|","||---|--||||--||---||-----|||-|||-|-|--|---|||-|||","--||-----|-|--||||--|||-----|-||||-|---|||||||-|-|","|--||--||--||---|-|||--||-|---|---|--|-|-||--|||||","|||||||||-||||-|||||-|-||||--|--||--|||||||-|-||-|","||||-|-||||||--||||--|--||||-||---|---||-||-||--||","||||-|---||||||--|||||--------|-|-----||--|--|----","---|--||--||||-||-|||----|-|||||--|----|||-|||||-|","||-|---|||---|-|||-|||-|-|||||---||-|--|||||||||||","|||||||||---||-|--||||-||||-|-|---|||||-||||||---|","--|-|-||||||||--||-|||||---|--|||||-||||||---|-|-|","||--||||||-||--|--||-|||||||||--||||--||||--||||--","-||--|||||||||||-||-|-||-||--|-|||--||||-|-|||--|-","--|||||----|-|--||--|-||||--||-||-||-|---||||-|-|-","|-|--||-||-|---||---|-|||---|-||||||||-||||||||---","|||-|||||-|-||--|--|-|||--|-||-|-|-----|||||||--|-","-||---|-|||||----|-||-|--||-|||-|-|||||--|||||-||-","-||||||--|-||-|||||---||-||||-||--|||-|||-||-||||-","-|-||--|-||-||--|-||-|||--|-|||---||---|||-|-||--|","||||||||-|||||--||-|-|----||||-|||--||||-||-||||||","|-|||-|||-|--||||-||||||--|--||-|-||||---||-||||||","-|||-|---|||-||-|-|--|||-|-|-||||-||---|||-|--||-|","||-|||-||--|||||||-||--|-|-|---||-|--||-|--|||---|","||||----|-||||||-|---|-|-||||--|||--|||--||--|||-|","----||-|--|-||--|||-|-----|-||||||--|-|||-||||--||","||---|-|||-||||-||-||--||-|--||--|-|||-||---|-||-|","---|||--||||-||--|-|-|---||||-|-||-|||-|||---|||-|","-|--|--||||-||||--|||-||--|-||-||---|-|-||----||-|","|-||||-||||||||-||-||-|-|--||||||||--|-||-||--|---","|-||--||-|-||-|-|-|||||---|-|||||-----|||-||||||||","--||-||----|||||||----|--|||-|||||-||||-||-||-|-||","|--||-|----|-|||-|-|---||-|--||--||-||-|-|||-|-||-"}

    Returns: 1200

  15. {"-|---||---|-----||-|-|-||-|--|-||||----||-|||||||-","--||||||-||-----|--|---||--|--|-|---|||||||||-|-||","||||||---|-|------|||--|||-|-|-||-||--|-||-|||-|-|","||||---||--|-|--|--||-||||---|-|||-|--|----||||||-","---||-|--|-|||||||-----|-||--||||||---|-|-|--|||||","--|||-||-||||||-||--|-|||-|||-|-||-|||-||-|-||||||","|---||-||||-||||||||||-|--|-|||---|---||--|---||||","-|||--|-||-||-|||||||-|---------|||--||||-|--|||--","|-|||--|||||-|||||-|||||-|----||-|-||-|-|||||-||--","||-|--|-|---|---|-|-|----||||--|-|-||-|---|--|||-|","----|||---|--|||||-||---|-|||-|--|-||-|-|||---||||","||--||||||-||||-||------||---||||--||--||----||-||","|-----||---||||||||--||-|||--|||||||---|||-|||||-|","|-|||-----||--|-||--|||||||--||---||||---|-|-|-||-","||-|-||||-||||||||-|-|||--|||||---||-|||--|-|-||--","||||-|||-----||||-|---||-||--|-|-----|-||||||-||||","||||-|-|--|-----|-|--|-|-|--|||--||-|-|||--|--||-|","-|||||-|--||||||-|||||||-||-|||--||-||----||||-|-|","||-||-||||---||||-|-||-|-|--|||-------||--|-||||||","----|||||-||--|-|||||--|||-||||||-||||-|||--|-|-|-","||-||||||||||-||-||||||-||--||||-||--|--||-||--|--","||||--|-----||-||||||-|||-||-|----|||-||||||||-|||","||-||-||-||--||||-||||-|--|-||-|--||||-|-----|-|||","||-||||-|||-||-|||-|-|||-|-|-||||||--|||-|||-|--||","||||-|--||||-||-|-||--||---|--|-||--|||-||||-|--||","||-||-|||||||-|--|||---||||-|-||---||||--|-|--||||","|||||---|||-|||||||||-|-|-||||-||||-|||--|-|--|--|","||-|--|--|-|--||--||||--|-||-|--|--||||-|-||||---|","---|-||||-||||-|-----|--||||--|||||||||---|-||-||-","|---|--|-|||--|--|-----||-----|-|--||-|--||||-|||-","-||||-|||-|-||||||--|-|||||---|||-||--|||-|-|-|-||","|--||-||-||||-||||--||||||--|--||-||||--||||-|----","-||||---|-|--|||-|||--|||--||-||||||--|||-||-||-||","-||||---|||-|-|---||--|-|---|||-|-|---||-|||||-|-|","||--||-|-|||||-||||---|-|||||--|||||-||-|--|-|-||-","-|||||-----||||||-||||||||-||-|||--|--||--||--|||-","||||---||||-|||||||--||-|||-|-|||--||-|--||||--|||","||-|--|||||||-|||-|-||||-||-||------|----|-||---||","|||||-|-||--|||||||--||--|||||||-|||----|-|-||----","|-||||-|-||||-||--|-|||--|-|||-|----|--|--|||-||-|","||||||||---|-||||||||-||||||-|-|--||-||-||-|-||||-","-||-------|||||||----|||||--||||||-|||-||---|--|||","|-|-||-|||||---|-|-||-|-|||-|-|-|-|||||--|||||||--","--||-|||||-||-||-||||---||||-|||-|||||||--||-||||-","||-|-|--||||||--|---|-|||-||||-|||||-||-||||-|||||","||||||---||-||||-|||----|||||||-|---||-|||-|||--||","|-|-||-||---|--|--||||||||||-|-||--||||||--|||-|||","-|-||-||----|-||||--|-||-||-|--|||-||-|-||--|||--|","-----|||||||||||||--|||--||-|-|-|||-|||---||||---|","--|-|-|--||--|||||||-||-||||||||---|||||--|---||-|"}

    Returns: 1174

  16. {"||--|-|||||-|--|-|-|--|--|||-|--||||||||---||--|||","|||----||-|-----|-||||-||||--|-|-||-|||||-|-|||-||","|--|--|--||||---|||-||||----||||-||||-|||---|-|||-","|||-|-|||--|||||----|--|-|-|||-|||-||--||-||||||||","|-||||||||-||-|-|-|--||--||--||---||||-||||-|-----","|--||-||-|---|-|||-|-||-|-||--|---|---|---||-|||||","-||---||-||-|--||-|---|--||||--||||-|-|---|--||-||","||||-|||||||||||--|--|-|||-||-||-||||-|-||||-|||-|","||--|-|-|-|--|-||||-|--||-|||||||-||||||------||||","|--|||--|-||||-|-|-||||-||||-|||||-|-||----||---||","|--|-||-|-|-|||--||||||||--|||||--|--||-|-||||||--","|------|--|||||-||||||--|||-|--||---|-|||||-||||||","|||--||||||||-||---|-|--|-||--||||--|-||||-|-|-||-","-|-|||-|||--||||-|||||-||--||-|-|-|-||-|||||-|-|||","|||-||--|||-||||-||-|----|||-|-||||---|-||-|||---|","|||-|||--|||||-|--|||-||||||-|||||-||--||||||--|||","-|-|--|||---||--|-|-||||||-||||--||||-||--|-|||--|","|------|-|||-|----||-|-|-||||||||-|||-|-|-|-||-|--","-||-|||----|||-|--|||--|--|||||||-|-||||--|||-|||-","||||---|-|----|||--|-|||||||--|-||--|||-|---|-||||","||||--|||-|--|-||-|--|-|----|-|||||-|----||||||---","|----||||-||----|||----||||-||-||-|||||||-|||----|","|-|--||||--||||---||||--|--|-|---|--||-|||-|-|||-|","-|--||||-|-||--|||||-|-||||||----|-|||--|||-||||--","||||||-|||||-||-|-----|--|-|--|||||||--||-||---|-|","-----|||--||-|-||-|-|--|---||||--|||---|||||--||-|","||||--||---||---|---|--|---|-|-|-|||||---||-|---|-","-||-||-||-|||||-||--|---||||--|-|--|-|--|||-|-|||-","||||--|---||--||-||-|-|--|-|-||||-||--|-|-|----|-|","-|---|-|-|||-||--||-|||-|-|---||----||-|-||-|-||||","||-|-||||------|----|-|---|||||||-|||-||-||--|||||","-|||--||||--|--|--|||--|||-||||--||-|-|||-|-||--||","-||||||||-|||||||-|||-|-||-||||--||||-|--||||-|--|","|||||||--||-|||-|||-|-||||-|||---||--||||||---|-||","||-----||-|--||-|-|-||||---|||||||||-|-|||||||-|||","||||-||||||-||-|--|-||-||------|--||-|-||||--|||||","-||||-||-|||-|-|||-|------|||||||||-|------|-|||-|","|||-|--||---|--||-|||-|--|||-||-|--|---|||||||||||","-|||||--|||||||----|-|||-|||-|||||||||-|-||---||-|","-|||||-|-|||-|-|-|--||||||||---||-||--|--|||--||||","||||||--|-|-||||||-||||||||-|--|||-|||-|-----|-||-","-|-||-||-|||--|||-|-----|--||-||-|||--|-|||-||||||","|-----|||-|||-|--|||||-|||||||||-|--||---||-|--||-","|---|||||-|||||-||--|||--|-||||||-|||||--|--|-|--|","|||-|-|--|-|--|-|-|||----|---||||--||-|||-|||||||-","--||||-|||--|||-|-|---|||-||-||-||-|-||||-||||||||","-|--||---|-||--|-|||-||-|--|||-|||||-|||---|-|--|-","|||--|---||||-|--|--|------|-||||||||-|--|-|||||--","||||-|-|-|--|-|-|-|||-|-|-|||||||-|-|---|||-----||","|-|||||-|-|-||-|-|||-|-||-|||--||-||||--|--|--|--|"}

    Returns: 1218

  17. {"|||--||--||||---||-|---|--|||||--||-----|-|--||||-","-||--||-||||||||||||-||||||||--||||-|||||||||-||||","|-|-|-||||-||--||-|||-||--|-|||---||-||||||||-|--|","--|-||||-||--||-|-|||||-|||||-|||||-|||-||-|--||--","|||-|-|-|||-|||||-||-|||--||||-|-||-||-|||--|-||||","-|||||-|----|-|-||--|-|||||-||||-|||-|-|---|--||-|","||||-||--|-|-|||--|-|-|-|||-||||--|-||---|-||-||-|","||--------|||-|-||||||--|||||---|||--||-|||----|||","||-||||-----|--|||||||-||--|||-|-|--||||-|-|--|-||","|||-||||--||---|||--|-||-||---||||||--|--||-|-|-||","|-||--||||---|||||||-|--|-|||-||||-|||||-|||-||||-","-||----|-|-||-|-|-||||--||||-|-||--|-|-|||--|-||||","|----|||---|||||||||--|-||--|-|--|-|||-|||-||-|-|-","||||---||||||-|--|-||||-|||||||-|||---|-||--||||||","--|||||--||--|||-|||||-||--|||--||-|--|||||-|||--|","|||-|||-||-||--|-|||||---||||-|||||||-|--|-||-|-|-","|-||-|-||-||||--|-|||--||--||--|||-||||--|-|-||-|-","-----|||||||||-||-||-|-|-||||||-|---|--|-|-||-||||","-|||-|||-||-||-|--||-||---||-|-||||-||-||-|-|-|--|","|||--||-|-|-||-||||||-|||||||||-|---||||-||---||--","--|-|-||--|-|---|-|-|||||||--|---||-||-||-||-||--|","------|-||---||-||---|-|-|-||----||--||-|||||-|-||","|||-|-|-|-|||--|||-||||-||--|||-|||--||---|--||--|","||--|||---|-||-|-|-|||-|||||||--|||-||||------|-||","-||-|-||-|-|||-||-|---||||-||--|||-|-|||--|||||-||","-|-|||---|-|-|--|--|-|-|||-|--|---|-|||||--||--|||","-|-|-|-||-|||-|-|-|||---||||---||||--|-|--|-|-||||","|--|||||---|-||-|--|-|--|-|-|-||----|--|||-|||--||","-|--||||||||-||-||||--|-|||--||||||-|-||-||||||-|-","|--|-----|-|---||-|||||||-||-||-|||||--||---||-|-|","|--||--|-|-||||||-|||||||-|--||||--||--|||||-|--|-","||||||-||-||-||-||||--||||||--||||-||-||-|||||-|||","|||||-----|--||-|||||-||||-|--|-|-||-|-|-|||-|--|-","-|--||-||-||--|||--------||-|--||-||||-||-----|-||","-|-|--||||||--|--|--|--|||-||--||-|||---|----|-|||","|-|||||-||--||||||-|-||||||-|---||||-|--|-|||---|-","|||||-||-||||||||-|||-|-|||||--|--||||-||||||-|||-","|||-|-|---|--|-||---|||---|-||||||-|||-|--||--|--|","||-||--|--||---|||--|||-|||||--|-------||---||-|||","--|||--||||-||--|----||||--|||||-|-|--||||-|||||||","-|-||--|-||--||--|||-||-|||--||--||---|-|||-|||--|","|||-||||-||||||-|||-|----|-||-|--||||||||||||-||||","|||||||---||-||||---||-||-||--|-||||||-|||||--||-|","-|-|-|--|-||-||-||||||-||---|-|-|-||--|--||--|||||","||--|-|-|||---||-|---|||||-|------||||--|--|||||||","---|--||-|--||---||---||-|-|---|-|-|-|||---||-||||","||-||-||---||---|||-||||-||--|--||--||-|||--|---|-","---|-||---|-|---||--|||||||--|-----|---||--|||-||-","||||-|||----|||||---||-|||||-|-|||-|--||-|-|||--|-","|----|||-||-|--|---||||||||-|||||||-|---|-||-|-|||"}

    Returns: 1205

  18. {"|||||-|||||-|-|||-||---||||-|||||||-|-|||---|||||-","||--|-||--|-|-|---||||||||||---|||---|||||-|||||-|","--|||--|--||||-||||-|-||||||---||||-|-|||--||-||||","||-||-||-|||---|---|||||||||||||||-||-|||||-||-||-","|||--|-||---||||--|||-||||-|||-|--|-||||||-|||-|||","-|--|---|-||-||-|-|--||||--|-||-||-|--||--|-|||||-","---||-||--||-|-|-|||---|-||-|-|||-|-|--||-----||||","||-|-|-|-|--|||||||||--|--|||--|||||||||--||-|||||","-|||-|--|||||||---|-||||||-|-|-----|-||||--|--|---","|-|||-|-|-|-|||-||-|||||||-|||-||-||||||||--||||--","||-|||---|-||||||||-||||||-|||-|||-|-|||-|||||-||-","-|||-|-||-||--||||||-|||-|||-|-|-|-|-|-|-|||--|-|-","-|-|||||||-||||--|||----|--|||||-|-|||-|--|-----||","||||||||-|||||---||--||||||-|-----|||||-|||||--|||","|--|||--|--|-|||---||||-----||||||-|-||-||-|-|-|-|","||||||||||--||--|-|-|||-||-||||||-|--|-||-|-|||--|","-|||-|-||||-|||---|-|--|-|-||--|---||-|||-|--|-|-|","-|--|-|--|||-||--||||--||||-||-|------|--|-|-||-||","|-|--|||||----||||||-|||||||-|-|||-||----|||-||||-","-||||--|--|-|||-|-|--||-|||||---|-|-|-||-|-|---||-","-----|-|-|-|--|-|-|||||-|----||||----|||-||||||||-","|-||-|-|||-||-||--|||-||-|||-|--|||---||-|-|-||-|-","|||||-||||||||-|--|-|||||-|-|-|--|||||||---|---||-","|||||||||-||||---||-|--|||-||-----|||||-|-||||||-|","--||||-||||--|||--||-|---|||-||--|||||||||-|-|--||","|---|-||||||||--|||-|-|||-|-|||||||-|||-|||-|||-||","-||-|-|---|-|-|-|---||-||||--|||-||--||-||-|||--||","--|-|--||||||----||||-|||-||--|-||--||||---|-|---|","---||||||-|||-|-||||-||-|--|-||----|||-||||||-|-||","||-|||-|-|||--||-|-|||||--||----|---|||-|--|-||-||","||||-|--||--||||--||---|----||-||-|--|-||-|||||-||","|-|-|-|||||-||||----|||---------||--||||---|--|---","|----|----|||||---||||||--||----||||-||-|||-|-||||","-|-|||-||----||----|-||||-|||-|--|-||-|||--|-|||||","---||--|---||||-|-||||-||||-||-|-|||||-||||--||||-","-||||--|-|-||||-|-||---|-|||-|-|-----||||--|-|||||","|----|||-|-|||-|||||-|||-|-||-|---|-||-||-|-|--|||","-|||-||||-|||--|||--|--|-||||-|||---||||-||----|--","|-|-|||||||-||--||--|||||---||--|---||||----||--||","|||-|-||-|-|||--||--||-||-|||-|||-|-|||--|---||---","|-||--|-||||||-|-||-|||||----|||-|-||||-|||--|||||","||-||-|||-||--|||-|||-|---|||||---|-----||-||-|-|-","||--|-||---|--|-|||-|-|||||-|-|--|-||--|-||---|||-","--||---|||||-|-|||||-|--||||||--|---|--|--||||||||","||-|||-||---|||||-|||-|-|--||||-||||-||---|-|||-|-","-||||-|||-|-||||||-|||-|--|||||-||-||-|--||-|||||-","---|--||||-||||-|-|||--|--|---|--|--|-|-|-|||--||-","-|||-|-||||-|||-||-|||------|||-|||--||-||||-|||||","||||||-|||||||||-||-|-||||--||||-|-||-|-||||||||||","|||-|--|-----|----||--||--||-|-|||--|-|||-||--|--|"}

    Returns: 1211

  19. {"||-||---||||-|||||-|||-|||||--|||-||-|-||-||||||||","---|||-|||-|-||||---||||--||-----|||-|-|||-|-|||--","||-||||-|---||--|-|-|-||---|-|-||-|--|||||||--||--","-|-|-||||||||---|||-||||-|-|||--|||-|---|-||---||-","--||-|-|-||||-|---|-||-||--|||-||||--||-||-|--|-||","-|---|----||-|-||||-||||-|-|--|--|||||-||-|||-||-|","|-||||||-|--||--|||-|---||--||||||||--|---|||-|-|-","|||-||--||-|-|--|||||-|||-|--|-|-|||-|||||-|---||-","|-|-|--||||||--|||--||-||||---|-|||||||||||-||--|-","|-||-|||-||-|||---||---||--||--|-|---||||-|-||--|-","-|---||||-||-|-||||--||-||-||-|---|--|||-|||-----|","|-|--||--||-||-|-|||||||-||-||||||----|-|---|-|||-","-|-|--||||--|--|--||--||||-|-|-||||--|||-||||-||||","|---|-|-|--|--|||-||----|||||--|---||-|||||---|--|","----||||||||-|-|----|||||--||||||--|||-||||||----|","|--||-|-||||-||-|--||-|||||||-||||||||-|-|||-|||--","||||||-|-||-|||||||--|||----|||-|||-|--|||-||||-||","||||-||-||-||-|-----||--|--|||-||-||||---|-|-|||--","|||-||||-||-|-||--||||-||-|||-||--|-|----||--||||-","|---||--|-|||-||-||-|-||-|--||--|-|-|--|--|---||||","|||--|||-||-||-||||-|||||--|-|||||||--||||-|--||--","-||---||||-|||---|--||-|-----|-|-|||---|---||---|-","||-||-|-|||||-|||-||-||-|||---|||--||--||||||---|-","||--|-|-|||--||--||-|||-|---||||||-||---|||-||||-|","||---||---||--|-||-|---||||-||||-----|--||---|-|||","|-||-|||-|----|-|-||||---|||||-||-|||||-|||-|-||-|","-|---||||-|-||--|-|||||----||||-||-||||--||||||-|-","--|-|||||--|-|||---|||---|||--||-|-|-|-||---|-|-|-","||||--||||||-|||||--|||||-|-||-|-|-|||||---|||||||","-|||-||----|||||--------||-|-||--|-||||-|||-||-||-","-|||||--|-|-|---|-||--|||-|||||---||-|--|--||--|-|","|-||-|||--------|--||||--||-|||||--|---|||-----||-","--||-|-|---||||||||-|-|||||||-||||-||-||-|-||||-||","---|||||||--|||-|||||||||||---|---|||-||-||--|--||","---|-|-|-|-||||--||-||||------||---|-|-||||---||||","|--|--|||-||-||-||---||-|---|||--|-||-||-|||||-|-|","-|--||||||-|---||||-|--|-||-||||||-|||-|-|--||-|||","|---|--||||||--||||--||-|||--|-|-|||||-|||||--||||","|||||----|||-|--|||||-||--|-||||||||-||--||||-||-|","||-|-|-||||-|||||||||-||||-||--||||||-|--|||||--|-","|--|------||--||---|||--|||-|--|||-|-|||--||--||-|","||||||-|||---||||-||-|-|-|||-||||||||||-|||-|||--|","|||||--||-||-|--||--||-|-|||--||||||||||||||||-|--","-||-||||||||||--|||-||-|||||||||-||----|--|--|-|||","|||---|||-|-|||-||-------|-||||-|-|||-|-||-|||-|-|","||||-||-||--||-||----||--|-|-||-|--||----||-||||-|","||-|||-|--||-||-||||||||-|||||||||-|-||||-|------|","|--|--||||||||---||||-||--||-|-|-|||-|||-|||||||||","||||---|-|--|-||--|||-||||||-|||---||-||-||-|||---","--||-|||----|||--||-||||-||||||-|--|||||----|-||-|"}

    Returns: 1210

  20. {"||||||||||||-||||||||||||-||----|||||||||-|-|-|-||","|-|-|--|-|--|||-|||||-|||------|-||-||||||||--||-|","-|--|-||||||||--|--|--|||-||--||--|---||-|||-|||||","|-|||--|||-||-|-|||||-|||-|-|||--|-||-|||-||||||||","||-||||||||--|-|--||-||-||-|-|-||--|----||||----||","-|||---|||--|-|-|-|-|||---|--|--||||--------||||-|","--||||-|--||------||-|||--|-|--||||-|-||--||||-|||","|-----||||||-||-|--|---|--|||||-|-||-|||--|-|-|-|-","-||--|-|---|-|-|--||-||||||||-|-||||--|-|--||-|---","-||-|-||--|--|||||---||||||--|-|||-|||-||---|--|--","-||||-|-||--|--|-|-|-|--||--||-|-|-||--|-||-|||--|","--|||--|-||---|-|---||-|--||-|-||||--|-||-|---|||-","||||-|||--|||---||-||||||--|-----||||--||----|-|-|","||||||-|||-|||||-|---|-|-|-|-||---||-|-|-|-|---|||","|--||||-|--|||||-|||--||-||||-|||-|-|-||||-|-|-|||","|||-|-||||||-|-|---------|-|-||-||-||--||-||--|---","|-|--||-||||-||-|-||||-|||---|-|-|-|||||||||--||||","|-|||-||||--|||-|||-----||-|||---||-|||||||||---|-","|||--|----|-|-||-||||||-||||---|||||-||-||||||-|||","|||-||-||--||-|||||||||||-||||||-||||-||||||||||||","|-|||-|||-|||--|--|||-|-|||||||-||-|-|||||--||||-|","|||-||-|||-|-||||-||--||||-||--||---|--|--||-|-|||","|-||-|--|||-|||-|||||-|--||---||||-|---|||||-|--||","--|-|-|---||||||-|---||---||-|-|-|||-|----||-|-|--","-|-|--|||-|--||-||-|||||||-|-|-|||||-||||---||-|-|","|----|--|||--|-||||-|---|||||--------|--|--|||||||","|-||||||-|-|||-----|||||-|-|-|--||--||-|-|-|||-||-","-|||||||||-|-|-|||||--|||--||||||||--||-|---||-||-","-|||||-|||-|||-|-|---|-||||-|||-||||-||-|------|||","||-||||||||-|||--||--||-----||-|--||-||||-|--|||-|","|-|-|-|-|-|-||--||||----|-|||---|-|-|-|--||-|-|--|","|--|---||||||-||-|--|-||||||||||-|-|-|-|||-|-|-|||","||-|--||-|||--||-|||----|||-||-|--|--||||||--|||||","-||-||||||||--||||-|||--|||||-|||-|||-||-|-|-|||||","-|||||--||-|||-||-|-|-|-||||---|||||-||-|||--|||||","|||||---|-||-|-----||||-|-|--||-|||||||||||||-----","--||||---|--|||-||--||--|-|-|--|-|-||-||-|||--||||","|--||-|||----|--|||||-||||||----||||-|-||-||||||||","|-|--|-|-|-||---|--||-|||||||-----||||||||--|||-||","--||---|||-||||-|||||--|-||--||--|--||||---||-|||-","|||-|--|||||---|||-|-||||||-||---|-|||-||||||-||||","||--||--||-|-||||-|--||||-||-||-|-|--|-|-||-|-||-|","|--|||||||--|||||-|-|||||||-||||-|-|--||--||-|-|||","||||||||-||---|-|||||-|||-|-|----||||-||||-||--|||","|||-||--||||-|||-|-|--||---|||-||---|---|--|-||---","|-|||-||--|-||--|-||||-||--||---||--|-|-||---|--|-","-||-|-||-|-|||||-||-||||-|---||||||||--|||--||-|||","----|--|-|||||-|--||-||-||-|||-|--||||----|||||-||","|--|-|----|||--|||||||--||-|-|-||----||||-|||-|--|","||-|---|--|||-||-|||||||-|-||||||||--||-|||-|-|||-"}

    Returns: 1226

  21. {"||--|||---||||-||---|-|-|||||--|----|||||||||||||-","||||||--||-|-||-||||||||-||||||--|-|||---------|-|","|||-|||-|||||---|||-||-|-||--||-||||||||||-|-|||-|","-|-|--|-|||-|----|--|-||||---||---|||--|||||--||||","-||-|--|||||--|---|||||-|---||||---|-|--||-||--||-","|-|||||----|||-|-|-||-|||-|||-||||||-|||||||---|||","|||||-||||-||||||-|-|--||-||||-||-||-||-|||-||-||-","--|-|||--|-||||||||-|-||||||-||-|-||||-|||||||---|","||||--||-|||-|||||-|---|||||--||||--|||-|-|||||||-","-||-|--|-|--|||-|---||---|---|----|--||--|||-|-||-","||||---||--||||||--|-|-||--|-|||--|-|||---||||-|||","||||-||||--||-|||--||||-|--||||-|-||-|-|-|||-||-||","||||||-|-|||||||--|||||---|-||-|-||||-|---||--|||-","-||-||-||||--|-|--||||-||--||||---|-----||--|--|--","|-||||-||-||||||||||||-||---||-|--|||||||||-|-||--","|--|||-||-|||||--||---||||-||-|----|||--|--|-|-|||","-||--|-||||||-||-|----||--|||||-||-|||---|--|||--|","|||-|||-||||----|-|||||--||||-|-|---|---||||-|--||","|-||-|------|--||-||-||-||||||||-||-||-|-|--|-|-||","---||-|-|---|-|||-|-|---||||||-|--||||---||--|||||","---||-|||-|-|-|-|-||||--||||------||-|||-||--|-|-|","||||-|-|||--||-|||-||-|||||||||--|||-||-|||---||--","|--|||||||-|-|-|--|||||||-|||-|---|----|----|-||||","||-|||---||---|||-|-|--|||||-|||---||||--|||||--|-","||-|-|-||||||--|-||||||||-|--||-|||-||--||-|-|-|--","--|||||||-|-|-|||-|-|-||--|||||-|||-|--|--||||---|","--||-|--|-||--|-|-|-||-|-|-|||||||--||||-|--||||--","|-|-|-|-||-||--||-|-||-|--|-||--|--||-|||-||||----","|---|||||||--|--|-||||--||||--|-|-|-||--|-|--||||-","|||||-|-||||||--|||-||||-|-|--|---|||-|-||||-|--||","|--||||----|----||----||||||--|-||||||--|||||||--|","|||-|----|--|-|--|-|||||||-|||--||-|-|||-|-|||--|-","||--|||-|---||||--|--|||||--|----|-||||||||--||-||","|||-|||-|||||--|||-||-|||||-||-|-|---|||-||-|-|-|-","|-|---|||-|-||-||||-||-|-|--|---|-|||--|||-||||||-","|-||--||-||-||||-||||-||-|--|-||||||||||||----|--|","|--|||-|-|-|||||||-||---|||--|-|--||--|||||||--|||","||--|--|-||||-||--|-||||||--|--|-----|--|-||-||||-","-||---|-|-----|-|||||-||--|--||---|||||-|-----|---","|-||--||-||||||-||---||||-||-|---||-|--||||||--|||","----|-||-||||-|||||--|-||-||||-||-|||-|----|---|-|","|-||--|||---|--||||-||---|-|||-|-|--|---||--|||-|-","|||||-|||---|-|||-||||||||||-|||||||--|||-|||||||-","||||-||----||-|--------|--|||-----|--||||||-|---|-","|-||-|||-||||-||||||-|-|-|||||||-|-|-|||-|||||||||","-|-|-|-||---||||-|--|--|-||---|--||---|-|||-||||-|","--||-|||--|-----|--|||||--||-|--|--|---|||-||-|-||","|-|--||--||--||||||---||--||||-|-|-|||-|||||-|-|||","|--|--||----|||--|-|----|-|-|--||||||||--||-||-|-|","--||-|-|----|--||-|--|-||-|||||||||||----||--||--|"}

    Returns: 1201

  22. {"--|||||||-|||-||-||||||--||-||--||-||||-||-||-|-||","---|-|-|||-|--|||-|-||||-|-||-||-||||||-||||||--||","--|||--|---|-|-||-|-|||-||||-|-||-|||-||-||-|||---","-||--||||||||-||-|||-||||-|||-|-|||-|||||||-|--|||","|-||--|||||-||--|-|||---||-|||-|-|||------|||-|-|-","--|||-|||||-|--||||---|||-|---|--|||-||-|||-||-|||","|-||||--||-|----|||-||---||||||-||--|---|-|||||-||","|---||-||--||-|||||||--|-||||||---|--|||-||---|-||","|-|||---|||--||-|||-|||----|-|||---||-|||-||-|||||","-|||--------|-||-||-||-||---||-|---|----|---|||-|-","-||-|||||-|-|||||||||||||---|--||---||-||--||-||||","||-|--||----|--||||||--|||||----|||--|----|---|-||","|||-||||-|-|--|-|||-||||-|||-||||-|||||----||-||-|","-||||-||-|--|-||-||----|-||-|---|||-||-|-|||-|-|||","|||||--||-||-|--|-|||-||||--||||||---||||||--|||-|","||||||-|||-||-||--|--||--|-||--||-|||-|-|--||--||-","|-||||-|-||-|||--||-||-|||--|||||-|-|-||----||||||","||||||-||-|-|-||||||||||||||||||-|||---||-|-||-|-|","|||--|||-------|-|--|-|--|-|-||||||--||||||--|-|--","|--||--||-|-|-||-----|||||--|-||||-||||||-|||||-||","-|-|-|||||-||||--|--||-||||-||-|-|||-|||---|-||--|","|-----||||-|-|-|---|||||||-|||||-|--|-||-|-|||-||-","||---|--|||-|||||-|-|-|-|-|--|---|||--||||---|-||-","--||-||-||||-||-||||-|---|||-||-|--|-||-|||-|--|--","-||--|||-|||||-|||-||-|-|--|----||-|-|--|-||---||-","|||||||--||------||-|||-|-----|||||||-|||||-|||--|","--|-|||||-|-|||-||||||-|-||||||||-|--|-||-|-||--||","||---|||-|-|||---|--|-||-|||||-|||-||-|||||-||-|--","||||||--|||-|||-||--||--|-|-|-|---|-|||||||||-||||","||-||||-|----|--|--|---|-|||-|-||-|-|||--|||||-||-","-|--|-|||||||-||-|--|||||-||-||-||----||-|--|--|||","|-|||-||-|-|||--|||-|||||||---||---||-----|-|-|--|","|||||-||-|-||||||--||-||||-|-|---|--|||||||-|||-|-","---|||-||-|-----|||-|||||||-|-----||||--||-|||||-|","||-||--|-|---||||-||||||||||||-|-|||-|--|--||-||--","||||-|-|-||---||||-|-||---|||---|-||||||--|-|-|-|-","||||||-||-|---|||----|-|-|--||----||||-|-|-||||||-","|||--||---||--|-|-|--||--|--------|---|-|-|-||-||-","-|||-|------||-|||--||||||||||-|--|||-|---||||-||-","||-|-|||||--|-||||||---||||---||-||---||-|----||||","|-|||-||-|--||-|-|--|||||||||||----|-|--|-|-|||---","|-|||||-||--||||||-||-|----|---|||-|-|||||||-|||||","||-||-|||||||-|||-|-|-|-|----|-|-||||||||-|-|--|||","|||--|||||-|--|-||||-|||--||-||||-||||--|-|-||-|--","|||-|||||||||||------||-|||-||||||||||||||||-||---","--||||---|||--|-||-||---|-|-||||||||--|||-||-|-|-|","||---|--|-|||--|-||||----||-|-|||||-|||----|||-||-","-|||||-||---|--|---|||||||-||-|---||-|||--|||||-|-","-|||--||-||-|||-|-||-||||-|-|-||-|-||-||-||-||-|-|","|||--||-||--|-|-|-|-||-|-||--|-||--|||||-||||--|-|"}

    Returns: 1245

  23. {"-|||---|--||-||||-||-||-|---|||-|-|||||||-||-|||-|","||||--|--||-||-|||-||----|||-||-||||||||-|||--||-|","|-||---||||-|---|-|--||--|||||---||--|||-||----|||","||---||-||||||-----|----||||||--||||||-|---||--||-","--||-|--|||||||---|--|||-|-|--|-|-|---|--|||----||","||--||-||||--||-||-||||-||||-||||-|||--|--|-||-|||","---||-|||----|--|-|||--|||||-||||-||--|||||----|||","|||||||||--|-||-|||-||--|||---|--||-||||-|-||||-||","-|||||-|--|--|--|-|-|||--|||||||||-|----|-|--|--|-","|||||||---|||||||||--||---||-||--||--|||----||----","|-||-|-||--|--|||-||-|--|||-|-|-||-|-||||||---||||","||--||||||-|--|||||----|-|-||||||-|||-||----|||-|-","||-|-||||-||---||||--|-||-||||-||-||--|-||||-|-||-","||--|-||||-||||||||---|||--|---||||||--|-|||-||-||","|-|--||--|-|--|-||||--|-|-|-||--||||||----||-||---","|-||-||---|--|||||||--|||||||--||-||--||-||-|-||--","||---|----||||--||-||--||-||||||-||||-|----|--|---","|-||-|||---|-||-|-|-|-|||-||||||||||||-||-||----||","---|-|--||-||--|-||-||||||-||-|--|---||-|-|--|||--","--||||-|||||-----|||---|-|-|-|-|--|-|-----|----|-|","-||||||--|--||||||--|-||--||------|||-||-||-|----|","-|-|||-||||||-||-|-|||||||-----||--|||-|-||||-----","--||-||-|||-|--|-||||||||||-|-|-|--|||||--||-|||--","-|---|||--||-|||||||||-||-|||-|--||-|-||||-|||||||","|--||-||||||||--|-|||----|||-||-|-||||||||--||-|||","|--||-|-|||||--|-|-||-|-|-|-||-|||-|||||-|||||-|||","----|--||||------|-||-|||--||---||--|-||--|||-|---","|||--|-|||-|||||-|-||--||-|-|-|||-|-|-||||-||-|||-","|-||-|-||||--|-|--||---|-|||---|||-||---|-|-||----","|||||--||--||||||||--|-||-|||||----|-||||||-||||--","----|-|--||------||-||-|||-----|-||-||||-|||||-|||","-|----||---|-||-||-||||||-||---|-|-|||||-|||||||-|","||----|-|--|--||||-|||-|||--|--||--||||--||||---||","|--|||-------||--|-||||-||||--|||-||--||-|--|-||||","|||||-||||---|--|||--|-||||||||-|-||||----||---|--","|||-|-|-|-||||||-|-|||--|-|-|-|-|--||||-||||-|||-|","|||-|-|||-||-|---||||-||--|||--|-||--||||||||||---","||-||-|||---|-|-|-||--||||--|-|--|||-|||||----|||-","|||||||||-||-||-|-|-|---||-||--|---||-|||---|||-|-","-|----|-|-||-|||||||||-|-|-|---|-||||||||-||--|---","-|-||--|||||---||-||-||-|||||||-||--|||-|--|-----|","-||||-|-|-|||||-||||-|||||--|||---|----||-|||||||-","--|||--||||--|-|-|||-|--|||||----||||-|||-||----||","|-|-|-||--||-|||||-|-||--|---|--|||||-|||||-|-||--","|-||||---|-||-|||||||||||||-|||-|-|||-||--||--|||-","||--|-|--|-|||-|-|||||||||--||-||-|--||---|||-|-|-","|||-|--|||--||--|--||||-||--|-|-|||||||||--|--|||-","|||-|||-|||||||-|||-||-|-|||-||--||-|-||||||||-|||","|-|||-||-||-|||||---||-||-|||--|-|-|||-||-|||--|-|","|-|-|||||--|-||-|||---|||----||||-||---|-|--||--||"}

    Returns: 1196

  24. {"||||--||--||--||---||-|-|||-||---|-|-|--|||||-|-|-","||-|-|-|-|----|---|--|--|||||--|--|--||-||-||-||--","-|||-|-|--||-|||||----|-|-||||-|--||||-||--|-|-|--","||--|--|--||||||-||-||-||----||--||----||-|||-||||","||-|-||-|---||-|||-||||-|----|---||||-|--|||-|--|-","--||-|-|-|||||--|---|-|--|-||-|-|||-|-||---|-|-||-","---|-|--|-|||||-|||||||||||||---|||--|-|----||-|-|","|-|-||||-|-||-|||--|--|-||||-|-||||-||||-|---||--|","|||-||||-||----|--|||---||-|--|--||-||-|---|||-||-","|||-||-|-|||-||-|---|||-|||--|||-----|-|-||-|--|-|","-||--|--||--||||-|||-|--|--|||-||--|-|||||-|-|||--","||-||||||||||||||-||-||||--|-|---|||||--||-||||-|-","|---|||||--|----||-|||||-||||-|--|-|-|-|||||||||||","-|-|--|---||--|||--|-||---|||--|||-|-||||-||--|---","|-|-|-||||||-|---||-|||-||--|||||-||--|----|--||||","-|-|--|-|-||||-||---||||-|-||-|||-|-|--||||||||||-","||-|||-||--||---|||---|-||||-----||||-|-||||||--||","---||-|||--|-|--|-----||--|--|||-||||||--|--||----","|-||-|||--||||||||-|-|-|-|||----|||||||||||-||---|","||-||||||||||-|||-|---||-|||-|--||||||-|-||||||-||","|||-||||-|-|||-||||||-|||||||||||||||--|--||--||-|","-||-|-|-|||-||-|-||--|-|-|||||-|-|||||-|-|--|-||-|","|||||||-|-||---||||--|||-|-||||||-||---|||||-||---","||-----|-|||||||||-||||----|-|||-||-|||||-||||---|","||-|-|||-||---|-|-|||------|--|-||-|--|--|||||||||","||-||-||--||||||||-||-||--|-||||||-||||-||-|-||||-","-|||-|-|--||-||-||||||-||-||-||-|--|||-||--||||||-","||||--||-||-|-||--|-||||---||-||||-||---||||--|--|","|---||--|||||------||-||||--|||-||||---||||---||||","----||||-||---||---||-|||||||-||--|||---|--|-|||||","|||||-|||-||-||||||-||--|-|-||-|||--|||-||-----|-|","||-|-------||||-||-||-||--|-||-|--||-|-|||--|||--|","-||--|-|-||||||-|-|-|-|--|---||-|||||||--|---|||-|","|||-|-||-|-|-|||-||--|--|||--||--||||||-||||--|-|-","|-|--|---|-|||||||||||||||-||||-||-||||-||||--||-|","|||---|||||||-|||-||----|-|---||||-||||||--|--|||-","-||--||||||---||-||-||-|-|--||-|-|||||-|--|-||--||","-|-|||-|||||----|--||||-|-|-||-|--||---|||-|||||||","||--|-|||-|---|||-|--||-|-|-||--|--||||||||||-|--|","--||-||||||-|-|||-||-||||-||||||-||--|-||-||--||--","-||---|-|||--||||---|--|-|--|-|-|-||-|||-|||||||-|","-|||-|------||-|||||||||-|----||||||-|---|||--||-|","-||---||||-||||||-|||----|||-|||----||--|||||--||-","|||-----|----||-|--|||-|-|-|||---|||-||-|---||--||","|-||-||||------|---|||---||-||-|-||-|-|||-|||--|-|","||||-|||---|-|||||||--|-|--||---|---|||||-|-|||-||","--|----|||-||---|---|||-|---||-|||--|-||--|--|||||","|-|--|-||--|||||-|||||||-|-|||-||-|-|--||-|||||--|","-|||||-|--|||-|||--||-|||-|--|--|-||||-|||-||||-||","||------||||-|||||||-||-|--|||||-|||-|-|-|||||---|"}

    Returns: 1219

  25. {"|-|||-|||||--|||--|---|-|--||-||-|--|---|||-|-||--","|--|||----|-|||-|||||--|||-|||||--|||-||--||||-|--","-||||||-|-|||-||---||-|-||-||----||||--||-|--||--|","|-|||--|||------|-|-|-|-|||-||--|-|||||||--|-|||-|","|--||||--|||||-|--||-|||----||-|||||||-||||||-|-|-","||||---||--|--|-----||-||||-|----||||--|-------||-","-||||||-||||--|||||-|||-|||---|-|||-|-|||-||-|--||","||-||--|||||--||-||---||-||||--||||||||-|-|||-|--|","-||--||||-|--||-||||||-|--|-|--||||-|-|--|||||||--","--||||--|---|---||------|-|||-|-||-|--||||-|---|--","---|||-||||||||-|--|---|-|-|||-||--||-|-||-|||||||","-|-||-|||---|||||||-||-||||-||-||--||||-||---||||-","|-||-||||-|-|--|||----|||||---||||--|---||---|--|-","||||-|-|||-|||--||||||-||||||-||||-||--|-|||-||||-","|-|-|--|-||-||||-||-|---|||-|-||---||||||-|-||-|||","|||-|--|---||---||||--|-|-||||-|||||--|-|--|--||||","--||-||||||-||||||||-||--||-|--||-||||||-|||||-|||","|||--||||---|--|-|||--|-||||||||||-|-|---|-|||||||","|||||-|--||--|-||||||||-||-|-|---|||---||--|||||--","-||||||||||||--|--|--|||----|||||-|-|||-|||-|--|||","-|-||--|---|----||--||||||-|||||||-|||-|-|-||-||||","|||||--|-|||||-||||||-|||-|||||-|-||---||-||||--||","|---|-||||-||||-|||--||||--||----||-||-||---|----|","-||||--|||||---|-||--||-|||||||||-|-|-|-||-|||||-|","|-|-|||||-||-||----|||---||-|--||-|||-|--|||-||-|-","||---||||||----|-|||||||---||---||||||||-|-|-|-||-","-|-||-|||||--||-|||--||-||---|-|||||--|-|||||--||-","|||-|||-|---|--|--|||-----|---||-|||--|-||--|||--|","-||-|----|-------|-||--|-----|-|--|||-||||-|-||||-","|||||--||-||||----||-|-|-|||-||-||-||-|--|-|||-||-","-|-|||-|||-||||-|---|--|-||||-----|||----|--||||--","|--|||--||||||-|-|||||--||-|-||-----||||--||-|-||-","|||-||||-|----|-|-||||||||||-|||-|||-|---||---|||-","||-|-||---|---|||||||||-|||||--||||----||-|-|-|||-","-|-|||||-|---|-||||||---|---||||--||||||||-|||-|--","||---|---||||||||-|||||||----|||||----|-|-||||-|--","|-|||||--||||||||||-|--|-||||---|||||||----||||||-","-|-|||--|||-|||-|||||||--||--||-|-|-|-|||-||----|-","-|-||||||-|-----|||--|-|-|-||--|||||-|-|-||||-|-||","-||-|-|--|-|-|-|--||-|-|||||||||-||||-|-||---|-|||","--||-|||--||-|-|-|---|||--|-||||||---||||||||||--|","||||--|-||-||-|--|||||||---||---|-||||--||||-||-|-","||||||||||--|--|-||-|-||||||||||||-|||||--|--||-||","-|||-|||--|---||||-|||||-|-|--||----|---|-||||||||","-|||-||---|-|||-|--|||--|-----|||||-|--|--||-|-|||","-|-||||-|-||||||||-||-|-||||-||||-|-||-|||||||||||","---||||--|||||||-|-|-||||--||||-|-|||||-|-----|-||","|-||-|||||||-||||||||---|||-|-|-||||-||-||||--||||","|-----||||-|-||-||---||||-|----|-||--||||-|-|-|-|-","|-|---|||-|----||--||||||-|-||--|||||||||-|-||||||"}

    Returns: 1206

  26. {"|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|","|"}

    Returns: 1

  27. {"--------------------------------------------------"}

    Returns: 1

  28. {"-------|","-||||---","||-||--|","-|--||--","-|-|--||","|---|---","-|---||-","|-|-----"}

    Returns: 36

  29. {"|-","||","--","--","|-","|-"}

    Returns: 8

  30. {"---|-","-----","-||--","-|---","|||--","|----","||-|-"}

    Returns: 18

  31. {"-|-|","-|--","--|-"}

    Returns: 9

  32. {"--||"}

    Returns: 3

  33. {"|","-"}

    Returns: 2

  34. {"--|--","-||--","||-|-","|-|--","-----","|----","|-||-","|---|"}

    Returns: 22

  35. {"--|---|||-","|--|-|||--","|||--|--||","-|||---|-|","|-||--||--","-|--|-|---"}

    Returns: 35

  36. {"-|--||-|-|","||--|-|-|-","|---|-|---"}

    Returns: 19

  37. {"-||","---","--|","--|","|-|","--|"}

    Returns: 10

  38. {"---|--|||-|||-|-|---|--||","-|||--|------|---|||--|--","-|||--||-||-|---|--||--|-","|||---|-|||-|-------|----","-|------|---|||||--||||-|","----|-|--|----||------||-","---|||---|-|--|--|-|--|--","-|--||---|---|-|--|||---|","|-|-||||-------|---||-|--","--|||-||--||||---|----|||","|-----|---------|-----|--","--|-||-||-----|--||-||-||","---|||-----|-----|-|-||--","|||-||--|-|||--|----|-|||","-||------|------||-|||---","||--||-|-|-|||---||-||-|-","|---|-||--|--|-|--------|","-----|||--||--||||---|-||","-|---||-|---|--|--|--|-|-","||---|-----||---|----||-|","||--------|-|-||-|||--|-|","-||||--|-||-|------||||-|","|--|-|||----|--|-|---|-|-","|--|-|-||-|||-----||--|-|","----|--|--||--||-|----|||","----|-----||--||---------","--||--|-|-------|--|---||","-|----||-----||--|--|-|-|","-|-|-|||------|-|--|--|--","|-||---|-|---|---||-----|","|||--|--|||-|---|---|--|-","-|--|-||--|||--|||-|-||--","|--||-||--||--||------|-|","------|--|-|-----||------","-----||-|----||--||--|---","------|--|-|--||------|||","-|||||-------|------|----","|--||-||--||--|--||-||-|-","-|--||---|--||-||||-|--||"}

    Returns: 487

  39. {"|--|------||-|-|--|||---||-|||--|||-","-|--|-|--|---|---------|----|--||--|","---||---|---|-------||--|||--|----||","||-||----|-----|-|--||||-|--|-|-----","|--||---|-||--||||----------------||","|-|-------|||--|-|||---------|----||","-------|----|----||||---|--|-----|-|","------||-----|----|-|-|-|-----|---|-","||-|-|--||--|-||||---|----|-|-|-||--","----|-----|--|-----------|---||-|--|","---------|-|--|||-|-------||-||--|--","-------|-||--|-|----|----|---|-|--||","--|-|-----|--|-|-|--||-|||--|--||---","|-||---|-|||---|-------|--|-||----||","||--|---|-|-|--|--|----||-----|-----","-|---|--|||||--||-|------||||-|-|---","|||----|--|-||||--|-||--||----|-||--","-||-||--|----|---|-----|-||--|------","--|-|----|||---|-|-||-|||--||-|--|||","|---|------|-||----|--||----------||","||--|||||--|--||-|-|-|-||--|||||-||-","-|---|-|----|-|||-|||-||-|--|||-|---","---|---||-||--|-||-||----||--|--|---","-|-||----|-|---|------||-|----|-----","--||-|||--|||-||--|--|-|---|||----|-","--|-|----|-----|--|-|-|-|-|--||-||--","-||-|--|---|-|-|--|||-||||-||----|||","|---|-------|--||-|----|||||||----|-","-|--|----|--|---|---|-||--|----||-||","-||-||||---|-||-|-|-----|--|---|--|-","--||--|||-|||-|-|--|---|--|||-||-|||","-||--|--|---|-----|-||---|-||||||--|","||-||-|---|---|-|||-------||-----||-","---|--|-|-|||-----|-----------||--|-","|--|----|||||||-|---|---|---|--|-|||","--|--------||--|--|-||-|--|||-|-|---","|-|||-|-|||--|-------|----|---|-|--|"}

    Returns: 652

  40. {"--|-------|-----|-|---|-","-|----||-||-|||---||--|-","-||---||--||||-||-|---|-","|||-|---|-|-------|---||","---|-||----||-----|-||--","----|--||--|---|-|-|----","||------|--||-----|--|-|","----|--|----|--|-||---|-","-------|--|||----||----|","||||--|--||---|-|-||--|-","||||-|||-||||---|-----||","|-|---||||--|----||-||--","-----|--|||----|||||--|-","-|-||---|||-||||--------","||-||||--|---||||--||---","--|---|--|-----|||-||---","-|--||||----|-|-|||-||--","||--|--|---|-|-|---|-|-|","||----|--|----|-----|-|-","----|-|||----|-|||------","--|--|||||-|--||--|--||-","---|-|-||-|-|--|--|||||-","-|||--||-|||----|------|","||-----|-|||----|---||-|","-||-||||-|--|-------|||-","--|-||-|-||---------||--"}

    Returns: 299

  41. {"---------|---|||||-|-|-|","|---|--||-||-||----|----","-|||-|--||---||-||-|----","-||--||-||----||--|||---","-|-|||-||---|-----||-||-","|-|-|---------|||-||---|","-|-|-|---||---|---------","|--||---||||-|||||--||--","--|||-|---|-|--||-||--|-","--|||---||--|-|-----|--|","-|--|---|-------||--|--|"}

    Returns: 134

  42. {"-","-","-","-","-","-","-","|","|","-","-","-","-","-","-","-","-","-","|","|","-","|","|","-","|","-","|","-","|","-","|"}

    Returns: 28

  43. {"-|---|-","|-||-||","--|||-|","|---|--","------|","-|--|-|","|----|-","-||-||-","----|||","||-|---","--|--|-","||-||-|","|-||--|","-|-|--|","-------","----|--","--|--|-","|----|-","-------","----|-|","||--|--","|--||||","-|-|---"}

    Returns: 89

  44. {"-----||---||-|-|-----||---||||---------|-||||||","--||||--||-||--||----|-||||---||------||----|--"}

    Returns: 50

  45. {"||---||-|-|||-||--|-|-|-","----|||-||---|--||--||||","|||--|------||-|----||||","----|--||----|-----|||-|","--------|---|-------||||","-|||-|--|--||------|-|--","-|||||---||----|---|||--","---||-|-|-|-----|--|----","-||---|--||-----|-----||","|--|||||--||||----|-|-||","|-|-|--||---|||-|-|-||||","-|---|-|-||||---||-|---|","--------|-----|--|-|-|||","--|--||||---|-|||||----|","--|--|||-|----|---|||-||","|-|-|-|-------|--||--|-|","-----|||-||--|||-|--|---","|--|------|------|-|-|--","||----|---||--|-|-|||---","--|-||-||-|---|--||---|-","---|----|--|||--|--||--|","------|---||--||--|----|","--|-----|-|--|||-|-|-|--","-|---|---|-||--|--|-|---","----|---|---||-|--------","|-|---||-||||---|-------","-|||---|--|-||||---|-|--","-|-|-----||-|||--||-||-|","||-|-||-|---|---|--|----","---|||-|-|-|---||----|--","--|||||------||||---|---","-----|-|||||-|-||--|----","--|----|||------||------","--||--||-|--||||-||-|||-","-||--|----||-|-|-------|","-||---|-----|||--|-|-|||","-----||---|||-|-------||","||-||---|-|-|--||-|----|","|----|--|-|-|---||--||-|","|---|---||-------||--||-","-||-----|-|----|--|-|||-","||-|-|-|-||--||--|||--|-","-||-----|------|------||","--|---||--||-|--||--|||-","--||||---|----|||-|--|-|","-|--|----|---|-|------||","-----||---|----|-|||----","|||--|-|--|-|--|-----|-|"}

    Returns: 571

  46. {"||-||||||--|--|||--|-||--","||--|--|----|---|-|||--|-","||--|-|-|--|---|---||---|","-------|-------|||||-----","--|--||--|---||||-|-|---|","-|||----|---|||---||----|","----||---|--|-|||--------","||---|-||--||-----||-||||"}

    Returns: 102

  47. {"|-|-|----","|-----|--","|--|-----","|-||--|--","--|||-|-|","---------","-|--||--|","|-||---|-","-|-|---|-","--|-----|","--|---|||","|--|---|-","--|----|-","||--|||-|","--||-----","-|-|--|-|","||||----|","|-----|--","----|||--","-|-|-----","|-|-|-||-","|-|---|-|","|-|--|||-","|-||-|-||","--||--|-|","--||---||","---|--|||"}

    Returns: 126

  48. {"-"}

    Returns: 1

  49. {"|"}

    Returns: 1

  50. {"||||||||||||||||||||||||||||||||||||||||||||||||||"}

    Returns: 50

  51. {"-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-"}

    Returns: 50

  52. {"--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------", "--------------------------------------------------"}

    Returns: 50

  53. {"||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||", "||||||||||||||||||||||||||||||||||||||||||||||||||"}

    Returns: 50

  54. {"-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", "-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|", "|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-"}

    Returns: 2500

  55. {"-", "|", "|", "-" }

    Returns: 3

  56. {"-" }

    Returns: 1

  57. {"-||--||--", "--||--||-", "|--||--||", "||--||--|", "-||--||--", "--||--||-" }

    Returns: 31

  58. {"|", "|", "|" }

    Returns: 1

  59. {"-|--", "|-|-", "|---" }

    Returns: 8

  60. {"|" }

    Returns: 1

  61. {"-----", "-----", "|||||" }

    Returns: 7

  62. {"||-||-|||-", "||--||||||", "-|-|||||||", "-|-||-||-|", "||--|-||||", "||||||-||-", "|-||||||||", "||||||||||", "||---|--||", "-||-||||||" }

    Returns: 41


This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2024, TopCoder, Inc. All rights reserved.
This problem was used for: