aboutsummaryrefslogtreecommitdiffstats
path: root/lib/libucsi/atsc/time_shifted_service_descriptor.h
blob: 599e66d27acf8384e3a464145748326b14a934cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
 * section and descriptor parser
 *
 * Copyright (C) 2005 Kenneth Aafloy (kenneth@linuxtv.org)
 * Copyright (C) 2005 Andrew de Quincey (adq_dvb@lidskialf.net)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 */

#ifndef _UCSI_ATSC_TIME_SHIFTED_SERVICE_DESCRIPTOR
#define _UCSI_ATSC_TIME_SHIFTED_SERVICE_DESCRIPTOR 1

#ifdef __cplusplus
extern "C"
{
#endif

#include <libucsi/descriptor.h>
#include <libucsi/endianops.h>
#include <libucsi/types.h>

/**
 * atsc_time_shifted_service_descriptor structure.
 */
struct atsc_time_shifted_service_descriptor {
	struct descriptor d;

  EBIT2(uint8_t reserved		: 3; ,
	uint8_t number_of_services	: 5; );
	/* struct atsc_time_shifted_service services[] */
} __ucsi_packed;

/**
 * An entry in the services field of an atsc_time_shifted_service_descriptor.
 */
struct atsc_time_shifted_service {
  EBIT2(uint16_t reserved 		: 6; ,
	uint16_t time_shift		:10; );
  EBIT3(uint32_t reserved2 		: 4; ,
	uint32_t major_channel_number	:10; ,
	uint32_t minor_channel_number	:10; );
} __ucsi_packed;

/**
 * Process an atsc_time_shifted_service_descriptor.
 *
 * @param d Generic descriptor pointer.
 * @return atsc_time_shifted_service_descriptor pointer, or NULL on error.
 */
static inline struct atsc_time_shifted_service_descriptor*
	atsc_time_shifted_service_descriptor_codec(struct descriptor* d)
{
	struct atsc_time_shifted_service_descriptor *ret =
		(struct atsc_time_shifted_service_descriptor *) d;
	uint8_t *buf = (uint8_t*) d + 2;
	int pos = 0;
	int idx;

	if (d->len < 1)
		return NULL;
	pos++;

	for(idx = 0; idx < ret->number_of_services; idx++) {
		if (d->len < (pos + sizeof(struct atsc_time_shifted_service)))
			return NULL;

		bswap16(buf+pos);
		bswap24(buf+pos+2);

		pos += sizeof(struct atsc_time_shifted_service);
	}

	return (struct atsc_time_shifted_service_descriptor*) d;
}

/**
 * Iterator for services field of a atsc_time_shifted_service_descriptor.
 *
 * @param d atsc_time_shifted_service_descriptor pointer.
 * @param pos Variable holding a pointer to the current atsc_service_location_element.
 * @param idx Integer used to count which service we are in.
 */
#define atsc_time_shifted_service_descriptor_services_for_each(d, pos, idx) \
	for ((pos) = atsc_time_shifted_service_descriptor_services_first(d), idx=0; \
	     (pos); \
	     (pos) = atsc_time_shifted_service_descriptor_services_next(d, pos, ++idx))










/******************************** PRIVATE CODE ********************************/
static inline struct atsc_time_shifted_service*
	atsc_time_shifted_service_descriptor_services_first(struct atsc_time_shifted_service_descriptor *d)
{
	if (d->number_of_services == 0)
		return NULL;

	return (struct atsc_time_shifted_service *)
		((uint8_t*) d + sizeof(struct atsc_time_shifted_service_descriptor));
}

static inline struct atsc_time_shifted_service*
 	atsc_time_shifted_service_descriptor_services_next(struct atsc_time_shifted_service_descriptor *d,
							   struct atsc_time_shifted_service *pos,
							   int idx)
{
	uint8_t *next =	(uint8_t *) pos + sizeof(struct atsc_time_shifted_service);

	if (idx >= d->number_of_services)
		return NULL;
	return (struct atsc_time_shifted_service *) next;
}

#ifdef __cplusplus
}
#endif

