xref: /xnu-10063.101.15/osfmk/console/progress_meter_data.c (revision 94d3b452840153a99b38a3a9659680b2a006908e)
1*94d3b452SApple OSS Distributions /*
2*94d3b452SApple OSS Distributions  * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
3*94d3b452SApple OSS Distributions  *
4*94d3b452SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*94d3b452SApple OSS Distributions  *
6*94d3b452SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*94d3b452SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*94d3b452SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*94d3b452SApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*94d3b452SApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*94d3b452SApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*94d3b452SApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*94d3b452SApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*94d3b452SApple OSS Distributions  *
15*94d3b452SApple OSS Distributions  * Please obtain a copy of the License at
16*94d3b452SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*94d3b452SApple OSS Distributions  *
18*94d3b452SApple OSS Distributions  * The Original Code and all software distributed under the License are
19*94d3b452SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*94d3b452SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*94d3b452SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*94d3b452SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*94d3b452SApple OSS Distributions  * Please see the License for the specific language governing rights and
24*94d3b452SApple OSS Distributions  * limitations under the License.
25*94d3b452SApple OSS Distributions  *
26*94d3b452SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*94d3b452SApple OSS Distributions  */
28*94d3b452SApple OSS Distributions 
29*94d3b452SApple OSS Distributions #define kProgressBarHeight   (18)
30*94d3b452SApple OSS Distributions #define kProgressBarCapWidth (9)
31*94d3b452SApple OSS Distributions #define kProgressBarWidth    (234)
32*94d3b452SApple OSS Distributions 
33*94d3b452SApple OSS Distributions static const unsigned char progressmeter_leftcap1x[2][9 * 18] = {
34*94d3b452SApple OSS Distributions 	{
35*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
36*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
37*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
38*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
39*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
40*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
41*94d3b452SApple OSS Distributions 		0xfe, 0xdc, 0xc6, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2,
42*94d3b452SApple OSS Distributions 		0xdd, 0xcc, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9,
43*94d3b452SApple OSS Distributions 		0xc6, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9,
44*94d3b452SApple OSS Distributions 		0xc6, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9,
45*94d3b452SApple OSS Distributions 		0xdd, 0xcc, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9,
46*94d3b452SApple OSS Distributions 		0xfe, 0xdc, 0xc6, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2,
47*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
48*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
49*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
50*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
51*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
52*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
53*94d3b452SApple OSS Distributions 	},
54*94d3b452SApple OSS Distributions 	{
55*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
56*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
57*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
58*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
59*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
60*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
61*94d3b452SApple OSS Distributions 		0xfa, 0x8b, 0x41, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
62*94d3b452SApple OSS Distributions 		0x8c, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
63*94d3b452SApple OSS Distributions 		0x41, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
64*94d3b452SApple OSS Distributions 		0x41, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
65*94d3b452SApple OSS Distributions 		0x8c, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
66*94d3b452SApple OSS Distributions 		0xfa, 0x8b, 0x41, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
67*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
68*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
69*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
70*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
71*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
72*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
73*94d3b452SApple OSS Distributions 	}
74*94d3b452SApple OSS Distributions };
75*94d3b452SApple OSS Distributions 
76*94d3b452SApple OSS Distributions static const unsigned char progressmeter_leftcap2x[2][4 * 9 * 18] = {
77*94d3b452SApple OSS Distributions 	{
78*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
79*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
80*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
81*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
82*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
83*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
84*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
85*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
86*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
87*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
88*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
89*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
90*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xfe, 0xe5, 0xcf, 0xc5, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2,
91*94d3b452SApple OSS Distributions 		0xff, 0xf9, 0xcd, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2,
92*94d3b452SApple OSS Distributions 		0xfe, 0xcd, 0xc2, 0xc8, 0xd2, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9,
93*94d3b452SApple OSS Distributions 		0xe5, 0xc2, 0xc8, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9,
94*94d3b452SApple OSS Distributions 		0xcf, 0xc2, 0xd1, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9,
95*94d3b452SApple OSS Distributions 		0xc3, 0xc2, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9,
96*94d3b452SApple OSS Distributions 		0xc3, 0xc2, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9,
97*94d3b452SApple OSS Distributions 		0xcf, 0xc2, 0xd2, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9,
98*94d3b452SApple OSS Distributions 		0xe5, 0xc2, 0xc7, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9,
99*94d3b452SApple OSS Distributions 		0xfd, 0xcd, 0xc2, 0xc8, 0xd2, 0xd8, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9,
100*94d3b452SApple OSS Distributions 		0xff, 0xf9, 0xcd, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2,
101*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xfe, 0xe4, 0xce, 0xc5, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2,
102*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
103*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
104*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
105*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
106*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
107*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
108*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
109*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
110*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
111*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
112*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
113*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
114*94d3b452SApple OSS Distributions 	},
115*94d3b452SApple OSS Distributions 	{
116*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
117*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
118*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
119*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
120*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
121*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
122*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
123*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
124*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
125*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
126*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
127*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
128*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xfa, 0xa7, 0x60, 0x3d, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
129*94d3b452SApple OSS Distributions 		0xff, 0xe9, 0x59, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
130*94d3b452SApple OSS Distributions 		0xfa, 0x59, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
131*94d3b452SApple OSS Distributions 		0xa8, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
132*94d3b452SApple OSS Distributions 		0x60, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
133*94d3b452SApple OSS Distributions 		0x38, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
134*94d3b452SApple OSS Distributions 		0x38, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
135*94d3b452SApple OSS Distributions 		0x60, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
136*94d3b452SApple OSS Distributions 		0xa7, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
137*94d3b452SApple OSS Distributions 		0xf9, 0x59, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
138*94d3b452SApple OSS Distributions 		0xff, 0xe9, 0x59, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
139*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xfa, 0xa6, 0x5d, 0x3c, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33,
140*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
141*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
142*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
143*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
144*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
145*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
146*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
147*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
148*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
149*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
150*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
151*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
152*94d3b452SApple OSS Distributions 	}
153*94d3b452SApple OSS Distributions };
154*94d3b452SApple OSS Distributions 
155*94d3b452SApple OSS Distributions static const unsigned char progressmeter_middle1x[2][1 * 18] = {
156*94d3b452SApple OSS Distributions 	{
157*94d3b452SApple OSS Distributions 		0xff,
158*94d3b452SApple OSS Distributions 		0xff,
159*94d3b452SApple OSS Distributions 		0xff,
160*94d3b452SApple OSS Distributions 		0xff,
161*94d3b452SApple OSS Distributions 		0xff,
162*94d3b452SApple OSS Distributions 		0xff,
163*94d3b452SApple OSS Distributions 		0xc2,
164*94d3b452SApple OSS Distributions 		0xd9,
165*94d3b452SApple OSS Distributions 		0xd9,
166*94d3b452SApple OSS Distributions 		0xd9,
167*94d3b452SApple OSS Distributions 		0xd9,
168*94d3b452SApple OSS Distributions 		0xc2,
169*94d3b452SApple OSS Distributions 		0xff,
170*94d3b452SApple OSS Distributions 		0xff,
171*94d3b452SApple OSS Distributions 		0xff,
172*94d3b452SApple OSS Distributions 		0xff,
173*94d3b452SApple OSS Distributions 		0xff,
174*94d3b452SApple OSS Distributions 		0xff,
175*94d3b452SApple OSS Distributions 	},
176*94d3b452SApple OSS Distributions 	{
177*94d3b452SApple OSS Distributions 		0xff,
178*94d3b452SApple OSS Distributions 		0xff,
179*94d3b452SApple OSS Distributions 		0xff,
180*94d3b452SApple OSS Distributions 		0xff,
181*94d3b452SApple OSS Distributions 		0xff,
182*94d3b452SApple OSS Distributions 		0xff,
183*94d3b452SApple OSS Distributions 		0x33,
184*94d3b452SApple OSS Distributions 		0x33,
185*94d3b452SApple OSS Distributions 		0x33,
186*94d3b452SApple OSS Distributions 		0x33,
187*94d3b452SApple OSS Distributions 		0x33,
188*94d3b452SApple OSS Distributions 		0x33,
189*94d3b452SApple OSS Distributions 		0xff,
190*94d3b452SApple OSS Distributions 		0xff,
191*94d3b452SApple OSS Distributions 		0xff,
192*94d3b452SApple OSS Distributions 		0xff,
193*94d3b452SApple OSS Distributions 		0xff,
194*94d3b452SApple OSS Distributions 		0xff,
195*94d3b452SApple OSS Distributions 	}
196*94d3b452SApple OSS Distributions };
197*94d3b452SApple OSS Distributions 
198*94d3b452SApple OSS Distributions static const unsigned char progressmeter_middle2x[2][2 * 1 * 18] = {
199*94d3b452SApple OSS Distributions 	{
200*94d3b452SApple OSS Distributions 		0xff,
201*94d3b452SApple OSS Distributions 		0xff,
202*94d3b452SApple OSS Distributions 		0xff,
203*94d3b452SApple OSS Distributions 		0xff,
204*94d3b452SApple OSS Distributions 		0xff,
205*94d3b452SApple OSS Distributions 		0xff,
206*94d3b452SApple OSS Distributions 		0xff,
207*94d3b452SApple OSS Distributions 		0xff,
208*94d3b452SApple OSS Distributions 		0xff,
209*94d3b452SApple OSS Distributions 		0xff,
210*94d3b452SApple OSS Distributions 		0xff,
211*94d3b452SApple OSS Distributions 		0xff,
212*94d3b452SApple OSS Distributions 		0xc2,
213*94d3b452SApple OSS Distributions 		0xc2,
214*94d3b452SApple OSS Distributions 		0xd9,
215*94d3b452SApple OSS Distributions 		0xd9,
216*94d3b452SApple OSS Distributions 		0xd9,
217*94d3b452SApple OSS Distributions 		0xd9,
218*94d3b452SApple OSS Distributions 		0xd9,
219*94d3b452SApple OSS Distributions 		0xd9,
220*94d3b452SApple OSS Distributions 		0xd9,
221*94d3b452SApple OSS Distributions 		0xd9,
222*94d3b452SApple OSS Distributions 		0xc2,
223*94d3b452SApple OSS Distributions 		0xc2,
224*94d3b452SApple OSS Distributions 		0xff,
225*94d3b452SApple OSS Distributions 		0xff,
226*94d3b452SApple OSS Distributions 		0xff,
227*94d3b452SApple OSS Distributions 		0xff,
228*94d3b452SApple OSS Distributions 		0xff,
229*94d3b452SApple OSS Distributions 		0xff,
230*94d3b452SApple OSS Distributions 		0xff,
231*94d3b452SApple OSS Distributions 		0xff,
232*94d3b452SApple OSS Distributions 		0xff,
233*94d3b452SApple OSS Distributions 		0xff,
234*94d3b452SApple OSS Distributions 		0xff,
235*94d3b452SApple OSS Distributions 		0xff,
236*94d3b452SApple OSS Distributions 	},
237*94d3b452SApple OSS Distributions 	{
238*94d3b452SApple OSS Distributions 		0xff,
239*94d3b452SApple OSS Distributions 		0xff,
240*94d3b452SApple OSS Distributions 		0xff,
241*94d3b452SApple OSS Distributions 		0xff,
242*94d3b452SApple OSS Distributions 		0xff,
243*94d3b452SApple OSS Distributions 		0xff,
244*94d3b452SApple OSS Distributions 		0xff,
245*94d3b452SApple OSS Distributions 		0xff,
246*94d3b452SApple OSS Distributions 		0xff,
247*94d3b452SApple OSS Distributions 		0xff,
248*94d3b452SApple OSS Distributions 		0xff,
249*94d3b452SApple OSS Distributions 		0xff,
250*94d3b452SApple OSS Distributions 		0x33,
251*94d3b452SApple OSS Distributions 		0x33,
252*94d3b452SApple OSS Distributions 		0x33,
253*94d3b452SApple OSS Distributions 		0x33,
254*94d3b452SApple OSS Distributions 		0x33,
255*94d3b452SApple OSS Distributions 		0x33,
256*94d3b452SApple OSS Distributions 		0x33,
257*94d3b452SApple OSS Distributions 		0x33,
258*94d3b452SApple OSS Distributions 		0x33,
259*94d3b452SApple OSS Distributions 		0x33,
260*94d3b452SApple OSS Distributions 		0x33,
261*94d3b452SApple OSS Distributions 		0x33,
262*94d3b452SApple OSS Distributions 		0xff,
263*94d3b452SApple OSS Distributions 		0xff,
264*94d3b452SApple OSS Distributions 		0xff,
265*94d3b452SApple OSS Distributions 		0xff,
266*94d3b452SApple OSS Distributions 		0xff,
267*94d3b452SApple OSS Distributions 		0xff,
268*94d3b452SApple OSS Distributions 		0xff,
269*94d3b452SApple OSS Distributions 		0xff,
270*94d3b452SApple OSS Distributions 		0xff,
271*94d3b452SApple OSS Distributions 		0xff,
272*94d3b452SApple OSS Distributions 		0xff,
273*94d3b452SApple OSS Distributions 		0xff,
274*94d3b452SApple OSS Distributions 	}
275*94d3b452SApple OSS Distributions };
276*94d3b452SApple OSS Distributions 
277*94d3b452SApple OSS Distributions static const unsigned char progressmeter_rightcap1x[2][9 * 18] = {
278*94d3b452SApple OSS Distributions 	{
279*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
280*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
281*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
282*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
283*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
284*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
285*94d3b452SApple OSS Distributions 		0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc6, 0xdc, 0xfe,
286*94d3b452SApple OSS Distributions 		0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xcc, 0xde,
287*94d3b452SApple OSS Distributions 		0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xc6,
288*94d3b452SApple OSS Distributions 		0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xc6,
289*94d3b452SApple OSS Distributions 		0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xcc, 0xde,
290*94d3b452SApple OSS Distributions 		0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc6, 0xdc, 0xfe,
291*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
292*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
293*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
294*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
295*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
296*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
297*94d3b452SApple OSS Distributions 	},
298*94d3b452SApple OSS Distributions 	{
299*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
300*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
301*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
302*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
303*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
304*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
305*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x41, 0x8b, 0xfa,
306*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x92,
307*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x41,
308*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x41,
309*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x91,
310*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x41, 0x8b, 0xfa,
311*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
312*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
313*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
314*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
315*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
316*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
317*94d3b452SApple OSS Distributions 	}
318*94d3b452SApple OSS Distributions };
319*94d3b452SApple OSS Distributions 
320*94d3b452SApple OSS Distributions static const unsigned char progressmeter_rightcap2x[2][4 * 9 * 18] = {
321*94d3b452SApple OSS Distributions 	{
322*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
323*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
324*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
325*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
326*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
327*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
328*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
329*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
330*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
331*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
332*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
333*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
334*94d3b452SApple OSS Distributions 		0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc5, 0xcf, 0xe5, 0xfe, 0xff, 0xff,
335*94d3b452SApple OSS Distributions 		0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xcd, 0xf9, 0xff,
336*94d3b452SApple OSS Distributions 		0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xd2, 0xc8, 0xc2, 0xcd, 0xfd,
337*94d3b452SApple OSS Distributions 		0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xc7, 0xc2, 0xe5,
338*94d3b452SApple OSS Distributions 		0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd1, 0xc2, 0xcf,
339*94d3b452SApple OSS Distributions 		0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xc2, 0xc4,
340*94d3b452SApple OSS Distributions 		0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xc2, 0xc5,
341*94d3b452SApple OSS Distributions 		0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd2, 0xc2, 0xcf,
342*94d3b452SApple OSS Distributions 		0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xc7, 0xc2, 0xe5,
343*94d3b452SApple OSS Distributions 		0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xd2, 0xc7, 0xc2, 0xcd, 0xfd,
344*94d3b452SApple OSS Distributions 		0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xcd, 0xf9, 0xff,
345*94d3b452SApple OSS Distributions 		0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc5, 0xce, 0xe4, 0xfe, 0xff, 0xff,
346*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
347*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
348*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
349*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
350*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
351*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
352*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
353*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
354*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
355*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
356*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
357*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
358*94d3b452SApple OSS Distributions 	},
359*94d3b452SApple OSS Distributions 	{
360*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
361*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
362*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
363*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
364*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
365*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
366*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
367*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
368*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
369*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
370*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
371*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
372*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x3d, 0x60, 0xa7, 0xfa, 0xff, 0xff,
373*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x59, 0xe9, 0xff,
374*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x59, 0xf9,
375*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0xa8,
376*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x60,
377*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x39,
378*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x3d,
379*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x60,
380*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0xa7,
381*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x58, 0xf9,
382*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x59, 0xe9, 0xff,
383*94d3b452SApple OSS Distributions 		0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x3c, 0x5d, 0xa6, 0xfa, 0xff, 0xff,
384*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
385*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
386*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
387*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
388*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
389*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
390*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
391*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
392*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
393*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
394*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
395*94d3b452SApple OSS Distributions 		0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
396*94d3b452SApple OSS Distributions 	}
397*94d3b452SApple OSS Distributions };
398*94d3b452SApple OSS Distributions 
399*94d3b452SApple OSS Distributions 
400*94d3b452SApple OSS Distributions static const unsigned char *
401*94d3b452SApple OSS Distributions     progressmeter_leftcap[2][2] = {
402*94d3b452SApple OSS Distributions 	{ &progressmeter_leftcap1x[0][0], &progressmeter_leftcap1x[1][0] },
403*94d3b452SApple OSS Distributions 	{ &progressmeter_leftcap2x[0][0], &progressmeter_leftcap2x[1][0] }
404*94d3b452SApple OSS Distributions };
405*94d3b452SApple OSS Distributions 
406*94d3b452SApple OSS Distributions static const unsigned char *
407*94d3b452SApple OSS Distributions     progressmeter_middle[2][2] = {
408*94d3b452SApple OSS Distributions 	{ &progressmeter_middle1x[0][0], &progressmeter_middle1x[1][0] },
409*94d3b452SApple OSS Distributions 	{ &progressmeter_middle2x[0][0], &progressmeter_middle2x[1][0] }
410*94d3b452SApple OSS Distributions };
411*94d3b452SApple OSS Distributions 
412*94d3b452SApple OSS Distributions static const unsigned char *
413*94d3b452SApple OSS Distributions     progressmeter_rightcap[2][2] = {
414*94d3b452SApple OSS Distributions 	{ &progressmeter_rightcap1x[0][0], &progressmeter_rightcap1x[1][0] },
415*94d3b452SApple OSS Distributions 	{ &progressmeter_rightcap2x[0][0], &progressmeter_rightcap2x[1][0] }
416*94d3b452SApple OSS Distributions };
417