/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/util/ |
H A D | frustum_util.cpp | 39 planes[Frustum::PLANE_LEFT].x = matrix[0].w + matrix[0].x; in CreateFrustum() 40 planes[Frustum::PLANE_LEFT].y = matrix[1].w + matrix[1].x; in CreateFrustum() 41 planes[Frustum::PLANE_LEFT].z = matrix[2].w + matrix[2].x; in CreateFrustum() 42 planes[Frustum::PLANE_LEFT].w = matrix[3].w + matrix[3].x; in CreateFrustum() 47 planes[Frustum::PLANE_RIGHT].w = matrix[3].w - matrix[3].x; in CreateFrustum() 52 planes[Frustum::PLANE_BOTTOM].w = matrix[3].w - matrix[3].y; in CreateFrustum() 54 planes[Frustum::PLANE_TOP].x = matrix[0].w + matrix[0].y; in CreateFrustum() 55 planes[Frustum::PLANE_TOP].y = matrix[1].w + matrix[1].y; in CreateFrustum() 57 planes[Frustum::PLANE_TOP].w = matrix[3].w + matrix[3].y; in CreateFrustum() 62 planes[Frustum::PLANE_NEAR].w = matrix[3].w + matrix[3].z; in CreateFrustum() [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBase/api/base/math/ |
H A D | matrix_util.h | 75 result.w.w = m.w.w; in BASE_BEGIN_NAMESPACE() 97 result.w = { mat.w.x * vec.x, mat.w.y * vec.y, mat.w.z * vec.z, mat.w.w }; in BASE_BEGIN_NAMESPACE() 199 return Vec4(mat.x.w, mat.y.w, mat.z.w, mat.w.w); in BASE_BEGIN_NAMESPACE() 380 const float coef00 = m.z.z * m.w.w - m.w.z * m.z.w; in BASE_BEGIN_NAMESPACE() 381 const float coef02 = m.y.z * m.w.w - m.w.z * m.y.w; in BASE_BEGIN_NAMESPACE() 384 const float coef04 = m.z.y * m.w.w - m.w.y * m.z.w; in BASE_BEGIN_NAMESPACE() 385 const float coef06 = m.y.y * m.w.w - m.w.y * m.y.w; in BASE_BEGIN_NAMESPACE() 392 const float coef12 = m.z.x * m.w.w - m.w.x * m.z.w; in BASE_BEGIN_NAMESPACE() 393 const float coef14 = m.y.x * m.w.w - m.w.x * m.y.w; in BASE_BEGIN_NAMESPACE() 415 const Vec4 vec3(m.y.w, m.x.w, m.x.w, m.x.w); in BASE_BEGIN_NAMESPACE() [all …]
|
H A D | quaternion.h | 38 float w; in BASE_BEGIN_NAMESPACE() member 61 : x(xParameter), y(yParameter), z(zParameter), w(wParameter) in BASE_BEGIN_NAMESPACE() 65 inline constexpr Quat(const float d[]) noexcept : x(d[0]), y(d[1]), z(d[2]), w(d[3]) {} in BASE_BEGIN_NAMESPACE() 71 return Quat(w * quat.x + x * quat.w + y * quat.z - z * quat.y, in BASE_BEGIN_NAMESPACE() 72 …w * quat.y + y * quat.w + z * quat.x - x * quat.z, w * quat.z + z * quat.w + x * quat.y - y * quat… in BASE_BEGIN_NAMESPACE() 73 w * quat.w - x * quat.x - y * quat.y - z * quat.z); in BASE_BEGIN_NAMESPACE() 81 return Quat(x / d, y / d, z / d, w / d); in BASE_BEGIN_NAMESPACE() 91 w /= d; in BASE_BEGIN_NAMESPACE() 93 x = y = z = w = HUGE_VALF; in BASE_BEGIN_NAMESPACE() 102 auto const temp = Quat(x - rhs.x, y - rhs.y, z - rhs.z, w - rhs.w); in BASE_BEGIN_NAMESPACE() [all …]
|
H A D | quaternion_util.h | 52 return quat.x * quat.x + quat.y * quat.y + quat.z * quat.z + quat.w * quat.w; in BASE_BEGIN_NAMESPACE() 58 return Math::sqrt(quat.x * quat.x + quat.y * quat.y + quat.z * quat.z + quat.w * quat.w); in BASE_BEGIN_NAMESPACE() 64 return q1.x * q2.x + q1.y * q2.y + q1.z * q2.z + q1.w * q2.w; in BASE_BEGIN_NAMESPACE() 131 return { x, y, z, w }; in BASE_BEGIN_NAMESPACE() 159 const float sinrCosp = +2.0f * (q.w * q.x + q.y * q.z); in BASE_BEGIN_NAMESPACE() 164 const float sinp = +2.0f * (q.w * q.y - q.z * q.x); in BASE_BEGIN_NAMESPACE() 180 return Quat(-q.x, -q.y, -q.z, q.w); in BASE_BEGIN_NAMESPACE() 201 return v + ((uv * q.w) + uuv) * 2.0f; in BASE_BEGIN_NAMESPACE() 225 return Quat(q.x + p.x, q.y + p.y, q.z + p.z, q.w + p.w); in BASE_BEGIN_NAMESPACE() 237 z.w = -z.w; in BASE_BEGIN_NAMESPACE() [all …]
|
H A D | vector.h | 588 if (w != rhs.w) { in BASE_BEGIN_NAMESPACE() 829 inline constexpr IVec4(int32_t x, int32_t y, int32_t z, int32_t w) : x(x), y(y), z(z), w(w) {} in BASE_BEGIN_NAMESPACE() 856 if (w != rhs.w) { in BASE_BEGIN_NAMESPACE() 1018 return Vec4(x + v2.x, y + v2.y, z + v2.z, w + v2.w); in BASE_BEGIN_NAMESPACE() 1026 w += rhs.w; in BASE_BEGIN_NAMESPACE() 1039 return Vec4(x - v2.x, y - v2.y, z - v2.z, w - v2.w); in BASE_BEGIN_NAMESPACE() 1047 w -= rhs.w; in BASE_BEGIN_NAMESPACE() 1062 w *= rhs.w; in BASE_BEGIN_NAMESPACE() 1077 w /= rhs.w; in BASE_BEGIN_NAMESPACE() 1091 w *= d; in BASE_BEGIN_NAMESPACE() [all …]
|
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/ |
H A D | rb_tree.c | 152 if (w->color == RB_RED) { in FillpRbEraseColorAtLeft() 153 w->color = RB_BLACK; in FillpRbEraseColorAtLeft() 158 if (((w->rbLeft == FILLP_NULL_PTR) || (w->rbLeft->color == RB_BLACK)) && in FillpRbEraseColorAtLeft() 159 ((w->rbRight == FILLP_NULL_PTR) || (w->rbRight->color == RB_BLACK))) { in FillpRbEraseColorAtLeft() 160 w->color = RB_RED; in FillpRbEraseColorAtLeft() 165 if ((w->rbRight == FILLP_NULL_PTR) || (w->rbRight->color == RB_BLACK)) { in FillpRbEraseColorAtLeft() 188 w->color = RB_BLACK; in FillpRbEraseColorAtRight() 193 if (((w->rbLeft == FILLP_NULL_PTR) || (w->rbLeft->color == RB_BLACK)) && in FillpRbEraseColorAtRight() 194 ((w->rbRight == FILLP_NULL_PTR) || (w->rbRight->color == RB_BLACK))) { in FillpRbEraseColorAtRight() 195 w->color = RB_RED; in FillpRbEraseColorAtRight() [all …]
|
/ohos5.0/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/engine/graphics/ |
H A D | XTexture.js | 112 if (w === -1) { 113 w = ww; 124 rid: rid, x: x, y: y, w: w, h: h, u0: x / ww, v0: y / hh, u1: (x + w) / ww, v1: y / hh, property in XTexture.callAllCuts.allCuts 135 if (w === -1) { 136 w = ww; 150 PutTexture(tex, w, h) { argument 152 this.ximages[rid] = { stat: 1, path: 'put' + rid, tex: tex, w: w, h: h }; property in XTexture.PutTexture.ximages 177 w: width, property in XTexture.loadTexture.ximages 188 let w = 1024; 203 w -= 1; [all …]
|
H A D | XMat4.js | 129 PerspectiveMatrix(n, f, w = NO_INITIAL_VAL, h = NO_INITIAL_VAL) { argument 130 if (w === NO_INITIAL_VAL) { 131 w = Scr.logicw; 136 let ret = w / (tan((30 * pi) / 180) * 2); 138 this.mat[0][0] = 2 / w; 148 orthoMat(x, y, w, h) { argument 149 this.move(-w / 2 - x, -h / 2 - y, 0); 150 this.scale(2 / w, -2 / h, 0);
|
/ohos5.0/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/engine/ |
H A D | XDefine.js | 19 static ReSize(w, h) { argument 20 Scr.width = w; 23 Scr.logich = (Scr.logicw * h) / w; 25 Scr.logicw = (Scr.logich * w) / h; 28 static setLogicScreenSize(w, h) { argument 29 if (Scr.logicw === w && Scr.width === w && Scr.logich === h && Scr.height === h) { 32 Scr.logicw = w; 34 Scr.width = w;
|
H A D | RightMenu.js | 104 let w = RightMenu.MENUW; 119 e.rect = [x, y, w, 32]; 128 e.rect = [x, y, w, 0]; 129 X2DFast.px2f.drawLine(x, y, x + w, y, 0xff808080, 2); 151 x + w, 163 RightMenu.callDrawText('<', x, w, OFFY_, textColor); 164 RightMenu.DrawGroup(e.group, x + w, y); 166 RightMenu.callDrawText('>', x, w, OFFY_, textColor); 172 static callDrawText(symbol, x, w, OFFY_, textColor) { argument 173 X2DFast.px2f.drawText(symbol, RightMenu.TEXT_SIZE, x + w, OFFY_, 1, 1, 0,
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/utils/ |
H A D | size.h | 32 inline SizeF(scalar w, scalar h) noexcept; 41 inline void SetWidth(scalar w); 56 inline SizeF::SizeF(scalar w, scalar h) noexcept : width_(w), height_(h) {} in SizeF() argument 80 inline void SizeF::SetWidth(scalar w) in SetWidth() argument 82 width_ = w; in SetWidth() 104 inline SizeI(int w, int h) noexcept; 113 inline void SetWidth(int w); 128 inline SizeI::SizeI(int w, int h) noexcept : width_(w), height_(h) {} in SizeI() argument 152 inline void SizeI::SetWidth(int w) in SetWidth() argument 154 width_ = w; in SetWidth()
|
/ohos5.0/base/update/updater/ |
H A D | updater_ux_guide.md | 119 | coms | type、id、x、y、w、h、fontSize、fontColor | 页面包含一组控件,定义了每个控件的基本属性,x、y、w、h确定了控件在页面上的唯一位置 | x、y、w、h… 154 "w": 480, 166 "w": 480, 194 "w": 624, 204 "w": 624, 221 "w": 624, 231 "w": 624, 260 "w": 432, 277 "w": 432, 295 "w": 432, [all …]
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_composer_adapter.cpp | 182 if (dstRect.x + dstRect.w <= 0 || in IsOutOfScreenRegion() 272 info.srcRect.w = std::min(static_cast<int32_t>(info.srcRect.w * xScale), bufferWidth); in GetComposerInfoSrcRect() 635 … layer->SetLayerSize(GraphicIRect {rect.y, screenHeight - rect.x - rect.w, rect.h, rect.w}); in SetLayerSize() 644 … GraphicIRect {screenWidth - rect.x - rect.w, screenHeight - rect.y - rect.h, rect.w, rect.h}); in SetLayerSize() 694 srcRect.w = dstRectI.IsEmpty() ? 0 : originSrcRect.w * resDstRect.width_ / dstRectI.width_; in LayerCrop() 703 dstRect.x, dstRect.y, dstRect.w, dstRect.h, srcRect.x, srcRect.y, srcRect.w, srcRect.h); in LayerCrop() 720 int32_t newWidth = srcRect.w; in LayerScaleDown() 723 if (dstRect.w <= 0 || dstRect.h <= 0 || srcRect.w <= 0 || srcRect.h <= 0) { in LayerScaleDown() 737 int32_t currentWidth = srcRect.w; in LayerScaleDown() 745 srcRect.w = newWidth; in LayerScaleDown() [all …]
|
H A D | rs_uni_render_composer_adapter.cpp | 340 info.srcRect.w = (bufferWidth / scale - (boundsWidth - info.srcRect.w)) * scale; in GetComposerInfoSrcRect() 404 info.srcRect.w = (bufferWidth / scale - (boundsWidth - info.srcRect.w)) * scale; in GetComposerInfoSrcRect() 844 if (srcRect.w <= 0 || srcRect.h <= 0 || dstRect.w <= 0 || dstRect.h <= 0) { in CheckStatusBeforeCreateLayer() 870 srcRect.w = dstRectI.IsEmpty() ? 0 : originSrcRect.w * resDstRect.width_ / dstRectI.width_; in LayerCrop() 879 dstRect.x, dstRect.y, dstRect.w, dstRect.h, srcRect.x, srcRect.y, srcRect.w, srcRect.h); in LayerCrop() 941 dstRect.x, dstRect.y, dstRect.w, dstRect.h, srcRect.x, srcRect.y, srcRect.w, srcRect.h); in LayerScaleDown() 1006 dstRect.x, dstRect.y, dstRect.w, dstRect.h, srcRect.x, srcRect.y, srcRect.w, srcRect.h); in LayerScaleDown() 1060 dstRect.x, dstRect.y, dstRect.w, dstRect.h, srcRect.x, srcRect.y, srcRect.w, srcRect.h); in LayerScaleFit() 1074 if (dstRect.x + dstRect.w <= 0 || in IsOutOfScreenRegion() 1264 … node.GetId(), info.dstRect.x, info.dstRect.y, info.dstRect.w, info.dstRect.h, info.srcRect.w, in CreateLayer() [all …]
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/drawing_ndk/cpp/interface/ |
H A D | bitmap_test.cpp | 86 int32_t w = 128; in OnTestPerformance() local 90 OH_Drawing_Image_Info imageInfo { w, h, COLOR_FORMAT_ARGB_4444, ALPHA_FORMAT_OPAQUE }; in OnTestPerformance() 92 OH_Drawing_Rect* rect = OH_Drawing_RectCreate(0, 0, w, h); in OnTestPerformance() 94 OH_Drawing_BitmapBuild(bm, w, h, &cFormat); in OnTestPerformance() 96 OH_Drawing_Bitmap* cPixels = OH_Drawing_BitmapCreateFromPixels(&imageInfo, pixels, w); in OnTestPerformance() 106 int32_t w = 256; in OnTestPerformance() local 110 OH_Drawing_Image_Info imageInfo { w, h, COLOR_FORMAT_RGBA_8888, ALPHA_FORMAT_PREMUL }; in OnTestPerformance() 112 OH_Drawing_Rect* rect = OH_Drawing_RectCreate(0, 0, w, h); in OnTestPerformance() 113 OH_Drawing_BitmapBuild(bm, w, h, &cFormat); in OnTestPerformance() 116 cPixels = OH_Drawing_BitmapCreateFromPixels(&imageInfo, pixels, w); in OnTestPerformance()
|
/ohos5.0/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/ |
H A D | rbtree.c | 259 w = x->p->right; in DeleteFixUpBlack() 260 if (IS_RED(w)) { in DeleteFixUpBlack() 261 SET_BLACK(w); in DeleteFixUpBlack() 266 if (IS_BLACK(w->left) && IS_BLACK(w->right)) { in DeleteFixUpBlack() 267 SET_RED(w); in DeleteFixUpBlack() 272 SET_RED(w); in DeleteFixUpBlack() 291 w = x->p->left; in DeleteFixUpRed() 292 if (IS_RED(w)) { in DeleteFixUpRed() 293 SET_BLACK(w); in DeleteFixUpRed() 298 if (IS_BLACK(w->right) && IS_BLACK(w->left)) { in DeleteFixUpRed() [all …]
|
/ohos5.0/foundation/resourceschedule/ffrt/src/sched/ |
H A D | task_runqueue.h | 58 …ffrt_executor_task_t* w = reinterpret_cast<ffrt_executor_task_t *>(reinterpret_cast<char *>(node) - in DeQueue() local 60 if (w->type != ffrt_normal_task && w->type != ffrt_queue_task) { in DeQueue() 61 w->wq[0] = &w->wq; in DeQueue() 62 w->wq[1] = &w->wq; in DeQueue() 64 return reinterpret_cast<CPUEUTask *>(w); in DeQueue()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/geometry/ng/ |
H A D | vector.h | 69 Vector4F(float xF, float yF, float zF, float wF) : x(xF), y(yF), z(zF), w(wF) {} in Vector4F() 73 …n NearEqual(x, other.x) && NearEqual(y, other.y) && NearEqual(z, other.z) && NearEqual(w, other.w); 79 float w = 0.0f; member 83 … Vector5F(float xF, float yF, float zF, float wF, float vF) : x(xF), y(yF), z(zF), w(wF), v(vF) {} in Vector5F() 88 NearEqual(w, other.w) && NearEqual(v, other.v); 94 float w = 0.0f; member
|
/ohos5.0/base/hiviewdfx/hiview/plugins/eventlogger/config/ |
H A D | event_logger_config | 11 event id="" name="SCREEN_ON_TIMEOUT" action="cmd:p,cmd:d,cmd:w,T,e" interval="10" 12 event id="" name="NO_FOCUS_WINDOW" action="cmd:w,cmd:a" interval="10" 19 event id="" name="REPEAT_SET_UI_NODE_ID" action="cmd:w,cmd:rs,cmd:scbCS,cmd:scbVP" interval="300" 21 event id="" name="SCREEN_ON" action="T,cmd:p,cmd:d,cmd:w" interval="0" 22 event id="" name="SCREEN_OFF" action="cmd:p,cmd:d,cmd:w" interval="0" 36 event id="" name="HIT_EMPTY_WARNING" action="cmd:w" interval="300" 42 event id="" name="USER_PANIC_WARNING" action="cmd:w" interval="180" 43 event id="" name="WINDOW_EXCEPTION_DETECTION" action="cmd:w" interval="300" 44 event id="" name="WINDOW_STATE_ERROR" action="cmd:w,cmd:scbCS" interval="300" 45 event id="" name="UIEXTENSION_TRANSPARENT_DETECTED" action="cmd:w" interval="300" [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/geometry/ |
H A D | quaternion.h | 26 Quaternion(double x, double y, double z, double w) : x_(x), y_(y), z_(z), w_(w) {} in Quaternion() argument 57 void SetW(double w) in SetW() argument 59 w_ = w; in SetW() 67 auto w = this->w_ + q.w_; variable 68 return Quaternion(x, y, z, w); 76 auto w = w_ * q.w_ - x_ * q.x_ - y_ * q.y_ - z_ * q.z_; variable 77 return Quaternion(x, y, z, w);
|
/ohos5.0/foundation/resourceschedule/ffrt/test/ut/testcase/ |
H A D | inherit_test.cpp | 50 ffrt_executor_task_t w; variable 51 w.type = 1; 52 auto* cputask = reinterpret_cast<SCPUEUTask*>(&w); 53 EXPECT_EQ(w.type, 1); 55 EXPECT_EQ(reinterpret_cast<uint64_t>(&(w.type)), reinterpret_cast<uint64_t>(&(cputask->type)));
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/utils/size_fuzzer/ |
H A D | size_fuzzer.cpp | 35 scalar w = GetObject<scalar>(); in SizeFuzzTest000() local 39 SizeF sizef1 = SizeF(w, h); in SizeFuzzTest000() 44 sizef.SetWidth(w); in SizeFuzzTest000() 58 int w = GetObject<int>(); in SizeFuzzTest001() local 62 SizeI s1 = SizeI(w, h); in SizeFuzzTest001() 67 s.SetWidth(w); in SizeFuzzTest001()
|
/ohos5.0/drivers/peripheral/display/composer/test/moduletest/ |
H A D | hdi_device_test.cpp | 288 static void AdjustLayerSettings(std::vector<LayerSettings> &settings, uint32_t w, uint32_t h) in AdjustLayerSettings() argument 293 DISPLAY_TEST_LOGD(" ratio w: %f ratio h: %f", setting.rectRatio.w, setting.rectRatio.h); in AdjustLayerSettings() 294 if ((setting.rectRatio.w > 0.0f) && (setting.rectRatio.h > 0.0f)) { in AdjustLayerSettings() 296 setting.displayRect.w = static_cast<uint32_t>(setting.rectRatio.w * w); in AdjustLayerSettings() 297 setting.displayRect.x = static_cast<uint32_t>(setting.rectRatio.x * w); in AdjustLayerSettings() 304 if ((setting.bufferRatio.h > 0.0f) || (setting.bufferRatio.w > 0.0f)) { in AdjustLayerSettings() 306 setting.bufferSize.w = static_cast<uint32_t>(setting.bufferRatio.w * w); in AdjustLayerSettings() 308 … setting.bufferRatio.w, setting.bufferRatio.h, setting.bufferSize.w, setting.bufferSize.h); in AdjustLayerSettings() 311 if ((setting.bufferSize.w == 0) || (setting.bufferSize.h == 0)) { in AdjustLayerSettings() 313 … setting.bufferSize.w, setting.bufferSize.h, setting.displayRect.w, setting.displayRect.h); in AdjustLayerSettings() [all …]
|
/ohos5.0/foundation/multimedia/av_codec/test/unittest/resources/video_res/test_hls/ |
H A D | out001.ts | 47 �1� Z՚ ��dR~ݪ�E���s������I�\�T�rD{ W|Gߺ�l^w� 48 ,�rEw��We���~3:��ց�t�� 77 …}���S@F��i0������'7@��̖`�J+�B�FyH3�G�/���U�S��mv=(�m@"v'��w�s{�&l�UA;�V0Hʉ�7V�… 151 …"5�Q;�4�nɔE W�SrK���DϮ�g�,~!��e���B�U+I;集��K������m�3�oj����_n�*w�v�%�!�.�C�ؔ,0:��,�… 186 ��"����"�]��;cڭ`s�SV[M�(D��Ur&���<�'�U�?�w��V���+y�%|½����� 232 …��1L^ ��J�^���Z����F��bŸ�]5���:���%��$��CB�aD}X]��VY ƺ����;�� W�y=WH�a\���/w��\2Q 318 λ��U��<����7Q�i�@Ԅ!˛[x;�\�w�^u|�Ǘg* 324 …�JG� pS�S�q�o�;/ٗ�g���u^s�+����/$ߏ�!�D��hW�凿)nA�ot0H2�z0[>KO�>w@N���g��v �� �.Ǹ��� 330 ��Q*����J"���#�|���8��0�"���))%˿�e/dñ�d��a�0u�ͣJX6� ߇T��a�|�>Ы���z�E*9�_}�[�h�)w7>�… 343 ��V�ٯX�7v�?Q�J���k[d��w���83�2A2�7Ք�a�?�O� [all …]
|
/ohos5.0/foundation/multimedia/av_codec/test/unittest/resources/demuxer_res/ |
H A D | test_mpeg4_Gop25_4sec.ts | 597 ��ANѰ���+@�����*J*eTGw�"�JX:NI�/L@����ЃI�|ٔ`��m�aqtA�M�0��.Cj"c:�w�4)��0PA�V�E6… 1282 w=5 1542 2yg��w���آ 2472 …��Lg���]h�a��F�t>0�gz\dA9��9�4L�iΚ��%���N�G�(������P4E�z����"�q,���Cɶ��*��5���w*n� 4198 ��Ø9�~ j3p�w��gyk��L��#�m��6��s-�sǾ���,yyөG(��� [i�<�)�Ӵ��w��ėa�����RƤ:����w���K�+"F�s… 5518 …��w��G(cY���no���k�}�}���pƣnPǛ�p�2m���Sl����n[�7-�r\��J���w��0�џ{�+�;#W{�=�.��mѝo������u… 5520 …�f�L��w����a����}��Ϸ�����v�ޯ�}�ܷܮ��*���y��q�}��o{�ޯ�����3�w�����w�}�����፶�1�ۍ���_��L�3vgf}��}��… 5819 w���$B�Z��wO��S���3O��p�\!�/�o��N��u�������Y+���R��H�І���;�%d����R��k���o���������ǟ��?����… 6484 �w��1��0��w�o�1�߆:y��o� 6895 �p��c�"��y��ߓ�:�¹po����g���g�c�����R���t���ӔƔ��R�(�ijl�*�r�� ӷ*طr�X��*�[㖪��sh��2Gv�߶�w [all …]
|