#endif
'#n682'>682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
flf2a$ 5 4 14 15 10 0 22415 96
SmSlant by Glenn Chappell 6/93 - based on Small & Slant
Includes ISO Latin-1
figlet release 2.1 -- 12 Aug 1994
Permission is hereby given to modify this font, as long as the
modifier's name is placed on a comment line.

Modified by Paul Burton <solution@earthlink.net> 12/96 to include new parameter
supported by FIGlet and FIGWin.  May also be slightly modified for better use
of new full-width/kern/smush alternatives, but default output is NOT changed.

    $@
   $ @
  $  @
 $   @
$    @@
   __@
  / /@
 /_/ @
(_)  @
     @@
 _ _ @
( | )@
|/|/ @
$    @
     @@
     ____ @
  __/ / /_@
 /_  . __/@
/_    __/ @
 /_/_/    @@
     @
  _//@
 (_-<@
/ __/@
//   @@
 _   __@
(_)_/_/@
 _/_/_ @
/_/ (_)@
       @@
  ____   @
 / __/___@
 > _/_ _/@
|_____/  @
         @@
 _ @
( )@
|/ @
$  @
   @@
    __@
  _/_/@
 / /  @
/ /   @
|_|   @@
    _ @
   | |@
   / /@
 _/_/ @
/_/   @@
    @
 _/|@
> _<@
|/  @
    @@
    __ @
 __/ /_@
/_  __/@
 /_/   @
       @@
   @
   @
 _ @
( )@
|/ @@
     @
 ____@
/___/@
 $   @
     @@
   @
   @
 _ @
(_)@
   @@
     __@
   _/_/@
 _/_/  @
/_/    @
       @@
  ___ @
 / _ \@
/ // /@
\___/ @
      @@
  ___@
 <  /@
 / / @
/_/  @
     @@
   ___ @
  |_  |@
 / __/ @
/____/ @
       @@
   ____@
  |_  /@
 _/_ < @
/____/ @
       @@
  ____@
 / / /@
/_  _/@
 /_/  @
      @@
   ____@
  / __/@
 /__ \ @
/____/ @
       @@
  ____@
 / __/@
/ _ \ @
\___/ @
      @@
 ____@
/_  /@
 / / @
/_/  @
     @@
  ___ @
 ( _ )@
/ _  |@
\___/ @
      @@
  ___ @
 / _ \@
 \_, /@
/___/ @
      @@
   _ @
  (_)@
 _   @
(_)  @
     @@
   _ @
  (_)@
 _   @
( )  @
|/   @@
  __@
 / /@
< < @
 \_\@
    @@
      @
  ____@
 /___/@
/___/ @
      @@
__  @
\ \ @
 > >@
/_/ @
    @@
 ___ @
/__ \@
 /__/@
(_)  @
     @@
  _____ @
 / ___ \@
/ / _ `/@
\ \_,_/ @
 \___/  @@
   ___ @
  / _ |@
 / __ |@
/_/ |_|@
       @@
   ___ @
  / _ )@
 / _  |@
/____/ @
       @@
  _____@
 / ___/@
/ /__  @
\___/  @
       @@
   ___ @
  / _ \@
 / // /@
/____/ @
       @@
   ____@
  / __/@
 / _/  @
/___/  @
       @@
   ____@
  / __/@
 / _/  @
/_/    @
       @@
  _____@
 / ___/@
/ (_ / @
\___/  @
       @@
   __ __@
  / // /@
 / _  / @
/_//_/  @
        @@
   ____@
  /  _/@
 _/ /  @
/___/  @
       @@
     __@
 __ / /@
/ // / @
\___/  @
       @@
   __ __@
  / //_/@
 / ,<   @
/_/|_|  @
        @@
   __ @
  / / @
 / /__@
/____/@
      @@
   __  ___@
  /  |/  /@
 / /|_/ / @
/_/  /_/  @
          @@
   _  __@
  / |/ /@
 /    / @
/_/|_/  @
        @@
  ____ @
 / __ \@
/ /_/ /@
\____/ @
       @@
   ___ @
  / _ \@
 / ___/@
/_/    @
       @@
  ____ @
 / __ \@
/ /_/ /@
\___\_\@
       @@
   ___ @
  / _ \@
 / , _/@
/_/|_| @
       @@
   ____@
  / __/@
 _\ \  @
/___/  @
       @@
 ______@
/_  __/@
 / /   @
/_/    @
       @@
  __  __@
 / / / /@
/ /_/ / @
\____/  @
        @@
  _   __@
 | | / /@
 | |/ / @
 |___/  @
        @@
  _      __@
 | | /| / /@
 | |/ |/ / @
 |__/|__/  @
           @@
   _  __@
  | |/_/@
 _>  <  @
/_/|_|  @
        @@
 __  __@
 \ \/ /@
  \  / @
  /_/  @
       @@
  ____@
 /_  /@
  / /_@
 /___/@
      @@
    ___@
   / _/@
  / /  @
 / /   @
/__/   @@
__   @
\ \  @
 \ \ @
  \_\@
     @@
    ___@
   /  /@
   / / @
 _/ /  @
/__/   @@
 //|@
|/||@
 $  @
$   @
    @@
     @
     @
     @
 ____@
/___/@@
 _ @
( )@
 V @
$  @
   @@
      @
 ___ _@
/ _ `/@
\_,_/ @
      @@
   __ @
  / / @
 / _ \@
/_.__/@
      @@
     @
 ____@
/ __/@
\__/ @
     @@
     __@
 ___/ /@
/ _  / @
\_,_/  @
       @@
     @
 ___ @
/ -_)@
\__/ @
     @@
   ___@
  / _/@
 / _/ @
/_/   @
      @@
       @
  ___ _@
 / _ `/@
 \_, / @
/___/  @@
   __ @
  / / @
 / _ \@
/_//_/@
      @@
   _ @
  (_)@
 / / @
/_/  @
     @@
      _ @
     (_)@
    / / @
 __/ /  @
|___/   @@
   __  @
  / /__@
 /  '_/@
/_/\_\ @
       @@
   __@
  / /@
 / / @
/_/  @
     @@
       @
  __ _ @
 /  ' \@
/_/_/_/@
       @@
      @
  ___ @
 / _ \@
/_//_/@
      @@
     @
 ___ @
/ _ \@
\___/@
     @@
       @
   ___ @
  / _ \@
 / .__/@
/_/    @@
      @
 ___ _@
/ _ `/@
\_, / @
 /_/  @@
      @
  ____@
 / __/@
/_/   @
      @@
     @
  ___@
 (_-<@
/___/@
     @@
  __ @
 / /_@
/ __/@
\__/ @
     @@
      @
 __ __@
/ // /@
\_,_/ @
      @@
      @
 _  __@
| |/ /@
|___/ @
      @@
        @
 _    __@
| |/|/ /@
|__,__/ @
        @@
      @
 __ __@
 \ \ /@
/_\_\ @
      @@
       @
  __ __@
 / // /@
 \_, / @
/___/  @@
    @
 ___@
/_ /@
/__/@
    @@
    __@
  _/_/@
_/ /  @
/ /   @
\_\   @@
    __@
   / /@
  / / @
 / /  @
/_/   @@
   __  @
   \ \ @
   / /_@
 _/_/  @
/_/    @@
 /\//@
//\/ @
 $   @
$    @
     @@
   _  _ @
  (_)(_)@
 / - |  @
/_/|_|  @
        @@
  _   _ @
 (_)_(_)@
/ __ \  @
\____/  @
        @@
  _   _ @
 (_) (_)@
/ /_/ / @
\____/  @
        @@
  _  _ @
 (_)(_)@
/ _ `/ @
\_,_/  @
       @@
  _  _ @
 (_)(_)@
/ _ \  @
\___/  @
       @@
  _  _ @
 (_)(_)@
/ // / @
\_,_/  @
       @@
    ____ @
   / _  )@
  / /< < @
 / //__/ @
/_/      @@
160  NO-BREAK SPACE
    $@
   $ @
  $  @
 $   @
$    @@
161  INVERTED EXCLAMATION MARK
   _ @
  (_)@
 / / @
/_/  @
     @@
162  CENT SIGN
     @
 __//@
/ __/@
\ _/ @
//   @@
163  POUND SIGN
     __ @
  __/__|@
 /_ _/_ @
(_,___/ @
        @@
164  CURRENCY SIGN
   /|_/|@
  | . / @
 /_  |  @
|/ |/   @
        @@
165  YEN SIGN
    ____@
  _| / /@
 /_  __/@
/_  __/ @
 /_/    @@
166  BROKEN BAR
    __@
   / /@
  /_/ @
 / /  @
/_/   @@
167  SECTION SIGN
     __ @
   _/ _)@
  / | | @
 | |_/  @
(__/    @@
168  DIAERESIS
 _   _ @
(_) (_)@
 $   $ @
$   $  @
       @@
169  COPYRIGHT SIGN
   ____  @
  / ___\ @
 / / _/ |@
| |__/ / @
 \____/  @@
170  FEMININE ORDINAL INDICATOR
   ___ _@
  / _ `/@
 _\_,_/ @
/____/  @
        @@
171  LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
  ____@
 / / /@
< < < @
 \_\_\@
      @@
172  NOT SIGN
     @
 ____@
/_  /@
 /_/ @
     @@
173  SOFT HYPHEN
    @
 ___@
/__/@
 $  @
    @@
174  REGISTERED SIGN
   ____  @
  / __ \ @
 / / -) |@
| //\\ / @
 \____/  @@
175  MACRON
 ____@
/___/@
 $   @
$    @
     @@
176  DEGREE SIGN
  __ @
 /. |@
|__/ @
 $   @
     @@
177  PLUS-MINUS SIGN
      __ @
   __/ /_@
  /_  __/@
 __/_/_  @
/_____/  @@
178  SUPERSCRIPT TWO
  __ @
 |_ )@
/__| @
 $   @
     @@
179  SUPERSCRIPT THREE
  ___@
 |_ /@
/__) @
 $   @
     @@
180  ACUTE ACCENT
 __@
/_/@
 $ @
$  @
   @@
181  MICRO SIGN
        @
   __ __@
  / // /@
 / .,_/ @
/_/     @@
182  PILCROW SIGN
  _____@
 /    /@
|_ / / @
/_/_/  @
       @@
183  MIDDLE DOT
   @
 _ @
(_)@
$  @
   @@
184  CEDILLA
   @
   @
   @
 _ @
/_)@@
185  SUPERSCRIPT ONE
  __@
 < /@
/_/ @
$   @
    @@
186  MASCULINE ORDINAL INDICATOR
   ___ @
  / _ \@
 _\___/@
/____/ @
       @@
187  RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
____  @
\ \ \ @
 > > >@
/_/_/ @
      @@
188  VULGAR FRACTION ONE QUARTER
  __  __   @
 < /_/_/___@
/_//_//_' /@
 /_/   /_/ @
           @@
189  VULGAR FRACTION ONE HALF
  __  __  @
 < /_/_/_ @
/_//_/|_ )@
 /_/ /__| @
          @@
190  VULGAR FRACTION THREE QUARTERS
  ___  __   @
 |_ /_/_/___@
/__)/_//_' /@
  /_/   /_/ @
            @@
191  INVERTED QUESTION MARK
   _ @
 _(_)@
/ _/_@
\___/@
     @@
192  LATIN CAPITAL LETTER A WITH GRAVE
   __ @
  _\_\@
 / - |@
/_/|_|@
      @@
193  LATIN CAPITAL LETTER A WITH ACUTE
    __@
  _/_/@
 / - |@
/_/|_|@
      @@
194  LATIN CAPITAL LETTER A WITH CIRCUMFLEX
    //|@
  _|/||@
 / - | @
/_/|_| @
       @@
195  LATIN CAPITAL LETTER A WITH TILDE
    /\//@
  _//\/ @
 / - |  @
/_/|_|  @
        @@
196  LATIN CAPITAL LETTER A WITH DIAERESIS
   _  _ @
  (_)(_)@
 / - |  @
/_/|_|  @
        @@
197  LATIN CAPITAL LETTER A WITH RING ABOVE
   (())@
  / _ |@
 / __ |@
/_/ |_|@
       @@
198  LATIN CAPITAL LETTER AE
   _______@
  / _  __/@
 / _  _/  @
/_//___/  @
          @@
199  LATIN CAPITAL LETTER C WITH CEDILLA
  _____@
 / ___/@
/ /__  @
\___/  @
/_)    @@
200  LATIN CAPITAL LETTER E WITH GRAVE
  __ @
  \_\@
 / -<@
/__< @
     @@
201  LATIN CAPITAL LETTER E WITH ACUTE
    __@
  _/_/@
 / -< @
/__<  @
      @@
202  LATIN CAPITAL LETTER E WITH CIRCUMFLEX
   //|@
  |/||@
 / -< @
/__<  @
      @@
203  LATIN CAPITAL LETTER E WITH DIAERESIS
  _  _ @
 (_)(_)@
 / -<  @
/__<   @
       @@
204  LATIN CAPITAL LETTER I WITH GRAVE
   __  @
  _\_\ @
 /_ __/@
/____/ @
       @@
205  LATIN CAPITAL LETTER I WITH ACUTE
     __@
  __/_/@
 /_ __/@
/____/ @
       @@
206  LATIN CAPITAL LETTER I WITH CIRCUMFLEX
    //|@
  _|/||@
 /_ __/@
/____/ @
       @@
207  LATIN CAPITAL LETTER I WITH DIAERESIS
   _  _ @
  (_)(_)@
 /_ __/ @
/____/  @
        @@
208  LATIN CAPITAL LETTER ETH
   ____ @
 _/ __ \@
/_ _// /@
/_____/ @
        @@
209  LATIN CAPITAL LETTER N WITH TILDE
     /\//@
  __//\/ @
 /  |/ / @
/_/|__/  @
         @@
210  LATIN CAPITAL LETTER O WITH GRAVE
  __  @
 _\_\ @
/ __ \@
\____/@
      @@
211  LATIN CAPITAL LETTER O WITH ACUTE
    __@
 __/_/@
/ __ \@
\____/@
      @@
212  LATIN CAPITAL LETTER O WITH CIRCUMFLEX
   //|@
 _|/||@
/ __ \@
\____/@
      @@
213  LATIN CAPITAL LETTER O WITH TILDE
   /\//@
 _//\/ @
/ __ \ @
\____/ @
       @@
214  LATIN CAPITAL LETTER O WITH DIAERESIS
  _   _ @
 (_)_(_)@
/ __ \  @
\____/  @
        @@
215  MULTIPLICATION SIGN
     @
 /|/|@
 > < @
|/|/ @
     @@
216  LATIN CAPITAL LETTER O WITH STROKE
  _____ @
 / _// \@
/ //// /@
\_//__/ @
        @@
217  LATIN CAPITAL LETTER U WITH GRAVE
   __  @
 __\_\ @
/ /_/ /@
\____/ @
       @@
218  LATIN CAPITAL LETTER U WITH ACUTE
     __@
 __ /_/@
/ /_/ /@
\____/ @
       @@
219  LATIN CAPITAL LETTER U WITH CIRCUMFLEX
    //|@
 __|/||@
/ /_/ /@
\____/ @
       @@
220  LATIN CAPITAL LETTER U WITH DIAERESIS
  _   _ @
 (_) (_)@
/ /_/ / @
\____/  @
        @@
221  LATIN CAPITAL LETTER Y WITH ACUTE
   __@
__/_/@
\ V /@
 /_/ @
     @@
222  LATIN CAPITAL LETTER THORN
   __ @
  / / @
 / -_)@
/_/   @
      @@
223  LATIN SMALL LETTER SHARP S
    ____ @
   / _  )@
  / /< < @
 / //__/ @
/_/      @@
224  LATIN SMALL LETTER A WITH GRAVE
  __  @
 _\_\_@
/ _ `/@
\_,_/ @
      @@
225  LATIN SMALL LETTER A WITH ACUTE
    __@
 __/_/@
/ _ `/@
\_,_/ @
      @@
226  LATIN SMALL LETTER A WITH CIRCUMFLEX
   //|@
 _|/||@
/ _ `/@
\_,_/ @
      @@
227  LATIN SMALL LETTER A WITH TILDE
   /\//@
 _//\/ @
/ _ `/ @
\_,_/  @
       @@
228  LATIN SMALL LETTER A WITH DIAERESIS
  _  _ @
 (_)(_)@
/ _ `/ @
\_,_/  @
       @@
229  LATIN SMALL LETTER A WITH RING ABOVE
   __ @
 _(())@
/ _ `/@
\_,_/ @
      @@
230  LATIN SMALL LETTER AE
         @
 ___ ___ @
/ _ ` -_)@
\_,____/ @
         @@
231  LATIN SMALL LETTER C WITH CEDILLA
     @
 ____@
/ __/@
\__/ @
/_)  @@
232  LATIN SMALL LETTER E WITH GRAVE
  __ @
 _\_\@
/ -_)@
\__/ @
     @@
233  LATIN SMALL LETTER E WITH ACUTE
   __@
 _/_/@
/ -_)@
\__/ @
     @@
234  LATIN SMALL LETTER E WITH CIRCUMFLEX
  //|@
 |/||@
/ -_)@
\__/ @
     @@
235  LATIN SMALL LETTER E WITH DIAERESIS
 _  _ @
(_)(_)@
/ -_) @
\__/  @
      @@
236  LATIN SMALL LETTER I WITH GRAVE
  __ @
  \_\@
 / / @
/_/  @
     @@
237  LATIN SMALL LETTER I WITH ACUTE
   __@
  /_/@
 / / @
/_/  @
     @@
238  LATIN SMALL LETTER I WITH CIRCUMFLEX
   //|@
  |/||@
 / /  @
/_/   @
      @@
239  LATIN SMALL LETTER I WITH DIAERESIS
 _   _ @
(_)_(_)@
 / /   @
/_/    @
       @@
240  LATIN SMALL LETTER ETH
   _||_@
 __ || @
/ _` | @
\___/  @
       @@
241  LATIN SMALL LETTER N WITH TILDE
    /\//@
  _//\/ @
 / _ \  @
/_//_/  @
        @@
242  LATIN SMALL LETTER O WITH GRAVE
  __ @
 _\_\@
/ _ \@
\___/@
     @@
243  LATIN SMALL LETTER O WITH ACUTE
   __@
 _/_/@
/ _ \@
\___/@
     @@
244  LATIN SMALL LETTER O WITH CIRCUMFLEX
   //|@
 _|/||@
/ _ \ @
\___/ @
      @@
245  LATIN SMALL LETTER O WITH TILDE
   /\//@
 _//\/ @
/ _ \  @
\___/  @
       @@
246  LATIN SMALL LETTER O WITH DIAERESIS
  _  _ @
 (_)(_)@
/ _ \  @
\___/  @
       @@
247  DIVISION SIGN
   _ @
 _(_)@
/___/@
(_)  @
     @@
248  LATIN SMALL LETTER O WITH STROKE
     @
 ___ @
/ //\@
\//_/@
     @@
249  LATIN SMALL LETTER U WITH GRAVE
   __ @
 __\_\@
/ // /@
\_,_/ @
      @@
250  LATIN SMALL LETTER U WITH ACUTE
    __@
 __/_/@
/ // /@
\_,_/ @
      @@
251  LATIN SMALL LETTER U WITH CIRCUMFLEX
   //|@
 _|/||@
/ // /@
\_,_/ @
      @@
252  LATIN SMALL LETTER U WITH DIAERESIS
  _  _ @
 (_)(_)@
/ // / @
\_,_/  @
       @@
253  LATIN SMALL LETTER Y WITH ACUTE
     __@
  __/_/@
 / // /@
 \_, / @
/___/  @@
254  LATIN SMALL LETTER THORN
    __ @
   / / @
  / _ \@
 / .__/@
/_/    @@
255  LATIN SMALL LETTER Y WITH DIAERESIS
   _  _ @
  (_)(_)@
 / // / @
 \_, /  @
/___/   @@