musique/0000755000175000017500000000000011715011710012062 5ustar flavioflaviomusique/src/0000775000175000017500000000000011715011710012653 5ustar flavioflaviomusique/src/view.h0000664000175000017500000000032011715011710013771 0ustar flavioflavio#ifndef VIEW_H #define VIEW_H class View { public: virtual QMap metadata() = 0; virtual void appear() = 0; virtual void disappear() = 0; }; #endif // VIEW_H musique/src/urllineedit.h0000664000175000017500000000613311715011710015347 0ustar flavioflavio/**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Commercial License Agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef URLLINEEDIT_H #define URLLINEEDIT_H #include #include #include #include QT_BEGIN_NAMESPACE class QLineEdit; QT_END_NAMESPACE class ClearButton; class ExLineEdit : public QWidget { Q_OBJECT public: ExLineEdit(QWidget *parent = 0); inline QLineEdit *lineEdit() const { return m_lineEdit; } void setLeftWidget(QWidget *widget); QWidget *leftWidget() const; void clear() { m_lineEdit->clear(); } QString text() { return m_lineEdit->text(); } QSize sizeHint() const; void updateGeometries(); void setFont(const QFont &); signals: void cleared(); private slots: void textChanged(const QString &text); protected: void focusInEvent(QFocusEvent *event); void focusOutEvent(QFocusEvent *event); void keyPressEvent(QKeyEvent *event); void paintEvent(QPaintEvent *event); void resizeEvent(QResizeEvent *event); bool event(QEvent *event); void initStyleOption(QStyleOptionFrameV2 *option) const; QWidget *m_leftWidget; QLineEdit *m_lineEdit; ClearButton *m_clearButton; }; #endif // URLLINEEDIT_H musique/src/urllineedit.cpp0000664000175000017500000001543111715011710015703 0ustar flavioflavio/**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Commercial License Agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "urllineedit.h" #include "searchlineedit.h" #include #include #include #include #include #include #include #include #include #include #include ExLineEdit::ExLineEdit(QWidget *parent) : QWidget(parent) , m_leftWidget(0) , m_lineEdit(new QLineEdit(this)) , m_clearButton(0) { setFocusPolicy(m_lineEdit->focusPolicy()); setAttribute(Qt::WA_InputMethodEnabled); setSizePolicy(m_lineEdit->sizePolicy()); setBackgroundRole(m_lineEdit->backgroundRole()); setMouseTracking(true); setAcceptDrops(true); setAttribute(Qt::WA_MacShowFocusRect, true); QPalette p = m_lineEdit->palette(); setPalette(p); // line edit m_lineEdit->setFrame(false); m_lineEdit->setFocusProxy(this); m_lineEdit->setAttribute(Qt::WA_MacShowFocusRect, false); m_lineEdit->setStyleSheet("background:transparent"); QPalette clearPalette = m_lineEdit->palette(); clearPalette.setBrush(QPalette::Base, QBrush(Qt::transparent)); m_lineEdit->setPalette(clearPalette); connect(m_lineEdit, SIGNAL(textChanged(const QString&)), this, SLOT(textChanged(const QString&))); // clearButton m_clearButton = new ClearButton(this); connect(m_clearButton, SIGNAL(clicked()), m_lineEdit, SLOT(clear())); connect(m_clearButton, SIGNAL(clicked()), SIGNAL(cleared())); connect(m_lineEdit, SIGNAL(textChanged(const QString&)), m_clearButton, SLOT(textChanged(const QString&))); } void ExLineEdit::setFont(const QFont &font) { m_lineEdit->setFont(font); updateGeometries(); } void ExLineEdit::setLeftWidget(QWidget *widget) { m_leftWidget = widget; } QWidget *ExLineEdit::leftWidget() const { return m_leftWidget; } void ExLineEdit::resizeEvent(QResizeEvent *event) { Q_ASSERT(m_leftWidget); updateGeometries(); QWidget::resizeEvent(event); } void ExLineEdit::updateGeometries() { QStyleOptionFrameV2 panel; initStyleOption(&panel); QRect rect = style()->subElementRect(QStyle::SE_LineEditContents, &panel, this); int padding = 3; // int height = rect.height() + padding*2; int width = rect.width(); // int m_leftWidgetHeight = m_leftWidget->height(); m_leftWidget->setGeometry(rect.x() + 2, 0, m_leftWidget->width(), m_leftWidget->height()); int clearButtonWidth = this->height(); m_lineEdit->setGeometry(m_leftWidget->x() + m_leftWidget->width(), padding, width - clearButtonWidth - m_leftWidget->width(), this->height() - padding*2); m_clearButton->setGeometry(this->width() - clearButtonWidth, 0, clearButtonWidth, this->height()); } void ExLineEdit::initStyleOption(QStyleOptionFrameV2 *option) const { option->initFrom(this); option->rect = contentsRect(); option->lineWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth, option, this); option->midLineWidth = 0; option->state |= QStyle::State_Sunken; if (m_lineEdit->isReadOnly()) option->state |= QStyle::State_ReadOnly; #ifdef QT_KEYPAD_NAVIGATION if (hasEditFocus()) option->state |= QStyle::State_HasEditFocus; #endif option->features = QStyleOptionFrameV2::None; } QSize ExLineEdit::sizeHint() const { m_lineEdit->setFrame(true); QSize size = m_lineEdit->sizeHint(); m_lineEdit->setFrame(false); size = size + QSize(3, 3); return size; } void ExLineEdit::focusInEvent(QFocusEvent *event) { m_lineEdit->event(event); QWidget::focusInEvent(event); } void ExLineEdit::focusOutEvent(QFocusEvent *event) { m_lineEdit->event(event); if (m_lineEdit->completer()) { connect(m_lineEdit->completer(), SIGNAL(activated(QString)), m_lineEdit, SLOT(setText(QString))); connect(m_lineEdit->completer(), SIGNAL(highlighted(QString)), m_lineEdit, SLOT(_q_completionHighlighted(QString))); } QWidget::focusOutEvent(event); } void ExLineEdit::keyPressEvent(QKeyEvent *event) { if (event->key() == Qt::Key_Escape && !m_lineEdit->text().isEmpty()) { m_lineEdit->clear(); } m_lineEdit->event(event); QWidget::keyPressEvent(event); } bool ExLineEdit::event(QEvent *event) { if (event->type() == QEvent::ShortcutOverride || event->type() == QEvent::InputMethod) m_lineEdit->event(event); return QWidget::event(event); } void ExLineEdit::paintEvent(QPaintEvent *) { QPainter p(this); QStyleOptionFrameV2 panel; initStyleOption(&panel); style()->drawPrimitive(QStyle::PE_PanelLineEdit, &panel, &p, this); } void ExLineEdit::textChanged(const QString &text) { if (text.isEmpty()) emit cleared(); } musique/src/updatechecker.h0000664000175000017500000000130211715011710015627 0ustar flavioflavio#ifndef UPDATECHECKER_H #define UPDATECHECKER_H #include #include class UpdateChecker : public QObject { Q_OBJECT public: UpdateChecker(); void checkForUpdate(); QString remoteVersion(); signals: void newVersion(QString); private slots: void requestFinished(QByteArray); private: bool m_needUpdate; QString m_remoteVersion; QNetworkReply *networkReply; }; class UpdateCheckerStreamReader : public QXmlStreamReader { public: bool read(QByteArray data); QString remoteVersion(); bool needUpdate() { return m_needUpdate; } private: QString m_remoteVersion; bool m_needUpdate; }; #endif // UPDATECHECKER_H musique/src/updatechecker.cpp0000664000175000017500000000363111715011710016171 0ustar flavioflavio#include "updatechecker.h" #include "networkaccess.h" #include "constants.h" namespace The { NetworkAccess* http(); } UpdateChecker::UpdateChecker() { m_needUpdate = false; } void UpdateChecker::checkForUpdate() { QUrl updateUrl(QString(Constants::WEBSITE) + "-ws/release.xml"); updateUrl.addQueryItem("v", Constants::VERSION); #ifdef APP_MAC updateUrl.addQueryItem("os", "mac"); #endif #ifdef APP_WIN updateUrl.addQueryItem("os", "win"); #endif #ifdef APP_DEMO updateUrl.addQueryItem("t", "demo"); #endif #ifdef APP_MAC_STORE updateUrl.addQueryItem("store", "mac"); #endif QObject *reply = The::http()->get(updateUrl); connect(reply, SIGNAL(data(QByteArray)), SLOT(requestFinished(QByteArray))); } void UpdateChecker::requestFinished(QByteArray data) { UpdateCheckerStreamReader reader; reader.read(data); m_needUpdate = reader.needUpdate(); m_remoteVersion = reader.remoteVersion(); if (m_needUpdate) emit newVersion(m_remoteVersion); } QString UpdateChecker::remoteVersion() { return m_remoteVersion; } // --- Reader --- bool UpdateCheckerStreamReader::read(QByteArray data) { addData(data); while (!atEnd()) { readNext(); if (isStartElement()) { if (name() == "release") { while (!atEnd()) { readNext(); if (isStartElement() && name() == "version") { QString remoteVersion = readElementText(); // qDebug() << remoteVersion << QString(Constants::VERSION); m_needUpdate = remoteVersion != QString(Constants::VERSION); m_remoteVersion = remoteVersion; break; } } } } } return !error(); } QString UpdateCheckerStreamReader::remoteVersion() { return m_remoteVersion; } musique/src/tracksqlmodel.h0000664000175000017500000000101511715011710015666 0ustar flavioflavio#ifndef TRACKSQLMODEL_H #define TRACKSQLMODEL_H #include "basesqlmodel.h" #include "model/track.h" #include "finderwidget.h" class TrackSqlModel : public BaseSqlModel { Q_OBJECT public: TrackSqlModel(QObject *parent = 0); QVariant data(const QModelIndex &item, int role) const; Item* itemAt(const QModelIndex &index) const { const TrackPointer itemPointer = index.data(Finder::DataObjectRole).value(); return dynamic_cast(itemPointer.data()); } }; #endif musique/src/tracksqlmodel.cpp0000664000175000017500000000224311715011710016225 0ustar flavioflavio#include "tracksqlmodel.h" TrackSqlModel::TrackSqlModel(QObject *parent) : BaseSqlModel(parent) { } QVariant TrackSqlModel::data(const QModelIndex &index, int role) const { Track *track = 0; int trackId = 0; switch (role) { case Qt::DisplayRole: trackId = QSqlQueryModel::data(QSqlQueryModel::index(index.row(), 0)).toInt(); track = Track::forId(trackId); return track->getTitle(); case Finder::ItemTypeRole: return Finder::ItemTypeTrack; case Finder::DataObjectRole: trackId = QSqlQueryModel::data(QSqlQueryModel::index(index.row(), 0)).toInt(); track = Track::forId(trackId); return QVariant::fromValue(QPointer(track)); case Finder::HoveredItemRole: return hoveredRow == index.row(); case Finder::PlayIconAnimationItemRole: return timeLine->currentFrame() / 1000.; case Finder::PlayIconHoveredRole: return playIconHovered; case Qt::StatusTipRole: trackId = QSqlQueryModel::data(QSqlQueryModel::index(index.row(), 0)).toInt(); track = Track::forId(trackId); return track->getStatusTip(); } return QVariant(); } musique/src/trackmimedata.h0000664000175000017500000000123711715011710015635 0ustar flavioflavio#ifndef TRACKMIMEDATA_H #define TRACKMIMEDATA_H #include #include "model/track.h" #include "constants.h" static const QString TRACK_MIME = "application/x-" + QLatin1String(Constants::UNIX_NAME) + "-tracks"; class TrackMimeData : public QMimeData { public: TrackMimeData(); virtual QStringList formats() const; virtual bool hasFormat( const QString &mimeType ) const; QList tracks() const { return m_tracks; } void addTrack(Track *track) { m_tracks << track; } void addTracks(QList tracks) { m_tracks.append(tracks); } private: QList m_tracks; }; #endif // TRACKMIMEDATA_H musique/src/trackmimedata.cpp0000664000175000017500000000047411715011710016172 0ustar flavioflavio#include "trackmimedata.h" TrackMimeData::TrackMimeData() { } QStringList TrackMimeData::formats() const { QStringList formats( QMimeData::formats() ); formats.append(TRACK_MIME); return formats; } bool TrackMimeData::hasFormat( const QString &mimeType ) const { return mimeType == TRACK_MIME; } musique/src/tracklistview.h0000664000175000017500000000040711715011710015720 0ustar flavioflavio#ifndef TRACKLISTVIEW_H #define TRACKLISTVIEW_H #include #include "basefinderview.h" class TrackListView : public QListView { Q_OBJECT public: TrackListView(QWidget *parent); public slots: void appear(); }; #endif // TRACKLISTVIEW_H musique/src/tracklistview.cpp0000664000175000017500000000222011715011710016246 0ustar flavioflavio#include "tracklistview.h" #include "trackitemdelegate.h" #include "database.h" #include #include "tracksqlmodel.h" TrackListView::TrackListView(QWidget *parent) : QListView(parent) { setWindowTitle(tr("Tracks")); this->setItemDelegate(new TrackItemDelegate(this)); this->setSelectionMode(QAbstractItemView::ExtendedSelection); this->setMouseTracking(true); // layout this->setResizeMode(QListView::Adjust); this->setMovement(QListView::Static); this->setUniformItemSizes(true); // colors QPalette p = palette(); p.setBrush(QPalette::Base, Qt::black); p.setBrush(QPalette::Text, Qt::white); this->setPalette(p); // dragndrop this->setDragEnabled(true); // this->setAcceptDrops(true); // this->setDropIndicatorShown(true); this->setDragDropMode(QAbstractItemView::DragOnly); // cosmetics this->setVerticalScrollMode(QAbstractItemView::ScrollPerPixel); this->setFrameShape( QFrame::NoFrame ); this->setAttribute(Qt::WA_MacShowFocusRect, false); verticalScrollBar()->setPageStep(3); verticalScrollBar()->setSingleStep(1); } void TrackListView::appear() { } musique/src/trackitemdelegate.h0000664000175000017500000000101011715011710016472 0ustar flavioflavio#ifndef TRACKITEMDELEGATE_H #define TRACKITEMDELEGATE_H #include class TrackItemDelegate : public QStyledItemDelegate { Q_OBJECT public: TrackItemDelegate(QObject *parent = 0); QSize sizeHint( const QStyleOptionViewItem&, const QModelIndex&) const; void paint( QPainter*, const QStyleOptionViewItem&, const QModelIndex&) const; private: void paintTrack( QPainter*, const QStyleOptionViewItem&, const QModelIndex&) const; static const int PADDING; }; #endif // TRACKITEMDELEGATE_H musique/src/trackitemdelegate.cpp0000664000175000017500000000631111715011710017036 0ustar flavioflavio#include "trackitemdelegate.h" #include "finderwidget.h" #include "model/track.h" const int TrackItemDelegate::PADDING = 10; TrackItemDelegate::TrackItemDelegate(QObject *parent) : QStyledItemDelegate(parent) { } QSize TrackItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex& /*index*/) const { // determine item height based on font metrics int itemHeight = option.fontMetrics.height() * 2; return QSize(itemHeight, itemHeight); } void TrackItemDelegate::paint( QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index ) const { QApplication::style()->drawPrimitive( QStyle::PE_PanelItemViewItem, &option, painter ); paintTrack(painter, option, index); } void TrackItemDelegate::paintTrack(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const { // get the data object const TrackPointer trackPointer = index.data(Finder::DataObjectRole).value(); Track *track = trackPointer.data(); if (!track) return; const bool isSelected = option.state & QStyle::State_Selected; painter->save(); // text color if (isSelected) painter->setPen(QPen(option.palette.brush(QPalette::HighlightedText), 0)); else painter->setPen(QPen(option.palette.brush(QPalette::Text), 0)); painter->translate(option.rect.topLeft()); const QRect line(0, 0, option.rect.width(), option.rect.height()); QPointF textLoc(PADDING * 2, 0); // track number if (track->getNumber() > 0) { painter->save(); QFont boldFont = painter->font(); boldFont.setBold(true); painter->setFont(boldFont); QString trackString = QString("%1").arg(track->getNumber(), 2, 10, QChar('0')); QSizeF trackStringSize(QFontMetrics(painter->font()).size( Qt::TextSingleLine, trackString)); QRect trackTextBox(textLoc.x(), textLoc.y(), trackStringSize.width(), line.height()); QRect trackRoundedRect = trackTextBox; trackRoundedRect.setY((line.height() - trackStringSize.height()) / 2); trackRoundedRect.setHeight(trackStringSize.height()); trackRoundedRect.adjust(-PADDING/2, -PADDING/3, PADDING/2, PADDING/3); painter->setOpacity(.75); painter->setRenderHints(QPainter::Antialiasing, true); painter->setBrush(Qt::white); painter->setPen(Qt::black); painter->drawRoundedRect(trackRoundedRect, PADDING/2, PADDING/2, Qt::AbsoluteSize); painter->drawText(trackTextBox, Qt::AlignCenter, trackString); painter->restore(); } // title QString titleString = track->getTitle(); QSizeF titleStringSize(QFontMetrics(painter->font()).size( Qt::TextSingleLine, titleString)); QSizeF trackStringSize(QFontMetrics(painter->font()).size( Qt::TextSingleLine, "00")); textLoc.setX(textLoc.x() + trackStringSize.width() + PADDING * 2); QRect titleTextBox(textLoc.x(), textLoc.y(), titleStringSize.width(), line.height()); painter->drawText(titleTextBox, Qt::AlignVCenter | Qt::AlignLeft, track->getTitle()); painter->restore(); } musique/src/suggester.h0000664000175000017500000000034511715011710015036 0ustar flavioflavio#ifndef SUGGESTER_H #define SUGGESTER_H #include class Suggester : public QObject { Q_OBJECT public: virtual void suggest(QString query) = 0; signals: void ready(QStringList); }; #endif // SUGGESTER_H musique/src/spacer.h0000664000175000017500000000027611715011710014306 0ustar flavioflavio#ifndef SPACER_H #define SPACER_H #include class Spacer : public QWidget { public: Spacer(QWidget *parent = 0); protected: QSize sizeHint() const; }; #endif // SPACER_H musique/src/spacer.cpp0000664000175000017500000000021011715011710014625 0ustar flavioflavio#include "spacer.h" Spacer::Spacer(QWidget *parent) : QWidget(parent) { } QSize Spacer::sizeHint() const { return QSize(10, 1); } musique/src/segmentedcontrol.h0000664000175000017500000000254111715011710016402 0ustar flavioflavio#ifndef SEGMENTEDCONTROL_H #define SEGMENTEDCONTROL_H #include class SegmentedControl : public QWidget { Q_OBJECT public: SegmentedControl(QWidget *parent = 0); ~SegmentedControl(); QAction *addAction(QAction *action); bool setCheckedAction(int index); bool setCheckedAction(QAction *action); QSize minimumSizeHint(void) const; signals: void checkedActionChanged(QAction & action); protected: void paintEvent(QPaintEvent *event); void mouseMoveEvent(QMouseEvent *event); void mousePressEvent(QMouseEvent *event); void mouseReleaseEvent(QMouseEvent *event); void leaveEvent(QEvent *event); private: void drawButton(QPainter *painter, const QRect& rect, const QAction *action); void drawUnselectedButton(QPainter *painter, const QRect& rect, const QAction *action); void drawSelectedButton(QPainter *painter, const QRect& rect, const QAction *action); void paintButton(QPainter *painter, const QRect& rect, const QAction *action); QAction *hoveredAction(const QPoint& pos) const; int calculateButtonWidth(void) const; class Private; Private *d; }; #endif /* !SEGMENTEDCONTROL_H */ musique/src/segmentedcontrol.cpp0000664000175000017500000001651711715011710016745 0ustar flavioflavio#include "segmentedcontrol.h" #include "fontutils.h" static const QColor borderColor = QColor(0x26, 0x26, 0x26); class SegmentedControl::Private { public: QList actionList; QAction *checkedAction; QAction *hoveredAction; QAction *pressedAction; }; SegmentedControl::SegmentedControl (QWidget *parent) : QWidget(parent), d(new SegmentedControl::Private) { setMouseTracking(true); d->hoveredAction = 0; d->checkedAction = 0; d->pressedAction = 0; } SegmentedControl::~SegmentedControl() { delete d; } QAction *SegmentedControl::addAction(QAction *action) { QWidget::addAction(action); action->setCheckable(true); d->actionList.append(action); return action; } bool SegmentedControl::setCheckedAction(int index) { if (index < 0) { d->checkedAction = 0; return true; } QAction* newCheckedAction = d->actionList.at(index); return setCheckedAction(newCheckedAction); } bool SegmentedControl::setCheckedAction(QAction *action) { if (d->checkedAction == action) { return false; } if (d->checkedAction) d->checkedAction->setChecked(false); d->checkedAction = action; d->checkedAction->setChecked(true); update(); return true; } QSize SegmentedControl::minimumSizeHint (void) const { int itemsWidth = calculateButtonWidth() * d->actionList.size() * 1.2; return(QSize(itemsWidth, QFontMetrics(font()).height() * 1.9)); } void SegmentedControl::paintEvent (QPaintEvent *event) { int height = event->rect().height(); int width = event->rect().width(); QPainter p(this); QLinearGradient linearGrad(rect().topLeft(), rect().bottomLeft()); linearGrad.setColorAt(0, borderColor); linearGrad.setColorAt(1, QColor(0x3c, 0x3c, 0x3c)); p.fillRect(rect(), QBrush(linearGrad)); // Calculate Buttons Size & Location const int buttonWidth = width / d->actionList.size(); // Draw Buttons QRect rect(0, 0, buttonWidth, height); const int actionCount = d->actionList.size(); for (int i = 0; i < actionCount; i++) { QAction *action = d->actionList.at(i); if (i + 1 == actionCount) { rect.setWidth(width - buttonWidth * (actionCount-1)); drawButton(&p, rect, action); } else { drawButton(&p, rect, action); rect.moveLeft(rect.x() + rect.width()); } } } void SegmentedControl::mouseMoveEvent (QMouseEvent *event) { QWidget::mouseMoveEvent(event); QAction *action = hoveredAction(event->pos()); if (!action && d->hoveredAction) { d->hoveredAction = 0; update(); } else if (action && action != d->hoveredAction) { d->hoveredAction = action; action->hover(); update(); // status tip QMainWindow* mainWindow = dynamic_cast(window()); if (mainWindow) mainWindow->statusBar()->showMessage(action->statusTip()); } } void SegmentedControl::mousePressEvent(QMouseEvent *event) { QWidget::mousePressEvent(event); if (d->hoveredAction) { d->pressedAction = d->hoveredAction; update(); } } void SegmentedControl::mouseReleaseEvent(QMouseEvent *event) { QWidget::mouseReleaseEvent(event); d->pressedAction = 0; if (d->hoveredAction) { bool changed = setCheckedAction(d->hoveredAction); if (changed) d->hoveredAction->trigger(); } } void SegmentedControl::leaveEvent(QEvent *event) { QWidget::leaveEvent(event); // status tip QMainWindow* mainWindow = dynamic_cast(window()); if (mainWindow) mainWindow->statusBar()->clearMessage(); d->hoveredAction = 0; d->pressedAction = 0; update(); } QAction *SegmentedControl::hoveredAction(const QPoint& pos) const { if (pos.y() <= 0 || pos.y() >= height()) return 0; int buttonWidth = width() / d->actionList.size(); int buttonsWidth = width(); int buttonsX = 0; if (pos.x() <= buttonsX || pos.x() >= (buttonsX + buttonsWidth)) return 0; int buttonIndex = (pos.x() - buttonsX) / buttonWidth; if (buttonIndex >= d->actionList.size()) return 0; return(d->actionList[buttonIndex]); } int SegmentedControl::calculateButtonWidth (void) const { QFont smallerBoldFont = FontUtils::smallBold(); QFontMetrics fontMetrics(smallerBoldFont); int tmpItemWidth, itemWidth = 0; foreach (QAction *action, d->actionList) { tmpItemWidth = fontMetrics.width(action->text()); if (itemWidth < tmpItemWidth) itemWidth = tmpItemWidth; } return itemWidth; } void SegmentedControl::drawButton (QPainter *painter, const QRect& rect, const QAction *action) { if (action == d->checkedAction) drawSelectedButton(painter, rect, action); else drawUnselectedButton(painter, rect, action); } void SegmentedControl::drawUnselectedButton (QPainter *painter, const QRect& rect, const QAction *action) { paintButton(painter, rect, action); } void SegmentedControl::drawSelectedButton (QPainter *painter, const QRect& rect, const QAction *action) { painter->save(); painter->translate(rect.topLeft()); const int width = rect.width(); const int height = rect.height(); const int hCenter = width * .5; QRadialGradient gradient(hCenter, 0, width, hCenter, 0); gradient.setColorAt(1, Qt::black); gradient.setColorAt(0, QColor(0x33, 0x33, 0x33)); painter->fillRect(0, 0, width, height, QBrush(gradient)); painter->restore(); paintButton(painter, rect, action); } void SegmentedControl::paintButton(QPainter *painter, const QRect& rect, const QAction *action) { painter->save(); painter->translate(rect.topLeft()); const int height = rect.height(); const int width = rect.width(); if (action == d->pressedAction && action != d->checkedAction) { const int hCenter = width * .5; QRadialGradient gradient(hCenter, 0, width, hCenter, 0); gradient.setColorAt(1, QColor(0x00, 0x00, 0x00, 0)); gradient.setColorAt(0, QColor(0x00, 0x00, 0x00, 16)); painter->fillRect(0, 0, width, height, QBrush(gradient)); } else if (action == d->hoveredAction && action != d->checkedAction) { const int hCenter = width * .5; QRadialGradient gradient(hCenter, 0, width, hCenter, 0); gradient.setColorAt(1, QColor(0xff, 0xff, 0xff, 0)); gradient.setColorAt(0, QColor(0xff, 0xff, 0xff, 16)); painter->fillRect(0, 0, width, height, QBrush(gradient)); } painter->setPen(borderColor); #if defined(APP_MAC) | defined(APP_WIN) painter->drawRect(-1, -1, width, height); #else painter->drawRect(0, 0, width, height - 1); #endif painter->setFont(FontUtils::smallBold()); // text shadow painter->setPen(QColor(0, 0, 0, 128)); painter->drawText(0, -1, width, height, Qt::AlignCenter, action->text()); painter->setPen(QPen(Qt::white, 1)); painter->drawText(0, 0, width, height, Qt::AlignCenter, action->text()); painter->restore(); } musique/src/searchview.h0000664000175000017500000000051211715011710015162 0ustar flavioflavio#ifndef SEARCHVIEW_H #define SEARCHVIEW_H #include #include "basefinderview.h" class SearchView : public BaseFinderView { Q_OBJECT public: SearchView(QWidget *parent); void search(QString query); protected: void paintEvent(QPaintEvent *event); private: QLabel *label; }; #endif // SEARCHVIEW_H musique/src/searchview.cpp0000664000175000017500000000252711715011710015525 0ustar flavioflavio#include "searchview.h" #include "fontutils.h" SearchView::SearchView(QWidget *parent) : BaseFinderView(parent) { /* QBoxLayout *layout = new QVBoxLayout(this); layout->setSpacing(0); layout->setMargin(0); layout->setAlignment(Qt::AlignTop); label = new QLabel(); label->setPalette(p); label->setFont(FontUtils::big()); label->setMargin(20); layout->addWidget(label); */ // itemDelegate()->set } void SearchView::search(QString query) { // label->setText(tr("Search results for '%1'").arg("" + query + "")); } void SearchView::paintEvent(QPaintEvent *event) { QListView::paintEvent(event); if (model()->rowCount() == 0) { event->accept(); QString emptyMessage = tr("Your search had no results."); QPainter painter(this->viewport()); QPen textPen; textPen.setBrush(palette().mid()); painter.setPen(textPen); painter.setFont(FontUtils::bigBold()); QSize textSize(QFontMetrics(painter.font()).size(Qt::TextSingleLine, emptyMessage)); QPoint centerPoint((this->width()-textSize.width())/2, ((this->height()-textSize.height())/2)); QRect centerRect(centerPoint, textSize); QRect boundRect; painter.drawText(centerRect, Qt::AlignCenter, emptyMessage, &boundRect); } } musique/src/searchmodel.h0000664000175000017500000000261611715011710015317 0ustar flavioflavio#ifndef SEARCHMODEL_H #define SEARCHMODEL_H #include class ArtistSqlModel; class AlbumSqlModel; class TrackSqlModel; class FileSystemModel; class FinderWidget; class Item; class SearchModel : public QAbstractListModel { Q_OBJECT public: SearchModel(QObject *parent = 0); void search(QString query); void setHoveredRow(int row); public slots: void clearHover(); void enterPlayIconHover(); void exitPlayIconHover(); protected: int rowCount(const QModelIndex & /* parent */) const; QVariant data(const QModelIndex &item, int role) const; int columnCount(const QModelIndex &parent = QModelIndex()) const { return 1; } private slots: void updatePlayIcon(); void itemEntered(const QModelIndex &index); void itemActivated(const QModelIndex &index); void itemPlayed(const QModelIndex &index); private: Item* itemAt(const QModelIndex &index) const; ArtistSqlModel *artistListModel; AlbumSqlModel *albumListModel; TrackSqlModel *trackListModel; FileSystemModel *fileSystemModel; // drag and drop Qt::ItemFlags flags(const QModelIndex &index) const; QStringList mimeTypes() const; Qt::DropActions supportedDropActions() const; QMimeData* mimeData( const QModelIndexList &indexes ) const; int hoveredRow; QTimeLine * timeLine; bool playIconHovered; FinderWidget *finder; }; #endif // SEARCHMODEL_H musique/src/searchmodel.cpp0000664000175000017500000001633611715011710015656 0ustar flavioflavio#include "searchmodel.h" #include "model/artist.h" #include "model/album.h" #include "artistsqlmodel.h" #include "albumsqlmodel.h" #include "tracksqlmodel.h" #include "filesystemmodel.h" #include "filteringfilesystemmodel.h" #include "database.h" #include "trackmimedata.h" #include "finderwidget.h" SearchModel::SearchModel(QObject *parent) : QAbstractListModel(parent) { finder = dynamic_cast(parent); artistListModel = new ArtistSqlModel(this); albumListModel = new AlbumSqlModel(this); trackListModel = new TrackSqlModel(this); fileSystemModel = new FileSystemModel(this); fileSystemModel->setResolveSymlinks(true); fileSystemModel->setFilter(QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot); FilteringFileSystemModel *proxyModel = new FilteringFileSystemModel(this); proxyModel->setSourceModel(fileSystemModel); hoveredRow = -1; playIconHovered = false; timeLine = new QTimeLine(250, this); timeLine->setFrameRange(1000, 0); connect(timeLine, SIGNAL(frameChanged(int)), SLOT(updatePlayIcon())); } int SearchModel::rowCount(const QModelIndex &parent) const { return artistListModel->rowCount(parent) + albumListModel->rowCount(parent) + trackListModel->rowCount(parent); } QVariant SearchModel::data(const QModelIndex &index, int role) const { const int row = index.row(); const int artistRowCount = artistListModel->rowCount(index.parent()); const int albumRowCount = albumListModel->rowCount(index.parent()); const int trackRowCount = trackListModel->rowCount(index.parent()); switch (role) { case Finder::HoveredItemRole: return hoveredRow == row; case Finder::PlayIconAnimationItemRole: return timeLine->currentFrame() / 1000.; case Finder::PlayIconHoveredRole: return playIconHovered; default: if (row >= 0 && row < artistRowCount) { return artistListModel->data(index, role); } else if (row >= artistRowCount && row < artistRowCount + albumRowCount) { return albumListModel->data(createIndex( row - artistRowCount, index.column() ), role); } else if (row >= artistRowCount + albumRowCount && row < artistRowCount + albumRowCount + trackRowCount) { return trackListModel->data(createIndex( row - artistRowCount - albumRowCount, index.column() ), role); } } return QVariant(); } void SearchModel::search(QString query) { QString likeQuery = "%" + query + "%"; QSqlQuery q(Database::instance().getConnection()); q.prepare("select id from artists where name like ? and trackCount>1 order by trackCount desc"); q.bindValue(0, likeQuery); q.exec(); artistListModel->setQuery(q); if (artistListModel->lastError().isValid()) qDebug() << artistListModel->lastError(); q.prepare("select id from albums where (title like ? or year=?) and trackCount>0 order by year desc, trackCount desc"); q.bindValue(0, likeQuery); q.bindValue(1, query); q.exec(); albumListModel->setQuery(q); if (albumListModel->lastError().isValid()) qDebug() << albumListModel->lastError(); q.prepare("select id from tracks where title like ? order by track, path"); q.bindValue(0, likeQuery); q.exec(); trackListModel->setQuery(q); if (trackListModel->lastError().isValid()) qDebug() << trackListModel->lastError(); reset(); } Item* SearchModel::itemAt(const QModelIndex &index) const { Item *item = 0; int itemType = index.data(Finder::ItemTypeRole).toInt(); if (itemType == Finder::ItemTypeArtist) { const ArtistPointer pointer = index.data(Finder::DataObjectRole).value(); item = dynamic_cast(pointer.data()); } else if (itemType == Finder::ItemTypeAlbum) { const AlbumPointer pointer = index.data(Finder::DataObjectRole).value(); item = dynamic_cast(pointer.data()); } else if (itemType == Finder::ItemTypeFolder) { } else if (itemType == Finder::ItemTypeTrack) { const TrackPointer pointer = index.data(Finder::DataObjectRole).value(); item = dynamic_cast(pointer.data()); } return item; } // --- Events --- void SearchModel::itemEntered ( const QModelIndex & index ) { this->setHoveredRow(index.row()); } void SearchModel::itemActivated ( const QModelIndex & index ) { int itemType = index.data(Finder::ItemTypeRole).toInt(); if (itemType == Finder::ItemTypeArtist) { const ArtistPointer pointer = index.data(Finder::DataObjectRole).value(); finder->artistActivated(pointer.data()); } else if (itemType == Finder::ItemTypeAlbum) { const AlbumPointer pointer = index.data(Finder::DataObjectRole).value(); finder->albumActivated(pointer.data()); } else if (itemType == Finder::ItemTypeFolder) { } else if (itemType == Finder::ItemTypeTrack) { const TrackPointer pointer = index.data(Finder::DataObjectRole).value(); finder->trackActivated(pointer.data()); } } void SearchModel::itemPlayed ( const QModelIndex & index ) { Item *item = itemAt(index); if (!item) return; QList tracks = item->getTracks(); finder->addTracksAndPlay(tracks); } // --- Hover --- void SearchModel::setHoveredRow(int row) { int oldRow = hoveredRow; hoveredRow = row; emit dataChanged( createIndex( oldRow, 0 ), createIndex( oldRow, columnCount()-1 ) ); emit dataChanged( createIndex( hoveredRow, 0 ), createIndex( hoveredRow, columnCount()-1 ) ); } void SearchModel::clearHover() { emit dataChanged( createIndex( hoveredRow, 0 ), createIndex( hoveredRow, columnCount()-1 ) ); hoveredRow = -1; // timeLine->stop(); } void SearchModel::enterPlayIconHover() { if (playIconHovered) return; playIconHovered = true; if (timeLine->state() != QTimeLine::Running) { timeLine->setDirection(QTimeLine::Forward); timeLine->start(); } } void SearchModel::exitPlayIconHover() { if (!playIconHovered) return; playIconHovered = false; if (timeLine->state() == QTimeLine::Running) { timeLine->stop(); timeLine->setDirection(QTimeLine::Backward); timeLine->start(); } setHoveredRow(hoveredRow); } void SearchModel::updatePlayIcon() { emit dataChanged( createIndex( hoveredRow, 0 ), createIndex( hoveredRow, columnCount()-1 ) ); } // --- Sturm und drang --- Qt::DropActions SearchModel::supportedDropActions() const { return Qt::MoveAction; } Qt::ItemFlags SearchModel::flags(const QModelIndex &index) const { Qt::ItemFlags defaultFlags = QAbstractItemModel::flags(index); if (index.isValid()) { return ( defaultFlags | Qt::ItemIsDragEnabled ); } else return defaultFlags; } QStringList SearchModel::mimeTypes() const { QStringList types; types << TRACK_MIME; return types; } QMimeData* SearchModel::mimeData( const QModelIndexList &indexes ) const { TrackMimeData* mime = new TrackMimeData(); foreach( const QModelIndex &index, indexes ) { Item *item = itemAt(index); if (item) { // qDebug() << item->getTracks(); mime->addTracks(item->getTracks()); } } return mime; } musique/src/searchlineedit.h0000664000175000017500000000674711715011710016025 0ustar flavioflavio/**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Commercial License Agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef SEARCHLINEEDIT_H #define SEARCHLINEEDIT_H #include "urllineedit.h" #include "autocomplete.h" #include #include QT_BEGIN_NAMESPACE class QMenu; QT_END_NAMESPACE class SearchButton; class Suggester; /* Clear button on the right hand side of the search widget. Hidden by default "A circle with an X in it" */ class ClearButton : public QAbstractButton { Q_OBJECT public: ClearButton(QWidget *parent = 0); void paintEvent(QPaintEvent *event); public slots: void textChanged(const QString &text); }; class SearchLineEdit : public ExLineEdit { Q_OBJECT Q_PROPERTY(QString inactiveText READ inactiveText WRITE setInactiveText) signals: void textChanged(const QString &text); void search(const QString &text); void suggestionAccepted(const QString &suggestion); public: SearchLineEdit(QWidget *parent = 0); QString inactiveText() const; void setInactiveText(const QString &text); QMenu *menu() const; void setMenu(QMenu *menu); void updateGeometries(); void enableSuggest(); void preventSuggest(); void selectAll() { lineEdit()->selectAll(); } void setSuggester(Suggester *suggester) { completion->setSuggester(suggester); } protected: void resizeEvent(QResizeEvent *event); void paintEvent(QPaintEvent *event); void focusInEvent(QFocusEvent *event); private slots: void returnPressed(); private: SearchButton *m_searchButton; QString m_inactiveText; AutoComplete *completion; }; #endif // SEARCHLINEEDIT_H musique/src/searchlineedit.cpp0000664000175000017500000002055111715011710016345 0ustar flavioflavio/**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Commercial License Agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "searchlineedit.h" #include #include #include #include #include #include "autocomplete.h" ClearButton::ClearButton(QWidget *parent) : QAbstractButton(parent) { setCursor(Qt::ArrowCursor); setToolTip(tr("Clear")); setVisible(false); setFocusPolicy(Qt::NoFocus); } void ClearButton::paintEvent(QPaintEvent *event) { Q_UNUSED(event); QPainter painter(this); int height = this->height(); painter.setRenderHint(QPainter::Antialiasing, true); // QColor color = palette().color(QPalette::Mid); painter.setBrush(isDown() ? palette().color(QPalette::Dark) : palette().color(QPalette::Mid)); painter.setPen(painter.brush().color()); int size = width(); int offset = size / 3.5; int radius = size - offset * 2; painter.drawEllipse(offset, offset, radius, radius); painter.setPen(QPen(palette().color(QPalette::Base),2)); int border = offset * 1.6; painter.drawLine(border, border, width() - border, height - border); painter.drawLine(border, height - border, width() - border, border); } void ClearButton::textChanged(const QString &text) { setVisible(!text.isEmpty()); } /* Search icon on the left hand side of the search widget When a menu is set a down arrow appears */ class SearchButton : public QAbstractButton { public: SearchButton(QWidget *parent = 0); void paintEvent(QPaintEvent *event); QMenu *m_menu; protected: void mousePressEvent(QMouseEvent *event); }; SearchButton::SearchButton(QWidget *parent) : QAbstractButton(parent), m_menu(0) { setObjectName(QLatin1String("SearchButton")); setCursor(Qt::ArrowCursor); setFocusPolicy(Qt::NoFocus); } void SearchButton::mousePressEvent(QMouseEvent *event) { if (m_menu && event->button() == Qt::LeftButton) { QWidget *p = parentWidget(); if (p) { QPoint r = p->mapToGlobal(QPoint(0, p->height())); m_menu->exec(QPoint(r.x() + height() / 2, r.y())); } event->accept(); } QAbstractButton::mousePressEvent(event); } void SearchButton::paintEvent(QPaintEvent *event) { Q_UNUSED(event); QPainterPath myPath; int radius = (height() / 5) * 2; QRect circle(height() / 5.5, height() / 3.5, radius, radius); myPath.addEllipse(circle); myPath.arcMoveTo(circle, 315); QPointF c = myPath.currentPosition(); int diff = height() / 6; myPath.lineTo(qMin(width() - 2, (int)c.x() + diff), c.y() + diff); QPainter painter(this); painter.setRenderHint(QPainter::Antialiasing, true); painter.setPen(QPen(palette().color(QPalette::Mid), height() / 10)); painter.drawPath(myPath); if (m_menu) { QPainterPath dropPath; dropPath.arcMoveTo(circle, 320); QPointF c = dropPath.currentPosition(); c = QPointF(c.x() + 3.5, c.y() + 0.5); dropPath.moveTo(c); dropPath.lineTo(c.x() + 4, c.y()); dropPath.lineTo(c.x() + 2, c.y() + 2); dropPath.closeSubpath(); painter.setPen(Qt::darkGray); painter.setBrush(Qt::darkGray); painter.setRenderHint(QPainter::Antialiasing, false); painter.drawPath(dropPath); } painter.end(); } /* SearchLineEdit is an enhanced QLineEdit - A Search icon on the left with optional menu - When there is no text and doesn't have focus an "inactive text" is displayed - When there is text a clear button is displayed on the right hand side */ SearchLineEdit::SearchLineEdit(QWidget *parent) : ExLineEdit(parent), m_searchButton(new SearchButton(this)) { connect(lineEdit(), SIGNAL(textChanged(const QString &)), this, SIGNAL(textChanged(const QString &))); connect(lineEdit(), SIGNAL(returnPressed()), this, SLOT(returnPressed())); setLeftWidget(m_searchButton); m_inactiveText = tr("Search"); QSizePolicy policy = sizePolicy(); setSizePolicy(QSizePolicy::Preferred, policy.verticalPolicy()); // completion completion = new AutoComplete(this, m_lineEdit); connect(completion, SIGNAL(suggestionAccepted(const QString &)), SIGNAL(suggestionAccepted(const QString &))); } void SearchLineEdit::paintEvent(QPaintEvent *event) { if (lineEdit()->text().isEmpty() && !hasFocus() && !m_inactiveText.isEmpty()) { ExLineEdit::paintEvent(event); QStyleOptionFrameV2 panel; initStyleOption(&panel); QRect r = style()->subElementRect(QStyle::SE_LineEditContents, &panel, this); QFontMetrics fm = fontMetrics(); int horizontalMargin = lineEdit()->x(); QRect lineRect(horizontalMargin + r.x(), r.y() + (r.height() - fm.height() + 1) / 2, r.width() - 2 * horizontalMargin, fm.height()); QPainter painter(this); painter.setPen(palette().brush(QPalette::Disabled, QPalette::Text).color()); painter.drawText(lineRect, Qt::AlignLeft|Qt::AlignVCenter, m_inactiveText); } else { ExLineEdit::paintEvent(event); } } void SearchLineEdit::resizeEvent(QResizeEvent *event) { updateGeometries(); ExLineEdit::resizeEvent(event); } void SearchLineEdit::updateGeometries() { int menuHeight = height(); int menuWidth = menuHeight + 1; if (!m_searchButton->m_menu) menuWidth = (menuHeight / 5) * 4; m_searchButton->resize(QSize(menuWidth, menuHeight)); } QString SearchLineEdit::inactiveText() const { return m_inactiveText; } void SearchLineEdit::setInactiveText(const QString &text) { m_inactiveText = text; } void SearchLineEdit::setMenu(QMenu *menu) { if (m_searchButton->m_menu) m_searchButton->m_menu->deleteLater(); m_searchButton->m_menu = menu; updateGeometries(); } QMenu *SearchLineEdit::menu() const { if (!m_searchButton->m_menu) { m_searchButton->m_menu = new QMenu(m_searchButton); if (isVisible()) (const_cast(this))->updateGeometries(); } return m_searchButton->m_menu; } void SearchLineEdit::returnPressed() { if (!lineEdit()->text().isEmpty()) { completion->preventSuggest(); emit search(lineEdit()->text()); } } void SearchLineEdit::enableSuggest() { completion->enableSuggest(); } void SearchLineEdit::preventSuggest() { completion->preventSuggest(); } void SearchLineEdit::focusInEvent(QFocusEvent *event) { ExLineEdit::focusInEvent(event); enableSuggest(); } musique/src/searchcompletion.h0000664000175000017500000000130511715011710016362 0ustar flavioflavio#ifndef GOOGLESUGGEST_H #define GOOGLESUGGEST_H #include class SearchCompletion : public QObject { Q_OBJECT public: SearchCompletion(QWidget *parent, QLineEdit *editor); ~SearchCompletion(); bool eventFilter(QObject *obj, QEvent *ev); void showCompletion(const QStringList &choices); public slots: void doneCompletion(); void preventSuggest(); void enableSuggest(); void autoSuggest(); void handleNetworkData(QByteArray response); void currentItemChanged(QListWidgetItem *current); private: QWidget *buddy; QLineEdit *editor; QString originalText; QListWidget *popup; QTimer *timer; bool enabled; }; #endif // GOOGLESUGGEST_H musique/src/searchcompletion.cpp0000664000175000017500000001236411715011710016724 0ustar flavioflavio#include "searchcompletion.h" #include "networkaccess.h" #define GSUGGEST_URL "http://suggestqueries.google.com/complete/search?ds=yt&output=toolbar&hl=%1&q=%2" namespace The { NetworkAccess* http(); } SearchCompletion::SearchCompletion(QWidget *parent, QLineEdit *editor): QObject(parent), buddy(parent), editor(editor) { enabled = true; popup = new QListWidget; popup->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); popup->installEventFilter(this); popup->setMouseTracking(true); connect(popup, SIGNAL(itemClicked(QListWidgetItem*)), SLOT(doneCompletion())); // connect(popup, SIGNAL(currentItemChanged(QListWidgetItem *, QListWidgetItem *)), // SLOT(currentItemChanged(QListWidgetItem *))); // mouse hover // connect(popup, SIGNAL(itemEntered(QListWidgetItem*)), // SLOT(currentItemChanged(QListWidgetItem *))); popup->setWindowFlags(Qt::Popup); popup->setFocusPolicy(Qt::NoFocus); popup->setFocusProxy(parent); timer = new QTimer(this); timer->setSingleShot(true); timer->setInterval(300); connect(timer, SIGNAL(timeout()), SLOT(autoSuggest())); connect(editor, SIGNAL(textEdited(QString)), timer, SLOT(start())); } SearchCompletion::~SearchCompletion() { delete popup; } bool SearchCompletion::eventFilter(QObject *obj, QEvent *ev) { if (obj != popup) return false; if (ev->type() == QEvent::MouseButtonPress) { popup->hide(); editor->setFocus(); editor->setText(originalText); return true; } if (ev->type() == QEvent::KeyPress) { bool consumed = false; QKeyEvent *keyEvent = static_cast(ev); int key = keyEvent->key(); // qDebug() << keyEvent->text(); switch (key) { case Qt::Key_Enter: case Qt::Key_Return: if (popup->currentItem()) { doneCompletion(); consumed = true; } else { editor->setFocus(); editor->event(ev); popup->hide(); } break; case Qt::Key_Escape: editor->setFocus(); editor->setText(originalText); popup->hide(); consumed = true; break; case Qt::Key_Up: case Qt::Key_Down: case Qt::Key_Home: case Qt::Key_End: case Qt::Key_PageUp: case Qt::Key_PageDown: break; default: qDebug() << keyEvent->text(); editor->setFocus(); editor->event(ev); popup->hide(); break; } return consumed; } return false; } void SearchCompletion::showCompletion(const QStringList &choices) { if (choices.isEmpty()) return; popup->setUpdatesEnabled(false); popup->clear(); for (int i = 0; i < choices.count(); ++i) { QListWidgetItem * item; item = new QListWidgetItem(popup); item->setText(choices[i]); } popup->setCurrentItem(0); popup->adjustSize(); popup->setUpdatesEnabled(true); int h = popup->sizeHintForRow(0) * choices.count() + 4; popup->resize(buddy->width(), h); popup->move(buddy->mapToGlobal(QPoint(0, buddy->height()))); popup->setFocus(); popup->show(); } void SearchCompletion::doneCompletion() { timer->stop(); popup->hide(); editor->setFocus(); QListWidgetItem *item = popup->currentItem(); if (item) { editor->setText(item->text()); QKeyEvent *e; e = new QKeyEvent(QEvent::KeyPress, Qt::Key_Enter, Qt::NoModifier); QApplication::postEvent(editor, e); e = new QKeyEvent(QEvent::KeyRelease, Qt::Key_Enter, Qt::NoModifier); QApplication::postEvent(editor, e); } } void SearchCompletion::preventSuggest() { timer->stop(); enabled = false; popup->hide(); } void SearchCompletion::enableSuggest() { enabled = true; } void SearchCompletion::autoSuggest() { if (!enabled) return; QString query = editor->text(); originalText = query; // qDebug() << "originalText" << originalText; if (query.isEmpty()) return; QString locale = QLocale::system().name().replace("_", "-"); // case for system locales such as "C" if (locale.length() < 2) { locale = "en-US"; } QString url = QString(GSUGGEST_URL).arg(locale, query); QObject *reply = The::http()->get(url); connect(reply, SIGNAL(data(QByteArray)), SLOT(handleNetworkData(QByteArray))); } void SearchCompletion::handleNetworkData(QByteArray response) { if (!enabled) return; QStringList choices; QXmlStreamReader xml(response); while (!xml.atEnd()) { xml.readNext(); if (xml.tokenType() == QXmlStreamReader::StartElement) if (xml.name() == "suggestion") { QStringRef str = xml.attributes().value("data"); choices << str.toString(); } } showCompletion(choices); } void SearchCompletion::currentItemChanged(QListWidgetItem *current) { if (current) { // qDebug() << "current" << current->text(); current->setSelected(true); editor->setText(current->text()); editor->setSelection(originalText.length(), editor->text().length()); } } musique/src/scanningview.h0000664000175000017500000000103311715011710015514 0ustar flavioflavio#ifndef SCANNINGVIEW_H #define SCANNINGVIEW_H #include #include "view.h" class ScanningView : public QWidget, public View { Q_OBJECT public: ScanningView(QWidget *parent); void appear() {} void disappear() {} QMap metadata() { QMap metadata; metadata.insert("title", ""); metadata.insert("description", tr("Scanning your music collection")); return metadata; } private: QProgressBar *progressBar; }; #endif // SCANNINGVIEW_H musique/src/scanningview.cpp0000664000175000017500000000132511715011710016053 0ustar flavioflavio#include "scanningview.h" #include "collectionscannerthread.h" ScanningView::ScanningView( QWidget *parent ) : QWidget(parent) { QBoxLayout *layout = new QHBoxLayout(this); layout->setAlignment(Qt::AlignCenter); layout->setSpacing(30); progressBar = new QProgressBar(this); layout->addWidget(progressBar); CollectionScannerThread *scanner = new CollectionScannerThread(); connect(scanner, SIGNAL(progress(int)), progressBar, SLOT(setValue(int))); connect(scanner, SIGNAL(finished()), parent, SLOT(showMediaView())); // scanner->setDirectory(QDir("/home/flavio/Music/italiana")); scanner->setDirectory(QDir("/Users/flavio/Music")); scanner->start(); // QThread::IdlePriority } musique/src/qtsingleapplication/0000775000175000017500000000000011715011710016725 5ustar flavioflaviomusique/src/qtsingleapplication/qtsinglecoreapplication.pri0000664000175000017500000000050411715011710024363 0ustar flavioflavioINCLUDEPATH += $$PWD DEPENDPATH += $$PWD HEADERS += $$PWD/qtsinglecoreapplication.h $$PWD/qtlocalpeer.h SOURCES += $$PWD/qtsinglecoreapplication.cpp $$PWD/qtlocalpeer.cpp QT *= network win32:contains(TEMPLATE, lib):contains(CONFIG, shared) { DEFINES += QT_QTSINGLECOREAPPLICATION_EXPORT=__declspec(dllexport) } musique/src/qtsingleapplication/qtsinglecoreapplication.h0000664000175000017500000000526211715011710024026 0ustar flavioflavio/**************************************************************************** ** ** This file is part of a Qt Solutions component. ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Qt Software Information (qt-info@nokia.com) ** ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Solutions Commercial License Agreement provided ** with the Software or, alternatively, in accordance with the terms ** contained in a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** Please note Third Party Software included with Qt Solutions may impose ** additional restrictions and it is the user's responsibility to ensure ** that they have met the licensing requirements of the GPL, LGPL, or Qt ** Solutions Commercial license and the relevant license of the Third ** Party Software they are using. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** ****************************************************************************/ #include class QtLocalPeer; class QtSingleCoreApplication : public QCoreApplication { Q_OBJECT public: QtSingleCoreApplication(int &argc, char **argv); QtSingleCoreApplication(const QString &id, int &argc, char **argv); bool isRunning(); QString id() const; public Q_SLOTS: bool sendMessage(const QString &message, int timeout = 5000); Q_SIGNALS: void messageReceived(const QString &message); private: QtLocalPeer* peer; }; musique/src/qtsingleapplication/qtsinglecoreapplication.cpp0000664000175000017500000001275411715011710024365 0ustar flavioflavio/**************************************************************************** ** ** This file is part of a Qt Solutions component. ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Qt Software Information (qt-info@nokia.com) ** ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Solutions Commercial License Agreement provided ** with the Software or, alternatively, in accordance with the terms ** contained in a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** Please note Third Party Software included with Qt Solutions may impose ** additional restrictions and it is the user's responsibility to ensure ** that they have met the licensing requirements of the GPL, LGPL, or Qt ** Solutions Commercial license and the relevant license of the Third ** Party Software they are using. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** ****************************************************************************/ #include "qtsinglecoreapplication.h" #include "qtlocalpeer.h" /*! \class QtSingleCoreApplication qtsinglecoreapplication.h \brief A variant of the QtSingleApplication class for non-GUI applications. This class is a variant of QtSingleApplication suited for use in console (non-GUI) applications. It is an extension of QCoreApplication (instead of QApplication). It does not require the QtGui library. The API and usage is identical to QtSingleApplication, except that functions relating to the "activation window" are not present, for obvious reasons. Please refer to the QtSingleApplication documentation for explanation of the usage. A QtSingleCoreApplication instance can communicate to a QtSingleApplication instance if they share the same application id. Hence, this class can be used to create a light-weight command-line tool that sends commands to a GUI application. \sa QtSingleApplication */ /*! Creates a QtSingleCoreApplication object. The application identifier will be QCoreApplication::applicationFilePath(). \a argc and \a argv are passed on to the QCoreAppliation constructor. */ QtSingleCoreApplication::QtSingleCoreApplication(int &argc, char **argv) : QCoreApplication(argc, argv) { peer = new QtLocalPeer(this); connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&))); } /*! Creates a QtSingleCoreApplication object with the application identifier \a appId. \a argc and \a argv are passed on to the QCoreAppliation constructor. */ QtSingleCoreApplication::QtSingleCoreApplication(const QString &appId, int &argc, char **argv) : QCoreApplication(argc, argv) { peer = new QtLocalPeer(this, appId); connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&))); } /*! Returns true if another instance of this application is running; otherwise false. This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session). \sa sendMessage() */ bool QtSingleCoreApplication::isRunning() { return peer->isClient(); } /*! Tries to send the text \a message to the currently running instance. The QtSingleCoreApplication object in the running instance will emit the messageReceived() signal when it receives the message. This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within \a timeout milliseconds, this function return false. \sa isRunning(), messageReceived() */ bool QtSingleCoreApplication::sendMessage(const QString &message, int timeout) { return peer->sendMessage(message, timeout); } /*! Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application. */ QString QtSingleCoreApplication::id() const { return peer->applicationId(); } /*! \fn void QtSingleCoreApplication::messageReceived(const QString& message) This signal is emitted when the current instance receives a \a message from another instance of this application. \sa sendMessage() */ musique/src/qtsingleapplication/qtsingleapplication.pri0000664000175000017500000000100111715011710023503 0ustar flavioflavioINCLUDEPATH += $$PWD DEPENDPATH += $$PWD QT *= network qtsingleapplication-uselib:!qtsingleapplication-buildlib { LIBS += -L$$QTSINGLEAPPLICATION_LIBDIR -l$$QTSINGLEAPPLICATION_LIBNAME } else { SOURCES += $$PWD/qtsingleapplication.cpp $$PWD/qtlocalpeer.cpp HEADERS += $$PWD/qtsingleapplication.h $$PWD/qtlocalpeer.h } win32 { contains(TEMPLATE, lib):contains(CONFIG, shared):DEFINES += QT_QTSINGLEAPPLICATION_EXPORT else:qtsingleapplication-uselib:DEFINES += QT_QTSINGLEAPPLICATION_IMPORT } musique/src/qtsingleapplication/qtsingleapplication.h0000664000175000017500000000775511715011710023166 0ustar flavioflavio/**************************************************************************** ** ** This file is part of a Qt Solutions component. ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Qt Software Information (qt-info@nokia.com) ** ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Solutions Commercial License Agreement provided ** with the Software or, alternatively, in accordance with the terms ** contained in a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** Please note Third Party Software included with Qt Solutions may impose ** additional restrictions and it is the user's responsibility to ensure ** that they have met the licensing requirements of the GPL, LGPL, or Qt ** Solutions Commercial license and the relevant license of the Third ** Party Software they are using. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** ****************************************************************************/ #include class QtLocalPeer; #if defined(Q_WS_WIN) # if !defined(QT_QTSINGLEAPPLICATION_EXPORT) && !defined(QT_QTSINGLEAPPLICATION_IMPORT) # define QT_QTSINGLEAPPLICATION_EXPORT # elif defined(QT_QTSINGLEAPPLICATION_IMPORT) # if defined(QT_QTSINGLEAPPLICATION_EXPORT) # undef QT_QTSINGLEAPPLICATION_EXPORT # endif # define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllimport) # elif defined(QT_QTSINGLEAPPLICATION_EXPORT) # undef QT_QTSINGLEAPPLICATION_EXPORT # define QT_QTSINGLEAPPLICATION_EXPORT __declspec(dllexport) # endif #else # define QT_QTSINGLEAPPLICATION_EXPORT #endif class QT_QTSINGLEAPPLICATION_EXPORT QtSingleApplication : public QApplication { Q_OBJECT public: QtSingleApplication(int &argc, char **argv, bool GUIenabled = true); QtSingleApplication(const QString &id, int &argc, char **argv); QtSingleApplication(int &argc, char **argv, Type type); #if defined(Q_WS_X11) QtSingleApplication(Display* dpy, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0); QtSingleApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE cmap= 0); QtSingleApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE colormap = 0); #endif bool isRunning(); QString id() const; void setActivationWindow(QWidget* aw, bool activateOnMessage = true); QWidget* activationWindow() const; // Obsolete: void initialize(bool dummy = true) { isRunning(); Q_UNUSED(dummy) } public Q_SLOTS: bool sendMessage(const QString &message, int timeout = 5000); void activateWindow(); Q_SIGNALS: void messageReceived(const QString &message); private: void sysInit(const QString &appId = QString()); QtLocalPeer *peer; QWidget *actWin; }; musique/src/qtsingleapplication/qtsingleapplication.cpp0000664000175000017500000002671211715011710023513 0ustar flavioflavio/**************************************************************************** ** ** This file is part of a Qt Solutions component. ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Qt Software Information (qt-info@nokia.com) ** ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Solutions Commercial License Agreement provided ** with the Software or, alternatively, in accordance with the terms ** contained in a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** Please note Third Party Software included with Qt Solutions may impose ** additional restrictions and it is the user's responsibility to ensure ** that they have met the licensing requirements of the GPL, LGPL, or Qt ** Solutions Commercial license and the relevant license of the Third ** Party Software they are using. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** ****************************************************************************/ #include "qtsingleapplication.h" #include "qtlocalpeer.h" #include /*! \class QtSingleApplication qtsingleapplication.h \brief The QtSingleApplication class provides an API to detect and communicate with running instances of an application. This class allows you to create applications where only one instance should be running at a time. I.e., if the user tries to launch another instance, the already running instance will be activated instead. Another usecase is a client-server system, where the first started instance will assume the role of server, and the later instances will act as clients of that server. By default, the full path of the executable file is used to determine whether two processes are instances of the same application. You can also provide an explicit identifier string that will be compared instead. The application should create the QtSingleApplication object early in the startup phase, and call isRunning() or sendMessage() to find out if another instance of this application is already running. Startup parameters (e.g. the name of the file the user wanted this new instance to open) can be passed to the running instance in the sendMessage() function. If isRunning() or sendMessage() returns false, it means that no other instance is running, and this instance has assumed the role as the running instance. The application should continue with the initialization of the application user interface before entering the event loop with exec(), as normal. The messageReceived() signal will be emitted when the application receives messages from another instance of the same application. If isRunning() or sendMessage() returns true, another instance is already running, and the application should terminate or enter client mode. If a message is received it might be helpful to the user to raise the application so that it becomes visible. To facilitate this, QtSingleApplication provides the setActivationWindow() function and the activateWindow() slot. Here's an example that shows how to convert an existing application to use QtSingleApplication. It is very simple and does not make use of all QtSingleApplication's functionality (see the examples for that). \code // Original int main(int argc, char **argv) { QApplication app(argc, argv); MyMainWidget mmw; mmw.show(); return app.exec(); } // Single instance int main(int argc, char **argv) { QtSingleApplication app(argc, argv); if (app.isRunning()) return 0; MyMainWidget mmw; app.setActivationWindow(&mmw); mmw.show(); return app.exec(); } \endcode Once this QtSingleApplication instance is destroyed(for example, when the user quits), when the user next attempts to run the application this instance will not, of course, be encountered. The next instance to call isRunning() or sendMessage() will assume the role as the new running instance. For console (non-GUI) applications, QtSingleCoreApplication may be used instead of this class, to avoid the dependency on the QtGui library. \sa QtSingleCoreApplication */ void QtSingleApplication::sysInit(const QString &appId) { actWin = 0; peer = new QtLocalPeer(this, appId); connect(peer, SIGNAL(messageReceived(const QString&)), SIGNAL(messageReceived(const QString&))); } /*! Creates a QtSingleApplication object. The application identifier will be QCoreApplication::applicationFilePath(). \a argc, \a argv, and \a GUIenabled are passed on to the QAppliation constructor. If you are creating a console application (i.e. setting \a GUIenabled to false), you may consider using QtSingleCoreApplication instead. */ QtSingleApplication::QtSingleApplication(int &argc, char **argv, bool GUIenabled) : QApplication(argc, argv, GUIenabled) { sysInit(); } /*! Creates a QtSingleApplication object with the application identifier \a appId. \a argc and \a argv are passed on to the QAppliation constructor. */ QtSingleApplication::QtSingleApplication(const QString &appId, int &argc, char **argv) : QApplication(argc, argv) { sysInit(appId); } /*! Creates a QtSingleApplication object. The application identifier will be QCoreApplication::applicationFilePath(). \a argc, \a argv, and \a type are passed on to the QAppliation constructor. */ QtSingleApplication::QtSingleApplication(int &argc, char **argv, Type type) : QApplication(argc, argv, type) { sysInit(); } #if defined(Q_WS_X11) /*! Special constructor for X11, ref. the documentation of QApplication's corresponding constructor. The application identifier will be QCoreApplication::applicationFilePath(). \a dpy, \a visual, and \a cmap are passed on to the QApplication constructor. */ QtSingleApplication::QtSingleApplication(Display* dpy, Qt::HANDLE visual, Qt::HANDLE cmap) : QApplication(dpy, visual, cmap) { sysInit(); } /*! Special constructor for X11, ref. the documentation of QApplication's corresponding constructor. The application identifier will be QCoreApplication::applicationFilePath(). \a dpy, \a argc, \a argv, \a visual, and \a cmap are passed on to the QApplication constructor. */ QtSingleApplication::QtSingleApplication(Display *dpy, int &argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap) : QApplication(dpy, argc, argv, visual, cmap) { sysInit(); } /*! Special constructor for X11, ref. the documentation of QApplication's corresponding constructor. The application identifier will be \a appId. \a dpy, \a argc, \a argv, \a visual, and \a cmap are passed on to the QApplication constructor. */ QtSingleApplication::QtSingleApplication(Display* dpy, const QString &appId, int argc, char **argv, Qt::HANDLE visual, Qt::HANDLE cmap) : QApplication(dpy, argc, argv, visual, cmap) { sysInit(appId); } #endif /*! Returns true if another instance of this application is running; otherwise false. This function does not find instances of this application that are being run by a different user (on Windows: that are running in another session). \sa sendMessage() */ bool QtSingleApplication::isRunning() { return peer->isClient(); } /*! Tries to send the text \a message to the currently running instance. The QtSingleApplication object in the running instance will emit the messageReceived() signal when it receives the message. This function returns true if the message has been sent to, and processed by, the current instance. If there is no instance currently running, or if the running instance fails to process the message within \a timeout milliseconds, this function return false. \sa isRunning(), messageReceived() */ bool QtSingleApplication::sendMessage(const QString &message, int timeout) { return peer->sendMessage(message, timeout); } /*! Returns the application identifier. Two processes with the same identifier will be regarded as instances of the same application. */ QString QtSingleApplication::id() const { return peer->applicationId(); } /*! Sets the activation window of this application to \a aw. The activation window is the widget that will be activated by activateWindow(). This is typically the application's main window. If \a activateOnMessage is true (the default), the window will be activated automatically every time a message is received, just prior to the messageReceived() signal being emitted. \sa activateWindow(), messageReceived() */ void QtSingleApplication::setActivationWindow(QWidget* aw, bool activateOnMessage) { actWin = aw; if (activateOnMessage) connect(peer, SIGNAL(messageReceived(const QString&)), this, SLOT(activateWindow())); else disconnect(peer, SIGNAL(messageReceived(const QString&)), this, SLOT(activateWindow())); } /*! Returns the applications activation window if one has been set by calling setActivationWindow(), otherwise returns 0. \sa setActivationWindow() */ QWidget* QtSingleApplication::activationWindow() const { return actWin; } /*! De-minimizes, raises, and activates this application's activation window. This function does nothing if no activation window has been set. This is a convenience function to show the user that this application instance has been activated when he has tried to start another instance. This function should typically be called in response to the messageReceived() signal. By default, that will happen automatically, if an activation window has been set. \sa setActivationWindow(), messageReceived(), initialize() */ void QtSingleApplication::activateWindow() { if (actWin) { actWin->setWindowState(actWin->windowState() & ~Qt::WindowMinimized); actWin->raise(); actWin->activateWindow(); } } /*! \fn void QtSingleApplication::messageReceived(const QString& message) This signal is emitted when the current instance receives a \a message from another instance of this application. \sa sendMessage(), setActivationWindow(), activateWindow() */ /*! \fn void QtSingleApplication::initialize(bool dummy = true) \obsolete */ musique/src/qtsingleapplication/qtlockedfile_win.cpp0000664000175000017500000001515711715011710022765 0ustar flavioflavio/**************************************************************************** ** ** This file is part of a Qt Solutions component. ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Qt Software Information (qt-info@nokia.com) ** ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Solutions Commercial License Agreement provided ** with the Software or, alternatively, in accordance with the terms ** contained in a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** Please note Third Party Software included with Qt Solutions may impose ** additional restrictions and it is the user's responsibility to ensure ** that they have met the licensing requirements of the GPL, LGPL, or Qt ** Solutions Commercial license and the relevant license of the Third ** Party Software they are using. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** ****************************************************************************/ #include "qtlockedfile.h" #include #include #define MUTEX_PREFIX "QtLockedFile mutex " // Maximum number of concurrent read locks. Must not be greater than MAXIMUM_WAIT_OBJECTS #define MAX_READERS MAXIMUM_WAIT_OBJECTS Qt::HANDLE QtLockedFile::getMutexHandle(int idx, bool doCreate) { if (mutexname.isEmpty()) { QFileInfo fi(*this); mutexname = QString::fromLatin1(MUTEX_PREFIX) + fi.absoluteFilePath().toLower(); } QString mname(mutexname); if (idx >= 0) mname += QString::number(idx); Qt::HANDLE mutex; if (doCreate) { QT_WA( { mutex = CreateMutexW(NULL, FALSE, (TCHAR*)mname.utf16()); }, { mutex = CreateMutexA(NULL, FALSE, mname.toLocal8Bit().constData()); } ); if (!mutex) { qErrnoWarning("QtLockedFile::lock(): CreateMutex failed"); return 0; } } else { QT_WA( { mutex = OpenMutexW(SYNCHRONIZE | MUTEX_MODIFY_STATE, FALSE, (TCHAR*)mname.utf16()); }, { mutex = OpenMutexA(SYNCHRONIZE | MUTEX_MODIFY_STATE, FALSE, mname.toLocal8Bit().constData()); } ); if (!mutex) { if (GetLastError() != ERROR_FILE_NOT_FOUND) qErrnoWarning("QtLockedFile::lock(): OpenMutex failed"); return 0; } } return mutex; } bool QtLockedFile::waitMutex(Qt::HANDLE mutex, bool doBlock) { Q_ASSERT(mutex); DWORD res = WaitForSingleObject(mutex, doBlock ? INFINITE : 0); switch (res) { case WAIT_OBJECT_0: case WAIT_ABANDONED: return true; break; case WAIT_TIMEOUT: break; default: qErrnoWarning("QtLockedFile::lock(): WaitForSingleObject failed"); } return false; } bool QtLockedFile::lock(LockMode mode, bool block) { if (!isOpen()) { qWarning("QtLockedFile::lock(): file is not opened"); return false; } if (mode == NoLock) return unlock(); if (mode == m_lock_mode) return true; if (m_lock_mode != NoLock) unlock(); if (!wmutex && !(wmutex = getMutexHandle(-1, true))) return false; if (!waitMutex(wmutex, block)) return false; if (mode == ReadLock) { int idx = 0; for (; idx < MAX_READERS; idx++) { rmutex = getMutexHandle(idx, false); if (!rmutex || waitMutex(rmutex, false)) break; CloseHandle(rmutex); } bool ok = true; if (idx >= MAX_READERS) { qWarning("QtLockedFile::lock(): too many readers"); rmutex = 0; ok = false; } else if (!rmutex) { rmutex = getMutexHandle(idx, true); if (!rmutex || !waitMutex(rmutex, false)) ok = false; } if (!ok && rmutex) { CloseHandle(rmutex); rmutex = 0; } ReleaseMutex(wmutex); if (!ok) return false; } else { Q_ASSERT(rmutexes.isEmpty()); for (int i = 0; i < MAX_READERS; i++) { Qt::HANDLE mutex = getMutexHandle(i, false); if (mutex) rmutexes.append(mutex); } if (rmutexes.size()) { DWORD res = WaitForMultipleObjects(rmutexes.size(), rmutexes.constData(), TRUE, block ? INFINITE : 0); if (res != WAIT_OBJECT_0 && res != WAIT_ABANDONED) { if (res != WAIT_TIMEOUT) qErrnoWarning("QtLockedFile::lock(): WaitForMultipleObjects failed"); m_lock_mode = WriteLock; // trick unlock() to clean up - semiyucky unlock(); return false; } } } m_lock_mode = mode; return true; } bool QtLockedFile::unlock() { if (!isOpen()) { qWarning("QtLockedFile::unlock(): file is not opened"); return false; } if (!isLocked()) return true; if (m_lock_mode == ReadLock) { ReleaseMutex(rmutex); CloseHandle(rmutex); rmutex = 0; } else { foreach(Qt::HANDLE mutex, rmutexes) { ReleaseMutex(mutex); CloseHandle(mutex); } rmutexes.clear(); ReleaseMutex(wmutex); } m_lock_mode = QtLockedFile::NoLock; return true; } QtLockedFile::~QtLockedFile() { if (isOpen()) unlock(); if (wmutex) CloseHandle(wmutex); } musique/src/qtsingleapplication/qtlockedfile_unix.cpp0000664000175000017500000000721311715011710023145 0ustar flavioflavio/**************************************************************************** ** ** This file is part of a Qt Solutions component. ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Qt Software Information (qt-info@nokia.com) ** ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Solutions Commercial License Agreement provided ** with the Software or, alternatively, in accordance with the terms ** contained in a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** Please note Third Party Software included with Qt Solutions may impose ** additional restrictions and it is the user's responsibility to ensure ** that they have met the licensing requirements of the GPL, LGPL, or Qt ** Solutions Commercial license and the relevant license of the Third ** Party Software they are using. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** ****************************************************************************/ #include #include #include #include #include "qtlockedfile.h" bool QtLockedFile::lock(LockMode mode, bool block) { if (!isOpen()) { qWarning("QtLockedFile::lock(): file is not opened"); return false; } if (mode == NoLock) return unlock(); if (mode == m_lock_mode) return true; if (m_lock_mode != NoLock) unlock(); struct flock fl; fl.l_whence = SEEK_SET; fl.l_start = 0; fl.l_len = 0; fl.l_type = (mode == ReadLock) ? F_RDLCK : F_WRLCK; int cmd = block ? F_SETLKW : F_SETLK; int ret = fcntl(handle(), cmd, &fl); if (ret == -1) { if (errno != EINTR && errno != EAGAIN) qWarning("QtLockedFile::lock(): fcntl: %s", strerror(errno)); return false; } m_lock_mode = mode; return true; } bool QtLockedFile::unlock() { if (!isOpen()) { qWarning("QtLockedFile::unlock(): file is not opened"); return false; } if (!isLocked()) return true; struct flock fl; fl.l_whence = SEEK_SET; fl.l_start = 0; fl.l_len = 0; fl.l_type = F_UNLCK; int ret = fcntl(handle(), F_SETLKW, &fl); if (ret == -1) { qWarning("QtLockedFile::lock(): fcntl: %s", strerror(errno)); return false; } m_lock_mode = NoLock; return true; } QtLockedFile::~QtLockedFile() { if (isOpen()) unlock(); } musique/src/qtsingleapplication/qtlockedfile.h0000664000175000017500000000667111715011710021556 0ustar flavioflavio/**************************************************************************** ** ** This file is part of a Qt Solutions component. ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Qt Software Information (qt-info@nokia.com) ** ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Solutions Commercial License Agreement provided ** with the Software or, alternatively, in accordance with the terms ** contained in a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** Please note Third Party Software included with Qt Solutions may impose ** additional restrictions and it is the user's responsibility to ensure ** that they have met the licensing requirements of the GPL, LGPL, or Qt ** Solutions Commercial license and the relevant license of the Third ** Party Software they are using. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** ****************************************************************************/ #ifndef QTLOCKEDFILE_H #define QTLOCKEDFILE_H #include #ifdef Q_OS_WIN #include #endif #if defined(Q_WS_WIN) # if !defined(QT_QTLOCKEDFILE_EXPORT) && !defined(QT_QTLOCKEDFILE_IMPORT) # define QT_QTLOCKEDFILE_EXPORT # elif defined(QT_QTLOCKEDFILE_IMPORT) # if defined(QT_QTLOCKEDFILE_EXPORT) # undef QT_QTLOCKEDFILE_EXPORT # endif # define QT_QTLOCKEDFILE_EXPORT __declspec(dllimport) # elif defined(QT_QTLOCKEDFILE_EXPORT) # undef QT_QTLOCKEDFILE_EXPORT # define QT_QTLOCKEDFILE_EXPORT __declspec(dllexport) # endif #else # define QT_QTLOCKEDFILE_EXPORT #endif class QT_QTLOCKEDFILE_EXPORT QtLockedFile : public QFile { public: enum LockMode { NoLock = 0, ReadLock, WriteLock }; QtLockedFile(); QtLockedFile(const QString &name); ~QtLockedFile(); bool open(OpenMode mode); bool lock(LockMode mode, bool block = true); bool unlock(); bool isLocked() const; LockMode lockMode() const; private: #ifdef Q_OS_WIN Qt::HANDLE wmutex; Qt::HANDLE rmutex; QVector rmutexes; QString mutexname; Qt::HANDLE getMutexHandle(int idx, bool doCreate); bool waitMutex(Qt::HANDLE mutex, bool doBlock); #endif LockMode m_lock_mode; }; #endif musique/src/qtsingleapplication/qtlockedfile.cpp0000664000175000017500000001434111715011710022102 0ustar flavioflavio/**************************************************************************** ** ** This file is part of a Qt Solutions component. ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Qt Software Information (qt-info@nokia.com) ** ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Solutions Commercial License Agreement provided ** with the Software or, alternatively, in accordance with the terms ** contained in a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** Please note Third Party Software included with Qt Solutions may impose ** additional restrictions and it is the user's responsibility to ensure ** that they have met the licensing requirements of the GPL, LGPL, or Qt ** Solutions Commercial license and the relevant license of the Third ** Party Software they are using. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** ****************************************************************************/ #include "qtlockedfile.h" /*! \class QtLockedFile \brief The QtLockedFile class extends QFile with advisory locking functions. A file may be locked in read or write mode. Multiple instances of \e QtLockedFile, created in multiple processes running on the same machine, may have a file locked in read mode. Exactly one instance may have it locked in write mode. A read and a write lock cannot exist simultaneously on the same file. The file locks are advisory. This means that nothing prevents another process from manipulating a locked file using QFile or file system functions offered by the OS. Serialization is only guaranteed if all processes that access the file use QLockedFile. Also, while holding a lock on a file, a process must not open the same file again (through any API), or locks can be unexpectedly lost. The lock provided by an instance of \e QtLockedFile is released whenever the program terminates. This is true even when the program crashes and no destructors are called. */ /*! \enum QtLockedFile::LockMode This enum describes the available lock modes. \value ReadLock A read lock. \value WriteLock A write lock. \value NoLock Neither a read lock nor a write lock. */ /*! Constructs an unlocked \e QtLockedFile object. This constructor behaves in the same way as \e QFile::QFile(). \sa QFile::QFile() */ QtLockedFile::QtLockedFile() : QFile() { #ifdef Q_OS_WIN wmutex = 0; rmutex = 0; #endif m_lock_mode = NoLock; } /*! Constructs an unlocked QtLockedFile object with file \a name. This constructor behaves in the same way as \e QFile::QFile(const QString&). \sa QFile::QFile() */ QtLockedFile::QtLockedFile(const QString &name) : QFile(name) { #ifdef Q_OS_WIN wmutex = 0; rmutex = 0; #endif m_lock_mode = NoLock; } /*! Opens the file in OpenMode \a mode. This is identical to QFile::open(), with the one exception that the Truncate mode flag is disallowed. Truncation would conflict with the advisory file locking, since the file would be modified before the write lock is obtained. If truncation is required, use resize(0) after obtaining the write lock. Returns true if successful; otherwise false. \sa QFile::open(), QFile::resize() */ bool QtLockedFile::open(OpenMode mode) { if (mode & QIODevice::Truncate) { qWarning("QtLockedFile::open(): Truncate mode not allowed."); return false; } return QFile::open(mode); } /*! Returns \e true if this object has a in read or write lock; otherwise returns \e false. \sa lockMode() */ bool QtLockedFile::isLocked() const { return m_lock_mode != NoLock; } /*! Returns the type of lock currently held by this object, or \e QtLockedFile::NoLock. \sa isLocked() */ QtLockedFile::LockMode QtLockedFile::lockMode() const { return m_lock_mode; } /*! \fn bool QtLockedFile::lock(LockMode mode, bool block = true) Obtains a lock of type \a mode. The file must be opened before it can be locked. If \a block is true, this function will block until the lock is aquired. If \a block is false, this function returns \e false immediately if the lock cannot be aquired. If this object already has a lock of type \a mode, this function returns \e true immediately. If this object has a lock of a different type than \a mode, the lock is first released and then a new lock is obtained. This function returns \e true if, after it executes, the file is locked by this object, and \e false otherwise. \sa unlock(), isLocked(), lockMode() */ /*! \fn bool QtLockedFile::unlock() Releases a lock. If the object has no lock, this function returns immediately. This function returns \e true if, after it executes, the file is not locked by this object, and \e false otherwise. \sa lock(), isLocked(), lockMode() */ /*! \fn QtLockedFile::~QtLockedFile() Destroys the \e QtLockedFile object. If any locks were held, they are released. */ musique/src/qtsingleapplication/qtlocalpeer.h0000664000175000017500000000561011715011710021413 0ustar flavioflavio/**************************************************************************** ** ** This file is part of a Qt Solutions component. ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Qt Software Information (qt-info@nokia.com) ** ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Solutions Commercial License Agreement provided ** with the Software or, alternatively, in accordance with the terms ** contained in a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** Please note Third Party Software included with Qt Solutions may impose ** additional restrictions and it is the user's responsibility to ensure ** that they have met the licensing requirements of the GPL, LGPL, or Qt ** Solutions Commercial license and the relevant license of the Third ** Party Software they are using. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** ****************************************************************************/ #include #include #include #include namespace QtLP_Private { #include "qtlockedfile.h" } class QtLocalPeer : public QObject { Q_OBJECT public: QtLocalPeer(QObject *parent = 0, const QString &appId = QString()); bool isClient(); bool sendMessage(const QString &message, int timeout); QString applicationId() const { return id; } Q_SIGNALS: void messageReceived(const QString &message); protected Q_SLOTS: void receiveConnection(); protected: QString id; QString socketName; QLocalServer* server; QtLP_Private::QtLockedFile lockFile; private: static const char* ack; }; musique/src/qtsingleapplication/qtlocalpeer.cpp0000664000175000017500000001523011715011710021745 0ustar flavioflavio/**************************************************************************** ** ** This file is part of a Qt Solutions component. ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Qt Software Information (qt-info@nokia.com) ** ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in ** accordance with the Qt Solutions Commercial License Agreement provided ** with the Software or, alternatively, in accordance with the terms ** contained in a written agreement between you and Nokia. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** Please note Third Party Software included with Qt Solutions may impose ** additional restrictions and it is the user's responsibility to ensure ** that they have met the licensing requirements of the GPL, LGPL, or Qt ** Solutions Commercial license and the relevant license of the Third ** Party Software they are using. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** ****************************************************************************/ #include "qtlocalpeer.h" #include #include #include #if defined(Q_OS_WIN) #include #include typedef BOOL(WINAPI*PProcessIdToSessionId)(DWORD,DWORD*); static PProcessIdToSessionId pProcessIdToSessionId = 0; #endif #if defined(Q_OS_UNIX) #include #endif namespace QtLP_Private { #include "qtlockedfile.cpp" #if defined(Q_OS_WIN) #include "qtlockedfile_win.cpp" #else #include "qtlockedfile_unix.cpp" #endif } const char* QtLocalPeer::ack = "ack"; QtLocalPeer::QtLocalPeer(QObject* parent, const QString &appId) : QObject(parent), id(appId) { QString prefix = id; if (id.isEmpty()) { id = QCoreApplication::applicationFilePath(); #if defined(Q_OS_WIN) id = id.toLower(); #endif prefix = id.section(QLatin1Char('/'), -1); } prefix.remove(QRegExp("[^a-zA-Z]")); prefix.truncate(6); QByteArray idc = id.toUtf8(); quint16 idNum = qChecksum(idc.constData(), idc.size()); socketName = QLatin1String("qtsingleapp-") + prefix + QLatin1Char('-') + QString::number(idNum, 16); #if defined(Q_OS_WIN) if (!pProcessIdToSessionId) { QLibrary lib("kernel32"); pProcessIdToSessionId = (PProcessIdToSessionId)lib.resolve("ProcessIdToSessionId"); } if (pProcessIdToSessionId) { DWORD sessionId = 0; pProcessIdToSessionId(GetCurrentProcessId(), &sessionId); socketName += QLatin1Char('-') + QString::number(sessionId, 16); } #else socketName += QLatin1Char('-') + QString::number(::getuid(), 16); #endif server = new QLocalServer(this); QString lockName = QDir(QDir::tempPath()).absolutePath() + QLatin1Char('/') + socketName + QLatin1String("-lockfile"); lockFile.setFileName(lockName); lockFile.open(QIODevice::ReadWrite); } bool QtLocalPeer::isClient() { if (lockFile.isLocked()) return false; if (!lockFile.lock(QtLP_Private::QtLockedFile::WriteLock, false)) return true; bool res = server->listen(socketName); #if defined(Q_OS_UNIX) && (QT_VERSION >= QT_VERSION_CHECK(4,5,0)) // ### Workaround if (!res && server->serverError() == QAbstractSocket::AddressInUseError) { QFile::remove(QDir::cleanPath(QDir::tempPath())+QLatin1Char('/')+socketName); res = server->listen(socketName); } #endif if (!res) qWarning("QtSingleCoreApplication: listen on local socket failed, %s", qPrintable(server->errorString())); QObject::connect(server, SIGNAL(newConnection()), SLOT(receiveConnection())); return false; } bool QtLocalPeer::sendMessage(const QString &message, int timeout) { if (!isClient()) return false; QLocalSocket socket; bool connOk = false; for(int i = 0; i < 2; i++) { // Try twice, in case the other instance is just starting up socket.connectToServer(socketName); connOk = socket.waitForConnected(timeout/2); if (connOk || i) break; int ms = 250; #if defined(Q_OS_WIN) Sleep(DWORD(ms)); #else struct timespec ts = { ms / 1000, (ms % 1000) * 1000 * 1000 }; nanosleep(&ts, NULL); #endif } if (!connOk) return false; QByteArray uMsg(message.toUtf8()); QDataStream ds(&socket); ds.writeBytes(uMsg.constData(), uMsg.size()); bool res = socket.waitForBytesWritten(timeout); res &= socket.waitForReadyRead(timeout); // wait for ack res &= (socket.read(qstrlen(ack)) == ack); return res; } void QtLocalPeer::receiveConnection() { QLocalSocket* socket = server->nextPendingConnection(); if (!socket) return; while (socket->bytesAvailable() < (int)sizeof(quint32)) socket->waitForReadyRead(); QDataStream ds(socket); QByteArray uMsg; quint32 remaining; ds >> remaining; uMsg.resize(remaining); int got = 0; char* uMsgBuf = uMsg.data(); do { got = ds.readRawData(uMsgBuf, remaining); remaining -= got; uMsgBuf += got; } while (remaining && got >= 0 && socket->waitForReadyRead(2000)); if (got < 0) { qWarning() << "QtLocalPeer: Message reception failed" << socket->errorString(); delete socket; return; } QString message(QString::fromUtf8(uMsg)); socket->write(ack, qstrlen(ack)); socket->waitForBytesWritten(1000); delete socket; emit messageReceived(message); //### (might take a long time to return) } musique/src/qtsingleapplication/QtSingleApplication0000664000175000017500000000004111715011710022555 0ustar flavioflavio#include "qtsingleapplication.h" musique/src/qtsingleapplication/QtLockedFile0000664000175000017500000000003211715011710021151 0ustar flavioflavio#include "qtlockedfile.h" musique/src/playlistwidget.h0000664000175000017500000000043311715011710016071 0ustar flavioflavio#ifndef PLAYLISTWIDGET_H #define PLAYLISTWIDGET_H #include class PlaylistView; class DropArea; class PlaylistArea : public QWidget { Q_OBJECT; public: PlaylistArea(PlaylistView *playlistView, DropArea *dropArea, QWidget *parent); }; #endif // PLAYLISTWIDGET_H musique/src/playlistwidget.cpp0000664000175000017500000000062511715011710016427 0ustar flavioflavio#include "playlistwidget.h" #include "droparea.h" #include "playlistview.h" PlaylistArea::PlaylistArea( PlaylistView *playlistView, DropArea *dropArea, QWidget *parent) : QWidget(parent) { QBoxLayout *layout = new QVBoxLayout(); layout->setMargin(0); layout->setSpacing(0); layout->addWidget(playlistView); layout->addWidget(dropArea); setLayout(layout); } musique/src/playlistview.h0000664000175000017500000000220211715011710015554 0ustar flavioflavio#ifndef PLAYLISTVIEW_H #define PLAYLISTVIEW_H #include class PlaylistModel; class Track; class DropArea; class PlaylistView : public QListView { Q_OBJECT public: PlaylistView(QWidget *parent); void setPlaylistModel(PlaylistModel *model); void setDropArea(DropArea *dropArea) { this->dropArea = dropArea; } void setEmptyPlaylistMessage(QString emptyMessage) { this->emptyMessage = emptyMessage; } signals: void needDropArea(); public slots: void removeSelected(); void moveUpSelected(); void moveDownSelected(); void itemActivated(const QModelIndex &index); void selectionChanged (const QItemSelection & selected, const QItemSelection & deselected); void updatePlaylistActions(); void selectTracks(QList tracks); protected: void paintEvent(QPaintEvent *event); /* void dragEnterEvent(QDragEnterEvent *event); void dragLeaveEvent(QDragLeaveEvent *event); */ private: PlaylistModel *playlistModel; DropArea *dropArea; bool willHideDropArea; QString emptyMessage; QLabel* overlayLabel; }; #endif // PLAYLISTVIEW_H musique/src/playlistview.cpp0000664000175000017500000001543411715011710016122 0ustar flavioflavio#include "playlistview.h" #include "model/track.h" #include "playlistmodel.h" #include "playlistitemdelegate.h" #include "droparea.h" #include "globalshortcuts.h" #include "fontutils.h" namespace The { QMap* globalActions(); QMap* globalMenus(); } PlaylistView::PlaylistView(QWidget *parent) : QListView(parent), playlistModel(0), overlayLabel(0) { // delegate setItemDelegate(new PlaylistItemDelegate(this)); // cosmetics setMinimumWidth(fontInfo().pixelSize()*25); setVerticalScrollMode(QAbstractItemView::ScrollPerPixel); setFrameShape(QFrame::NoFrame); setAttribute(Qt::WA_MacShowFocusRect, false); // setAlternatingRowColors(true); // behaviour setSelectionMode(QAbstractItemView::ExtendedSelection); // dragndrop setDragEnabled(true); setAcceptDrops(true); setDropIndicatorShown(false); setDragDropMode(QAbstractItemView::DragDrop); // actions connect(The::globalActions()->value("remove"), SIGNAL(triggered()), SLOT(removeSelected())); connect(The::globalActions()->value("moveUp"), SIGNAL(triggered()), SLOT(moveUpSelected())); connect(The::globalActions()->value("moveDown"), SIGNAL(triggered()), SLOT(moveDownSelected())); // respond to the user doubleclicking a playlist item connect(this, SIGNAL(activated(const QModelIndex &)), SLOT(itemActivated(const QModelIndex &))); } void PlaylistView::setPlaylistModel(PlaylistModel *playlistModel) { this->playlistModel = playlistModel; setModel(playlistModel); // needed to restore the selection after dragndrop connect(playlistModel, SIGNAL(needSelectionFor(QList)), SLOT(selectTracks(QList))); connect(selectionModel(), SIGNAL(selectionChanged ( const QItemSelection & , const QItemSelection & )), SLOT(selectionChanged ( const QItemSelection & , const QItemSelection & ))); connect(playlistModel, SIGNAL(layoutChanged()), this, SLOT(updatePlaylistActions())); connect(playlistModel, SIGNAL(rowsInserted(const QModelIndex &, int, int)), this, SLOT(updatePlaylistActions())); connect(playlistModel, SIGNAL(rowsRemoved(const QModelIndex &, int, int)), this, SLOT(updatePlaylistActions())); connect(playlistModel, SIGNAL(modelReset()), SLOT(updatePlaylistActions())); connect(The::globalActions()->value("clearPlaylist"), SIGNAL(triggered()), playlistModel, SLOT(clear())); connect(The::globalActions()->value("skip"), SIGNAL(triggered()), playlistModel, SLOT(skipForward())); connect(The::globalActions()->value("previous"), SIGNAL(triggered()), playlistModel, SLOT(skipBackward())); GlobalShortcuts &shortcuts = GlobalShortcuts::instance(); connect(&shortcuts, SIGNAL(Next()), The::globalActions()->value("skip"), SLOT(trigger())); connect(&shortcuts, SIGNAL(Previous()), The::globalActions()->value("previous"), SLOT(trigger())); } void PlaylistView::itemActivated(const QModelIndex &index) { if (playlistModel->rowExists(index.row())) playlistModel->setActiveRow(index.row(), true); } void PlaylistView::removeSelected() { if (!this->selectionModel()->hasSelection()) return; QModelIndexList indexes = this->selectionModel()->selectedIndexes(); playlistModel->removeIndexes(indexes); } void PlaylistView::selectTracks(QList tracks) { /* foreach (Track *track, tracks) { QModelIndex index = playlistModel->indexForTrack(track); // FIXME this causes dropped tracks to disappear! selectionModel()->select(index, QItemSelectionModel::Select); // scrollTo(index, QAbstractItemView::EnsureVisible); } */ } void PlaylistView::selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) { QListView::selectionChanged(selected, deselected); const bool gotSelection = this->selectionModel()->hasSelection(); The::globalActions()->value("remove")->setEnabled(gotSelection); The::globalActions()->value("moveUp")->setEnabled(gotSelection); The::globalActions()->value("moveDown")->setEnabled(gotSelection); } void PlaylistView::updatePlaylistActions() { const int rowCount = playlistModel->rowCount(QModelIndex()); const bool isPlaylistEmpty = rowCount < 1; The::globalActions()->value("clearPlaylist")->setEnabled(!isPlaylistEmpty); if (!isPlaylistEmpty) The::globalActions()->value("play")->setEnabled(true); // TODO also check if we're on first/last track The::globalActions()->value("skip")->setEnabled(rowCount > 1); The::globalActions()->value("previous")->setEnabled(rowCount > 1); if (isPlaylistEmpty) { setStatusTip(tr("Playlist is empty")); } else { const int totalLength = playlistModel->getTotalLength(); QString playlistLength; if (totalLength > 3600) playlistLength = QTime().addSecs(totalLength).toString("h:mm:ss"); else playlistLength = QTime().addSecs(totalLength).toString("m:ss"); setStatusTip(tr("%1 tracks - Total length is %2") .arg(QString::number(rowCount), playlistLength)); } } void PlaylistView::moveUpSelected() { if (!this->selectionModel()->hasSelection()) return; QModelIndexList indexes = this->selectionModel()->selectedIndexes(); playlistModel->move(indexes, true); } void PlaylistView::moveDownSelected() { if (!this->selectionModel()->hasSelection()) return; QModelIndexList indexes = this->selectionModel()->selectedIndexes(); playlistModel->move(indexes, false); } /* void PlaylistView::dragEnterEvent(QDragEnterEvent *event) { QListView::dragEnterEvent(event); qDebug() << "dragEnter"; if (verticalScrollBar()->isVisible()) { qDebug() << "need drop area"; // emit needDropArea(); dropArea->show(); willHideDropArea = false; } } void PlaylistView::dragLeaveEvent(QDragLeaveEvent *event) { QListView::dragLeaveEvent(event); qDebug() << "dragLeave"; // emit DropArea(); willHideDropArea = true; QTimer::singleShot(1000, dropArea, SLOT(hide())); } */ void PlaylistView::paintEvent(QPaintEvent *event) { QListView::paintEvent(event); if ( playlistModel->rowCount() == 0 && !emptyMessage.isEmpty()) { event->accept(); QPainter painter(this->viewport()); QPen textPen; textPen.setBrush(palette().mid()); painter.setPen(textPen); painter.setFont(FontUtils::bigBold()); QSize textSize(QFontMetrics(painter.font()).size(Qt::TextSingleLine, emptyMessage)); QPoint centerPoint((this->width()-textSize.width())/2, ((this->height()-textSize.height())/2)); QRect centerRect(centerPoint, textSize); QRect boundRect; painter.drawText(centerRect, Qt::AlignCenter, emptyMessage, &boundRect); } } musique/src/playlistmodel.h0000664000175000017500000000410711715011710015710 0ustar flavioflavio#ifndef PLAYLISTMODEL_H #define PLAYLISTMODEL_H #include #include "model/track.h" namespace Playlist { enum PlaylistDataRoles { DataObjectRole = Qt::UserRole, ActiveItemRole, HoveredItemRole }; } class PlaylistModel : public QAbstractListModel { Q_OBJECT public: PlaylistModel(QWidget *parent); // inherited from QAbstractListModel int rowCount(const QModelIndex &parent = QModelIndex()) const; QVariant data(const QModelIndex &index, int role) const; bool removeRows(int position, int rows, const QModelIndex &parent); // drag and drop Qt::ItemFlags flags(const QModelIndex &index) const; QStringList mimeTypes() const; Qt::DropActions supportedDropActions() const; QMimeData* mimeData( const QModelIndexList &indexes ) const; bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent); // custom methods void setActiveRow(int row, bool manual = false); bool rowExists( int row ) const { return (( row >= 0 ) && ( row < tracks.size() ) ); } void removeIndexes(QModelIndexList &indexes); int rowForTrack(Track* track); QModelIndex indexForTrack(Track* track); void move(QModelIndexList &indexes, bool up); Track* trackAt( int row ) const; Track* getActiveTrack() const; int getTotalLength() { return Track::getTotalLength(tracks); } // IO methods bool saveTo(QTextStream& stream) const; bool loadFrom(QTextStream& stream); public slots: void addTrack(Track* track); void addTracks(QList tracks); void clear(); void skipBackward(); void skipForward(); void trackRemoved(); signals: void activeRowChanged(int, bool); void needSelectionFor(QList); void itemChanged(int total); void playlistFinished(); private: void addShuffledTrack(Track *track); QList tracks; QList playedTracks; int activeRow; Track *activeTrack; QString errorMessage; }; #endif // PLAYLISTMODEL_H musique/src/playlistmodel.cpp0000664000175000017500000003112611715011710016244 0ustar flavioflavio#include #include "playlistmodel.h" #include "trackmimedata.h" #include "model/album.h" #include "model/artist.h" #include "mainwindow.h" namespace The { QMap* globalActions(); } #ifdef APP_DEMO static const int demoMaxTracks = 10; static QString demoMessage; #endif PlaylistModel::PlaylistModel(QWidget *parent) : QAbstractListModel(parent) { activeTrack = 0; activeRow = -1; #ifdef APP_DEMO demoMessage = tr("This demo is limited to only %1 tracks in the playlist.").arg(QString::number(demoMaxTracks)); #endif } int PlaylistModel::rowCount(const QModelIndex & /* parent */) const { return tracks.size(); } QVariant PlaylistModel::data(const QModelIndex &index, int role) const { const int row = index.row(); if (row < 0 || row >= tracks.size()) return QVariant(); Track *track = tracks.at(row); if (!track) return QVariant(); switch (role) { case Playlist::DataObjectRole: return QVariant::fromValue(QPointer(track)); case Playlist::ActiveItemRole: return track == activeTrack; } return QVariant(); } void PlaylistModel::setActiveRow(int row, bool manual) { if (!rowExists(row)) return; const int oldActiveRow = activeRow; activeRow = row; activeTrack = trackAt(activeRow); activeTrack->setPlayed(true); playedTracks << activeTrack; if (rowExists(oldActiveRow)) { QModelIndex oldIndex = index(oldActiveRow, 0, QModelIndex()); emit dataChanged(oldIndex, oldIndex); } QModelIndex newIndex = index(activeRow, 0, QModelIndex()); emit dataChanged(newIndex, newIndex); emit activeRowChanged(row, manual); } void PlaylistModel::skipBackward() { QSettings settings; const bool shuffle = settings.value("shuffle").toBool(); Track *previousTrack = 0; if (shuffle) { if (playedTracks.size() > 1) previousTrack = playedTracks.at(playedTracks.size() - 2); } else { int prevRow = activeRow - 1; if (rowExists(prevRow)) { previousTrack = tracks.at(prevRow); } } if (previousTrack) { playedTracks.removeAll(previousTrack); previousTrack->setPlayed(false); playedTracks.removeAll(activeTrack); activeTrack->setPlayed(false); int prevRow = tracks.indexOf(previousTrack); setActiveRow(prevRow); } } void PlaylistModel::skipForward() { QSettings settings; const bool shuffle = settings.value("shuffle").toBool(); const bool repeat = settings.value("repeat").toBool(); Track *nextTrack = 0; if (shuffle) { // get a random non-played non-active track if (playedTracks.size() < tracks.size()) { while (nextTrack == 0) { int nextRow = (int) ((float) qrand() / (float) RAND_MAX * tracks.size()); Track *candidateTrack = tracks.at(nextRow); if (!candidateTrack->isPlayed() && candidateTrack != activeTrack) { nextTrack = candidateTrack; } } } // repeat if (repeat && nextTrack == 0 && !tracks.empty()) { playedTracks.clear(); foreach (Track *track, tracks) { track->setPlayed(false); } // get a random non-active track while (nextTrack == 0) { int nextRow = (int) ((float) qrand() / (float) RAND_MAX * (tracks.size() - 1)); Track *candidateTrack = tracks.at(nextRow); if (candidateTrack != activeTrack) { nextTrack = candidateTrack; } } } } else { // normal non-shuffle mode int nextRow = activeRow + 1; if (rowExists(nextRow)) { nextTrack = tracks.at(nextRow); } else if (repeat && !tracks.empty()) { nextTrack = tracks.first(); } } if (nextTrack) { int nextRow = tracks.indexOf(nextTrack); setActiveRow(nextRow); } else { activeRow = -1; activeTrack = 0; foreach(Track *track, playedTracks) track->setPlayed(false); playedTracks.clear(); emit playlistFinished(); } } Track* PlaylistModel::trackAt(int row) const { if (rowExists(row)) return tracks.at(row); return 0; } Track* PlaylistModel::getActiveTrack() const { return activeTrack; } void PlaylistModel::addShuffledTrack(Track* track) { int activeTrackIndex = playedTracks.indexOf(activeTrack); if (activeTrackIndex == -1) activeTrackIndex = 0; int randomRange = playedTracks.size() - activeTrackIndex; int randomRow = activeTrackIndex + (int) ((float) qrand() / (float) RAND_MAX * randomRange); playedTracks.insert(randomRow, track); } void PlaylistModel::addTrack(Track* track) { // no duplicates if (!tracks.contains(track)) { #ifdef APP_DEMO if (this->tracks.size() >= demoMaxTracks) { MainWindow::instance()->showDemoDialog(demoMessage); return; } #endif track->setPlayed(false); connect(track, SIGNAL(removed()), SLOT(trackRemoved())); beginInsertRows(QModelIndex(), tracks.size(), tracks.size()); tracks << track; endInsertRows(); } } void PlaylistModel::addTracks(QList tracks) { if (!tracks.empty()) { // remove duplicates foreach(Track* track, this->tracks) { tracks.removeAll(track); } if (!tracks.empty()) { #ifdef APP_DEMO if (this->tracks.size() >= demoMaxTracks) { MainWindow::instance()->showDemoDialog(demoMessage); return; } #endif beginInsertRows(QModelIndex(), this->tracks.size(), this->tracks.size() + tracks.size() - 1); // this->tracks.append(tracks); foreach(Track* track, tracks) { #ifdef APP_DEMO if (this->tracks.size() >= demoMaxTracks) { endInsertRows(); MainWindow::instance()->showDemoDialog(demoMessage); return; } #endif this->tracks.append(track); track->setPlayed(false); connect(track, SIGNAL(removed()), SLOT(trackRemoved())); } endInsertRows(); } } } void PlaylistModel::clear() { playedTracks.clear(); tracks.clear(); activeTrack = 0; activeRow = -1; emit layoutChanged(); emit reset(); } // --- item removal bool PlaylistModel::removeRows(int position, int rows, const QModelIndex & /*parent*/) { beginRemoveRows(QModelIndex(), position, position + rows - 1); for (int row = 0; row < rows; ++row) { Track *track = tracks.takeAt(position); if (track) { track->setPlayed(false); playedTracks.removeAll(track); } } endRemoveRows(); return true; } void PlaylistModel::removeIndexes(QModelIndexList &indexes) { QList originalList(tracks); QList delitems; foreach (QModelIndex index, indexes) { Track* track = originalList.at(index.row()); int idx = tracks.indexOf(track); if (idx != -1) { beginRemoveRows(QModelIndex(), idx, idx); delitems.append(track); tracks.removeAll(track); endRemoveRows(); playedTracks.removeAll(track); track->setPlayed(false); } } } // --- Sturm und drang --- Qt::DropActions PlaylistModel::supportedDropActions() const { return Qt::MoveAction; } Qt::ItemFlags PlaylistModel::flags(const QModelIndex &index) const { Qt::ItemFlags defaultFlags = QAbstractListModel::flags(index); if (index.isValid()) { return ( defaultFlags | Qt::ItemIsDropEnabled | Qt::ItemIsDragEnabled ); } else return Qt::ItemIsDropEnabled | defaultFlags; } QStringList PlaylistModel::mimeTypes() const { QStringList types; types << TRACK_MIME; return types; } QMimeData* PlaylistModel::mimeData( const QModelIndexList &indexes ) const { TrackMimeData* mime = new TrackMimeData(); foreach( const QModelIndex &it, indexes ) { int row = it.row(); if (row >= 0 && row < tracks.size()) mime->addTrack( tracks.at( it.row() ) ); } return mime; } bool PlaylistModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) { QAbstractListModel::dropMimeData(data, action, row, column, parent); if (action == Qt::IgnoreAction) return true; if (!data->hasFormat(TRACK_MIME)) return false; if (column > 0) return false; int beginRow; if (row != -1) beginRow = row; else if (parent.isValid()) beginRow = parent.row(); else beginRow = rowCount(); const TrackMimeData* trackMimeData = dynamic_cast( data ); if(!trackMimeData ) return false; int counter = 0; QList droppedTracks = trackMimeData->tracks(); // qDebug() << "Dropped" << droppedTracks << "at" << beginRow; foreach(Track *track, droppedTracks) { // remove track const int trackRow = tracks.indexOf(track); if (trackRow != -1) removeRows(trackRow, 1, QModelIndex()); #ifdef APP_DEMO if (this->tracks.size() >= demoMaxTracks) { MainWindow::instance()->showDemoDialog(demoMessage); return true; } #endif // and then add it at the new position const int targetRow = beginRow + counter; beginInsertRows(QModelIndex(), targetRow, targetRow); tracks.insert(targetRow, track); endInsertRows(); counter++; } // fix activeRow after all this activeRow = tracks.indexOf(activeTrack); emit needSelectionFor(droppedTracks); return true; } int PlaylistModel::rowForTrack(Track* track) { return tracks.indexOf(track); } QModelIndex PlaylistModel::indexForTrack(Track* track) { return createIndex(tracks.indexOf(track), 0); } void PlaylistModel::move(QModelIndexList &indexes, bool up) { QList movedTracks; foreach (QModelIndex index, indexes) { int row = index.row(); // qDebug() << "index row" << row; Track *track = trackAt(row); if (track) movedTracks << track; } int counter = 1; foreach (Track *track, movedTracks) { int row = rowForTrack(track); // qDebug() << "track row" << row; removeRows(row, 1, QModelIndex()); if (up) row--; else row++; beginInsertRows(QModelIndex(), row, row); tracks.insert(row, track); endInsertRows(); counter++; } emit needSelectionFor(movedTracks); } void PlaylistModel::trackRemoved() { // get the Track that sent the signal Track *track = static_cast(sender()); if (!track) { qDebug() << "Cannot get sender track"; return; } int trackRow = rowForTrack(track); if (trackRow != -1) { qDebug() << "removing track from playlist model" << track; removeRows(trackRow, 1, QModelIndex()); } } bool PlaylistModel::saveTo(QTextStream & stream) const { // stream not opened or not writable if ( !stream.device()->isOpen() || !stream.device()->isWritable() ) return false; stream.setCodec("UTF-8"); stream << "[playlist]" << endl; int idx = 1; foreach(Track* tr, tracks) { stream << "File" << idx << "=" << tr->getPath() << endl; stream << "Title" << idx << "=" << tr->getTitle() << endl; stream << "Length" << idx++ << "=" << tr->getLength() << endl; } stream << "NumberOfEntries=" << tracks.count() << endl; stream << "Version=2" << endl; return true; } bool PlaylistModel::loadFrom(QTextStream & stream) { // stream not opened or not writable if ( !stream.device()->isOpen() || !stream.device()->isReadable() ) return false; stream.setCodec("UTF-8"); QString header; QString tag; Track* cur = 0; stream >> header; while ( !stream.atEnd() ) { QString line = stream.readLine(1024); if ( line.startsWith("File") ) { QString path = line.section("=", -1); cur = Track::forPath(path); if (cur) addTrack(cur); } else if ( line.startsWith("Title") && cur != NULL ) { tag = line.right(line.size()-line.indexOf("=")-1); if ( !tag.isNull() && !tag.isEmpty() ) cur->setTitle(tag); } } return true; } musique/src/playlistitemdelegate.h0000664000175000017500000000241411715011710017240 0ustar flavioflavio#ifndef PLAYLISTITEMDELEGATE_H #define PLAYLISTITEMDELEGATE_H #include class Track; class PlaylistItemDelegate : public QStyledItemDelegate { Q_OBJECT public: PlaylistItemDelegate(QObject *parent = 0); QSize sizeHint( const QStyleOptionViewItem&, const QModelIndex&) const; void paint( QPainter*, const QStyleOptionViewItem&, const QModelIndex&) const; private: QPixmap createPlayIcon() const; QPixmap getPlayIcon() const; void paintTrack(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const; void paintAlbumHeader(QPainter* painter, const QStyleOptionViewItem& option, QRect line, Track* track) const; void paintTrackNumber(QPainter* painter, const QStyleOptionViewItem& option, QRect line, Track* track) const; void paintTrackTitle(QPainter* painter, const QStyleOptionViewItem& option, QRect line, Track* track) const; void paintTrackLength(QPainter* painter, const QStyleOptionViewItem& option, QRect line, Track* track) const; void paintActiveOverlay(QPainter *painter, const QStyleOptionViewItem& option, QRect line) const; void paintSelectedOverlay( QPainter *painter, QRect line) const; static const int PADDING; static int ITEM_HEIGHT; }; #endif // PLAYLISTITEMDELEGATE_H musique/src/playlistitemdelegate.cpp0000664000175000017500000003021411715011710017572 0ustar flavioflavio#include "playlistitemdelegate.h" #include "model/track.h" #include "model/album.h" #include "model/artist.h" #include "playlistmodel.h" #include "iconloader/qticonloader.h" const int PlaylistItemDelegate::PADDING = 10; int PlaylistItemDelegate::ITEM_HEIGHT = 0; PlaylistItemDelegate::PlaylistItemDelegate(QObject *parent) : QStyledItemDelegate(parent) { } QSize PlaylistItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const { // determine item height based on font metrics if (ITEM_HEIGHT == 0) { ITEM_HEIGHT = option.fontMetrics.height() * 2; } QModelIndex previousIndex = index.sibling(index.row()-1, index.column()); if (previousIndex.isValid()) { const TrackPointer previousTrackPointer = previousIndex.data(Playlist::DataObjectRole).value(); Track *previousTrack = previousTrackPointer.data(); if (previousTrack) { const TrackPointer trackPointer = index.data(Playlist::DataObjectRole).value(); Track *track = trackPointer.data(); if (previousTrack->getAlbum() != track->getAlbum()) { return QSize(ITEM_HEIGHT*2, ITEM_HEIGHT*2); } } } else { return QSize(ITEM_HEIGHT*2, ITEM_HEIGHT*2); } return QSize(ITEM_HEIGHT, ITEM_HEIGHT); } void PlaylistItemDelegate::paint( QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const { paintTrack(painter, option, index); } QPixmap PlaylistItemDelegate::createPlayIcon() const { QIcon icon = QtIconLoader::icon("media-playback-start"); return icon.pixmap(16, 16); } QPixmap PlaylistItemDelegate::getPlayIcon() const { static QPixmap playIcon; if (playIcon.isNull()) { playIcon = createPlayIcon(); } return playIcon; } void PlaylistItemDelegate::paintTrack(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const { // get the data object const TrackPointer trackPointer = index.data(Playlist::DataObjectRole).value(); Track *track = trackPointer.data(); // const PlaylistModel* playlistModel = dynamic_cast(index.model()); const bool isActive = index.data(Playlist::ActiveItemRole).toBool(); // const bool isHovered = index.data(Playlist::HoveredItemRole).toBool(); const bool isSelected = option.state & QStyle::State_Selected; if (isSelected) QApplication::style()->drawPrimitive(QStyle::PE_PanelItemViewItem, &option, painter); painter->save(); painter->translate(option.rect.topLeft()); QRect line(0, 0, option.rect.width(), option.rect.height()); #if defined(APP_MAC) | defined(APP_WIN) if (isSelected) { paintSelectedOverlay(painter, line); } #endif // text color if (isSelected) painter->setPen(QPen(option.palette.brush(QPalette::HighlightedText), 0)); else painter->setPen(QPen(option.palette.brush(QPalette::Text), 0)); if (line.height() > ITEM_HEIGHT) { // qDebug() << "header at index" << index.row(); line.setHeight(ITEM_HEIGHT); paintAlbumHeader(painter, option, line, track); // now modify our rect and painter // to make them similar to "headerless" items line.moveBottom(ITEM_HEIGHT); painter->translate(0, ITEM_HEIGHT); } if (isActive) { if (!isSelected) paintActiveOverlay(painter, option, line); QFont boldFont = painter->font(); boldFont.setBold(true); painter->setFont(boldFont); // play icon painter->drawPixmap(PADDING*2, (ITEM_HEIGHT - 16) / 2, 16, 16, getPlayIcon()); } else { paintTrackNumber(painter, option, line, track); } // qDebug() << "painting" << track; paintTrackTitle(painter, option, line, track); paintTrackLength(painter, option, line, track); // separator painter->setPen(option.palette.color(QPalette::Midlight)); painter->drawLine(0, line.height()-1, line.width(), line.height()-1); painter->restore(); } void PlaylistItemDelegate::paintAlbumHeader( QPainter* painter, const QStyleOptionViewItem& option, QRect line, Track* track) const { QString headerTitle; Album *album = track->getAlbum(); if (album) headerTitle = album->getTitle(); Artist *artist = track->getArtist(); if (artist) headerTitle += " - " + artist->getName(); painter->save(); // cover background /* QImage p = album->getPhoto(); if (!p.isNull()) { painter->drawTiledPixmap(line, QPixmap::fromImage(p)); QLinearGradient linearGrad(0, 0, 0, line.height()); linearGrad.setColorAt(0, QColor(0,0,0, 96)); linearGrad.setColorAt(1, QColor(0,0,0, 64)); painter->fillRect(line, QBrush(linearGrad)); } else { QLinearGradient linearGrad(0, 0, 0, line.height()); linearGrad.setColorAt(0, option.palette.color(QPalette::Mid)); linearGrad.setColorAt(1, option.palette.midlight().color()); painter->fillRect(line, QBrush(linearGrad)); }*/ QLinearGradient linearGrad(0, 0, 0, line.height()); #ifdef APP_MAC linearGrad.setColorAt(0, QColor(0x99, 0x99, 0x99, 0xFF)); linearGrad.setColorAt(1, QColor(0xCC, 0xCC, 0xCC, 0xFF)); #else linearGrad.setColorAt(0, option.palette.color(QPalette::Mid)); linearGrad.setColorAt(1, option.palette.color(QPalette::Midlight)); #endif painter->fillRect(line, QBrush(linearGrad)); // borders // painter->setPen(option.palette.color(QPalette::Light)); // painter->drawLine(0, 0, line.width(), 0); painter->setPen(option.palette.color(QPalette::Mid)); painter->drawLine(0, line.height()-1, line.width(), line.height()-1); // font QFont boldFont = painter->font(); boldFont.setBold(true); painter->setFont(boldFont); // text size QFontMetrics fontMetrics = QFontMetrics(painter->font()); QSize trackStringSize(fontMetrics.size(Qt::TextSingleLine, headerTitle)); int width = trackStringSize.width(); const int maxWidth = line.width() - 80; if (width > maxWidth) width = maxWidth; QPoint textLoc(15, 0); QRect trackTextBox(textLoc.x(), textLoc.y(), width, line.height()); headerTitle = fontMetrics.elidedText(headerTitle, Qt::ElideRight, trackTextBox.width()); // text shadow painter->setPen(QColor(0, 0, 0, 64)); painter->drawText(trackTextBox.translated(0, -1), Qt::AlignLeft | Qt::AlignVCenter, headerTitle); // text painter->setPen(option.palette.color(QPalette::Light)); painter->drawText(trackTextBox, Qt::AlignLeft | Qt::AlignVCenter, headerTitle); // album length if (album) { // TODO this is the album duration, but not necessarily what we have in the playlist int totalLength = Track::getTotalLength(album->getTracks()); QString albumLength; if (totalLength > 3600) albumLength = QTime().addSecs(totalLength).toString("h:mm:ss"); else albumLength = QTime().addSecs(totalLength).toString("m:ss"); QFont normalFont = painter->font(); normalFont.setBold(false); // normalFont.setPointSize(boldFont.pointSize()*.9); painter->setFont(normalFont); // text shadow painter->setPen(QColor(0, 0, 0, 64)); painter->drawText(line.translated(-PADDING, -1), Qt::AlignRight | Qt::AlignVCenter, albumLength); painter->setPen(option.palette.color(QPalette::Light)); painter->drawText(line.translated(-PADDING, 0), Qt::AlignRight | Qt::AlignVCenter, albumLength); } // TODO album year painter->restore(); } void PlaylistItemDelegate::paintTrackNumber( QPainter* painter, const QStyleOptionViewItem& option, QRect line, Track* track) const { const int trackNumber = track->getNumber(); if (trackNumber < 1) return; painter->save(); // track number QFont boldFont = painter->font(); boldFont.setBold(true); boldFont.setPointSize(boldFont.pointSize()*.9); painter->setFont(boldFont); QString trackString = QString("%1").arg(trackNumber, 2, 10, QChar('0')); QSize trackStringSize(QFontMetrics(painter->font()).size( Qt::TextSingleLine, trackString)); QPoint textLoc(PADDING*2, 0); QRect trackTextBox(textLoc.x(), textLoc.y(), trackStringSize.width(), line.height()); // rounded rect QRect trackRoundedRect = trackTextBox; trackRoundedRect.setY((line.height() - trackStringSize.height()) / 2); trackRoundedRect.setHeight(trackStringSize.height()); trackRoundedRect.adjust(-PADDING/2, -PADDING/3, PADDING/2, PADDING/3); painter->setOpacity(.5); painter->setRenderHints(QPainter::Antialiasing, true); painter->setBrush(option.palette.window()); painter->setPen(option.palette.WindowText); painter->drawRoundedRect(trackRoundedRect, PADDING/2, PADDING/2, Qt::AbsoluteSize); painter->drawText(trackTextBox, Qt::AlignCenter, trackString); painter->restore(); } void PlaylistItemDelegate::paintTrackTitle( QPainter* painter, const QStyleOptionViewItem& option, QRect line, Track* track) const { QFontMetrics fontMetrics = QFontMetrics(painter->font()); QString trackTitle = track->getTitle(); QSize trackStringSize(fontMetrics.size(Qt::TextSingleLine, trackTitle)); QPoint textLoc(PADDING*6, 0); int width = trackStringSize.width(); const int maxWidth = line.width() - 110; if (width > maxWidth) width = maxWidth; QRect trackTextBox(textLoc.x(), textLoc.y(), width, line.height()); trackTitle = fontMetrics.elidedText(trackTitle, Qt::ElideRight, trackTextBox.width()); painter->drawText(trackTextBox, Qt::AlignLeft | Qt::AlignVCenter, trackTitle); } void PlaylistItemDelegate::paintTrackLength( QPainter* painter, const QStyleOptionViewItem& option, QRect line, Track* track) const { QString trackLength; if (track->getLength() > 3600) trackLength = QTime().addSecs(track->getLength()).toString("h:mm:ss"); else if (track->getLength() > 0) trackLength = QTime().addSecs(track->getLength()).toString("m:ss"); // QSize trackStringSize(QFontMetrics(painter->font()).size(Qt::TextSingleLine, trackLength)); QPoint textLoc(PADDING*10, 0); QRect trackTextBox(textLoc.x(), textLoc.y(), line.width() - textLoc.x() - PADDING, line.height()); const bool isSelected = option.state & QStyle::State_Selected; painter->save(); if (!isSelected) painter->setPen(option.palette.color(QPalette::Mid)); painter->drawText(trackTextBox, Qt::AlignRight | Qt::AlignVCenter, trackLength); painter->restore(); } void PlaylistItemDelegate::paintActiveOverlay( QPainter *painter, const QStyleOptionViewItem& option, QRect line) const { QColor highlightColor = option.palette.color(QPalette::Highlight); QColor backgroundColor = option.palette.color(QPalette::Base); const float animation = 0.25; const int gradientRange = 16; QColor color2 = QColor::fromHsv( highlightColor.hue(), (int) (backgroundColor.saturation() * (1.0f - animation) + highlightColor.saturation() * animation), (int) (backgroundColor.value() * (1.0f - animation) + highlightColor.value() * animation) ); QColor color1 = QColor::fromHsv( color2.hue(), qMax(color2.saturation() - gradientRange, 0), qMin(color2.value() + gradientRange, 255) ); painter->save(); painter->setPen(Qt::NoPen); QLinearGradient linearGradient(0, 0, 0, line.height()); linearGradient.setColorAt(0.0, color1); linearGradient.setColorAt(1.0, color2); painter->fillRect(line, linearGradient); painter->restore(); } void PlaylistItemDelegate::paintSelectedOverlay( QPainter *painter, QRect line) const { QColor color1 = QColor::fromRgb(0x69, 0xa6, 0xd9); QColor color2 = QColor::fromRgb(0x14, 0x6b, 0xd4); painter->save(); painter->setPen(Qt::NoPen); QLinearGradient linearGradient(0, 0, 0, line.height()); linearGradient.setColorAt(0.0, color1); linearGradient.setColorAt(1.0, color2); painter->setBrush(linearGradient); painter->drawRect(line); painter->restore(); } musique/src/networkaccess.h0000664000175000017500000000254411715011710015704 0ustar flavioflavio#ifndef NETWORKACCESS_H #define NETWORKACCESS_H #include #include "constants.h" static const QString USER_AGENT = QString(Constants::NAME) + " " + Constants::VERSION + " (" + Constants::WEBSITE + ")"; namespace The { QNetworkAccessManager* networkAccessManager(); } class NetworkReply : public QObject { Q_OBJECT public: NetworkReply(QNetworkReply* networkReply); bool followRedirects; public slots: void finished(); void requestError(QNetworkReply::NetworkError); signals: void data(QByteArray); void error(QNetworkReply*); void finished(QNetworkReply*); private slots: void abort(); private: QNetworkReply *networkReply; QTimer *timer; }; class NetworkAccess : public QObject { Q_OBJECT public: NetworkAccess( QObject* parent=0); QNetworkReply* simpleGet(QUrl url, int operation = QNetworkAccessManager::GetOperation, const QByteArray& body = QByteArray()); NetworkReply* get(QUrl url); NetworkReply* head(QUrl url); NetworkReply* post(QUrl url, const QMap& params); private slots: void error(QNetworkReply::NetworkError); }; typedef QPointer ObjectPointer; Q_DECLARE_METATYPE(ObjectPointer) #endif // NETWORKACCESS_H musique/src/networkaccess.cpp0000664000175000017500000001175411715011710016242 0ustar flavioflavio#include "networkaccess.h" #include "constants.h" #include namespace The { NetworkAccess* http(); } NetworkReply::NetworkReply(QNetworkReply *networkReply) : QObject(networkReply) { this->networkReply = networkReply; followRedirects = true; // error signal connect(networkReply, SIGNAL(error(QNetworkReply::NetworkError)), SLOT(requestError(QNetworkReply::NetworkError)), Qt::QueuedConnection); // when the request is finished we'll invoke the target method connect(networkReply, SIGNAL(finished()), SLOT(finished()), Qt::QueuedConnection); timer = new QTimer(this); timer->setInterval(60000); timer->setSingleShot(true); connect(timer, SIGNAL(timeout()), SLOT(abort())); timer->start(); } void NetworkReply::finished() { timer->stop(); if (networkReply->error() != QNetworkReply::NoError) { qWarning() << networkReply->url().toString() << "finished with error" << networkReply->error(); emit error(networkReply); networkReply->deleteLater(); return; } if (followRedirects) { QUrl redirection = networkReply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl(); if (redirection.isValid()) { // qDebug() << "Redirect!"; // << redirection; QNetworkReply *redirectReply = The::http()->simpleGet(redirection, networkReply->operation()); setParent(redirectReply); networkReply->deleteLater(); networkReply = redirectReply; // when the request is finished we'll invoke the target method connect(networkReply, SIGNAL(finished()), this, SLOT(finished()), Qt::QueuedConnection); return; } } emit data(networkReply->readAll()); emit finished(networkReply); #ifndef QT_NO_DEBUG_OUTPUT if (!networkReply->attribute(QNetworkRequest::SourceIsFromCacheAttribute).toBool()) { qDebug() << networkReply->url().toEncoded(); } #endif // bye bye my reply // this will also delete this NetworkReply as the QNetworkReply is its parent networkReply->deleteLater(); } void NetworkReply::requestError(QNetworkReply::NetworkError /*code*/) { timer->stop(); } void NetworkReply::abort() { qWarning() << "HTTP timeout" << networkReply->url().toString(); networkReply->abort(); emit error(networkReply); } /* --- NetworkAccess --- */ NetworkAccess::NetworkAccess(QObject* parent) : QObject( parent ) {} QNetworkReply* NetworkAccess::simpleGet(QUrl url, int operation, const QByteArray& body) { QNetworkAccessManager *manager = The::networkAccessManager(); QNetworkRequest request(url); request.setRawHeader("User-Agent", USER_AGENT.toUtf8()); request.setRawHeader("Connection", "Keep-Alive"); QNetworkReply *networkReply; switch (operation) { case QNetworkAccessManager::GetOperation: // qDebug() << "GET" << url.toEncoded(); networkReply = manager->get(request); break; case QNetworkAccessManager::HeadOperation: // qDebug() << "HEAD" << url.toEncoded(); networkReply = manager->head(request); break; case QNetworkAccessManager::PostOperation: // qDebug() << "POST" << url.toEncoded(); if (!body.isEmpty()) request.setRawHeader("Content-Type", "application/x-www-form-urlencoded"); networkReply = manager->post(request, body); break; default: qWarning() << "Unknown operation:" << operation; return 0; } // error handling connect(networkReply, SIGNAL(error(QNetworkReply::NetworkError)), this, SLOT(error(QNetworkReply::NetworkError)), Qt::QueuedConnection); return networkReply; } NetworkReply* NetworkAccess::get(const QUrl url) { QNetworkReply *networkReply = simpleGet(url); return new NetworkReply(networkReply); } NetworkReply* NetworkAccess::head(const QUrl url) { QNetworkReply *networkReply = simpleGet(url, QNetworkAccessManager::HeadOperation); NetworkReply *reply = new NetworkReply(networkReply); reply->followRedirects = false; return reply; } NetworkReply* NetworkAccess::post(const QUrl url, const QMap& params) { QByteArray body; QMapIterator i(params); while (i.hasNext()) { i.next(); body += QUrl::toPercentEncoding(i.key()) + '=' + QUrl::toPercentEncoding(i.value()) + '&'; } QNetworkReply *networkReply = simpleGet(url, QNetworkAccessManager::PostOperation, body); NetworkReply *reply = new NetworkReply(networkReply); return reply; } void NetworkAccess::error(QNetworkReply::NetworkError code) { // get the QNetworkReply that sent the signal QNetworkReply *networkReply = static_cast(sender()); if (!networkReply) { qDebug() << "Cannot get sender"; return; } qWarning() << networkReply->errorString() << code; // qDebug() << networkReply->readAll(); networkReply->deleteLater(); } musique/src/model/0000775000175000017500000000000011715011710013753 5ustar flavioflaviomusique/src/model/track.h0000664000175000017500000000557411715011710015243 0ustar flavioflavio#ifndef TRACK_H #define TRACK_H #include #include "item.h" class Album; class Artist; class Track : public Item { Q_OBJECT public: Track(); // item QList getTracks() { QList tracks; tracks << this; return tracks; } QString getStatusTip(); // properties QString getName() { return title; } QString getTitle() { return title; } void setTitle(QString title) { this->title = title; } QString getPath() { return path; } void setPath(QString path) { this->path = path; } int getNumber() { return number; } void setNumber(int number) { this->number = number; } int getLength() { return length; } void setLength(int length) { this->length = length; } int getYear() { return year; } void setYear(int year) { this->year = year; } QString getHash(); QString getAbsolutePath(); int isPlayed() { return played; } void setPlayed(int played) { this->played = played; } int getStartTime() { return startTime; } void setStartTime(int startTime) { this->startTime = startTime; } // relations Album* getAlbum() { return album; } void setAlbum(Album *album) { this->album = album; } Artist* getArtist() { return artist; } void setArtist(Artist *artist) { this->artist = artist; } // cache static void clearCache() { foreach (Track* track, cache.values()) track->emitRemovedSignal(); qDeleteAll(cache); cache.clear(); pathCache.clear(); } void emitRemovedSignal(); // data access static Track* forId(int trackId); static Track* forPath(QString path); static int idForPath(QString path); static bool exists(QString path); static bool isModified(QString path, uint lastModified); static void remove(QString path); void insert(); void update(); // internet void fetchInfo(); void getLyrics(); // utils static int getTotalLength(QList tracks); signals: void gotInfo(); void gotLyrics(QString lyrics); void removed(); private slots: void fetchMusicBrainzTrack(); void parseMusicBrainzTrack(QByteArray bytes); void parseLyricsSearchResults(QByteArray bytes); void scrapeLyrics(QByteArray bytes); void readLyricsFromTags(); private: static QString getHash(QString); static QHash cache; static QHash pathCache; void reset(); // properties QString title; QString path; int number; int year; int length; /* // CUE support int start; int end; */ // relations Album *album; Artist *artist; // playlist bool played; // scrobbling uint startTime; }; // This is required in order to use QPointer as a QVariant typedef QPointer TrackPointer; Q_DECLARE_METATYPE(TrackPointer) #endif // TRACK_H musique/src/model/track.cpp0000664000175000017500000003642611715011710015576 0ustar flavioflavio#include "track.h" #include "album.h" #include "artist.h" #include "../database.h" #include "../datautils.h" #include #include "../networkaccess.h" #include #include "../mbnetworkaccess.h" #include #include #include namespace The { NetworkAccess* http(); } Track::Track() { album = 0; artist = 0; number = 0; year = 0; length = 0; /* start = 0; end = 0; */ played = false; startTime = 0; } QHash Track::cache; QHash Track::pathCache; Track* Track::forId(int trackId) { if (cache.contains(trackId)) { // get from cache // qDebug() << "Track was cached" << trackId; return cache.value(trackId); } QSqlDatabase db = Database::instance().getConnection(); QSqlQuery query(db); query.prepare("select path, title, duration, track, artist, album from tracks where id=?"); query.bindValue(0, trackId); bool success = query.exec(); if (!success) qDebug() << query.lastQuery() << query.lastError().text(); if (query.next()) { Track* track = new Track(); track->setId(trackId); track->setPath(query.value(0).toString()); track->setTitle(query.value(1).toString()); // TODO start & end track->setLength(query.value(2).toInt()); track->setNumber(query.value(3).toInt()); // relations // TODO this could be made lazy int artistId = query.value(4).toInt(); track->setArtist(Artist::forId(artistId)); int albumId = query.value(5).toInt(); track->setAlbum(Album::forId(albumId)); // put into cache cache.insert(trackId, track); if (!pathCache.contains(track->getPath())) pathCache.insert(track->getPath(), track); return track; } // id not found cache.insert(trackId, 0); return 0; } Track* Track::forPath(QString path) { // qDebug() << "Track::forPath" << path; Track *track = 0; if (pathCache.contains(path)) { track = pathCache.value(path); } else { int id = Track::idForPath(path); if (id != -1) track = Track::forId(id); } return track; } int Track::idForPath(QString path) { int id = -1; QSqlDatabase db = Database::instance().getConnection(); QSqlQuery query(db); query.prepare("select id from tracks where path=?"); query.bindValue(0, path); bool success = query.exec(); if (!success) qDebug() << query.lastError().text(); if (query.next()) { id = query.value(0).toInt(); } return id; } bool Track::exists(QString path) { // qDebug() << "Track::exists"; QSqlDatabase db = Database::instance().getConnection(); QSqlQuery query(db); query.prepare("select count(*) from tracks where path=?"); query.bindValue(0, path); bool success = query.exec(); if (!success) qDebug() << query.lastError().text(); if (query.next()) { return query.value(0).toBool(); } return false; } bool Track::isModified(QString path, uint lastModified) { // qDebug() << "Track::isModified"; QSqlDatabase db = Database::instance().getConnection(); QSqlQuery query(db); query.prepare("select id from tracks where path=? and tstampgetId() : 0; query.bindValue(4, albumId); int artistId = artist ? artist->getId() : 0; query.bindValue(5, artistId); query.bindValue(6, QDateTime::currentDateTime().toTime_t()); query.bindValue(7, length); bool success = query.exec(); if (!success) qDebug() << query.lastError().text(); // increment artist's track count if (artist && artist->getId()) { QSqlQuery query(db); query.prepare("update artists set trackCount=trackCount+1 where id=?"); query.bindValue(0, artist->getId()); bool success = query.exec(); if (!success) qDebug() << query.lastError().text(); } // increment album's track count if (album && album->getId()) { QSqlQuery query(db); query.prepare("update albums set trackCount=trackCount+1 where id=?"); query.bindValue(0, album->getId()); bool success = query.exec(); if (!success) qDebug() << query.lastError().text(); } } void Track::update() { QSqlDatabase db = Database::instance().getConnection(); QSqlQuery query(db); query.prepare("select album, artist from tracks where path=?"); query.bindValue(0, path); bool success = query.exec(); if (!success) qDebug() << query.lastError().text(); if (query.next()) { int albumId = query.value(0).toInt(); int artistId = query.value(1).toInt(); if (!album || album->getId() != albumId) { // decrement previous album track count query.prepare("update albums set trackCount=trackCount-1 where id=?"); query.bindValue(0, albumId); success = query.exec(); if (!success) qDebug() << query.lastError().text(); // and increment the new album track count if (album) { query.prepare("update albums set trackCount=trackCount+1 where id=?"); query.bindValue(0, album->getId()); bool success = query.exec(); if (!success) qDebug() << query.lastError().text(); } } if (!artist || artist->getId() != artistId) { query.prepare("update artists set trackCount=trackCount-1 where id=?"); query.bindValue(0, artistId); success = query.exec(); if (!success) qDebug() << query.lastError().text(); if (artist) { query.prepare("update artists set trackCount=trackCount+1 where id=?"); query.bindValue(0, artist->getId()); bool success = query.exec(); if (!success) qDebug() << query.lastError().text(); } } } // qDebug() << "Track::update"; query.prepare("update tracks set title=?, track=?, year=?, album=?, artist=?, tstamp=?, duration=? where path=?"); query.bindValue(0, title); query.bindValue(1, number); query.bindValue(2, year); int albumId = album ? album->getId() : 0; query.bindValue(3, albumId); int artistId = artist ? artist->getId() : 0; query.bindValue(4, artistId); query.bindValue(5, QDateTime().toTime_t()); query.bindValue(6, length); query.bindValue(7, path); success = query.exec(); if (!success) qDebug() << query.lastError().text(); } void Track::remove(QString path) { // qDebug() << "Track::remove"; QSqlDatabase db = Database::instance().getConnection(); QSqlQuery query(db); // first update trackCount on artist and album query.prepare("select album, artist from tracks where path=?"); query.bindValue(0, path); bool success = query.exec(); if (!success) qDebug() << query.lastError().text(); if (query.next()) { int albumId = query.value(0).toInt(); int artistId = query.value(1).toInt(); query.prepare("update albums set trackCount=trackCount-1 where id=?"); query.bindValue(0, albumId); success = query.exec(); if (!success) qDebug() << query.lastError().text(); query.prepare("update artists set trackCount=trackCount-1 where id=?"); query.bindValue(0, artistId); success = query.exec(); if (!success) qDebug() << query.lastError().text(); } // and then actually delete the track query.prepare("delete from tracks where path=?"); query.bindValue(0, path); success = query.exec(); if (!success) qDebug() << query.lastError().text(); // update cache and notify everybody using this track // that it is gone forever int trackId = Track::idForPath(path); if (trackId != -1) { if (cache.contains(trackId)) { Track* track = cache.value(trackId); track->emitRemovedSignal(); cache.remove(trackId); track->deleteLater(); } } } void Track::emitRemovedSignal() { emit removed(); } QString Track::getHash() { return Track::getHash(title); } QString Track::getHash(QString name) { // return DataUtils::calculateHash(DataUtils::normalizeTag(name)); return DataUtils::normalizeTag(name); } QString Track::getStatusTip() { QString tip = "♫ "; Artist* artist = getArtist(); if (artist) tip += artist->getName() + " - "; Album* album = getAlbum(); if (album) tip += album->getName() + " - "; tip += getTitle(); int duration = getLength(); if (duration) tip += " (" + QString::number(duration) + ")"; return tip; } void Track::fetchInfo() { emit gotInfo(); // fetchMusicBrainzTrack(); } // *** MusicBrainz *** void Track::fetchMusicBrainzTrack() { QString s = "http://musicbrainz.org/ws/1/track/?type=xml&title=%1&limit=1"; s = s.arg(title); if (artist) { s = s.append("&artist=%2").arg(artist->getName()); }; QUrl url(s); MBNetworkAccess *http = new MBNetworkAccess(); QObject *reply = http->get(url); connect(reply, SIGNAL(data(QByteArray)), SLOT(parseMusicBrainzTrack(QByteArray))); connect(reply, SIGNAL(error(QNetworkReply*)), SIGNAL(gotInfo())); } void Track::parseMusicBrainzTrack(QByteArray bytes) { QString correctTitle = DataUtils::getXMLElementText(bytes, "title"); qDebug() << title << "-> MusicBrainz ->" << correctTitle; if (!correctTitle.isEmpty()) { this->title = correctTitle; } emit gotInfo(); } QString Track::getAbsolutePath() { QString collectionRoot = Database::instance().collectionRoot(); QString absolutePath = collectionRoot + "/" + path; return absolutePath; } void Track::getLyrics() { #ifdef APP_MAC_STORE_NO bool haveStyle = (QFile::exists(qApp->applicationDirPath() + "/../Resources/style.css")); if (!haveStyle) { return; } #endif QString artistName; if (artist) artistName = artist->getName(); // read from cache const QString storageLocation = QDesktopServices::storageLocation(QDesktopServices::DataLocation) + "/lyrics"; QString filePath = storageLocation; if (artist) filePath += "/" + artist->getHash(); filePath += "/" + getHash(); QFile file(filePath); if (file.exists()) { if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { qDebug() << "Cannot open file" << file.fileName(); } else { QByteArray bytes = file.readAll(); emit gotLyrics(QString::fromUtf8(bytes.data())); return; } } // http://lyrics.wikia.com/LyricWiki:REST QUrl url = QString( "http://lyrics.wikia.com/api.php?func=getSong&artist=%1&song=%2&fmt=xml") .arg(QString::fromUtf8(QUrl::toPercentEncoding(artistName))) .arg(QString::fromUtf8(QUrl::toPercentEncoding(title))); QObject *reply = The::http()->get(url); connect(reply, SIGNAL(data(QByteArray)), SLOT(parseLyricsSearchResults(QByteArray))); // connect(reply, SIGNAL(error(QNetworkReply*)), SIGNAL(gotLyrics())); } void Track::parseLyricsSearchResults(QByteArray bytes) { QString lyricsText = DataUtils::getXMLElementText(bytes, "lyrics"); if (lyricsText == "Instrumental") { emit gotLyrics(lyricsText); return; } QString lyricsUrl = DataUtils::getXMLElementText(bytes, "url"); if (lyricsUrl.contains("action=edit")) { // Lyrics not found // qDebug() << "Lyrics not available for" << title; readLyricsFromTags(); } else { // Lyrics found, get them QUrl url = QUrl::fromEncoded(lyricsUrl.toUtf8()); QObject *reply = The::http()->get(url); connect(reply, SIGNAL(data(QByteArray)), SLOT(scrapeLyrics(QByteArray))); // connect(reply, SIGNAL(error(QNetworkReply*)), SIGNAL(gotLyrics())); } } void Track::scrapeLyrics(QByteArray bytes) { QString lyrics = QString::fromUtf8(bytes); int pos = lyrics.indexOf( "'lyricbox'" ); int startPos = lyrics.indexOf( ">", pos ) + 1; int endPos = lyrics.indexOf( "", startPos ); int otherDivPos = lyrics.indexOf( "", endPos + 1 ); otherDivPos = lyrics.indexOf( "", pos); // qDebug() << "", pos); // qDebug() << " image/svg+xml musique/data/64x64/0000775000175000017500000000000011715011710013570 5ustar flavioflaviomusique/data/64x64/musique.png0000664000175000017500000001107211715011710015767 0ustar flavioflavio‰PNG  IHDR@@ªiqÞsBIT|dˆ pHYs»»:ìãâtEXtSoftwarewww.inkscape.org›î<·IDATxœÕ[{p\ÕyÿsîÝÝ»zÙ’l¯eëáØÆà”˜È$$LÓ2Ä}¤$àL Å7e’&™2ñ¸%̤í0iJ2yMkèlRÆvl’60LCa ŒÁØ&Ç#Ë^I–¬·´zì½»÷žóõsïîJÚ•…-)É7³³»÷îîù¾ßù}ó³,™Lâ]lÛfØæÍ›Åã?žˆF£æÕW_Ý @PÉd’Ê}×X0-¯@B°Gy$vçw6UWW·pΛ#‘HóÖ­[¯B´!L"b®ëŽ:Žóëd2ù÷¶m$“IUê·Ùï lÛæÁKþ /Ô­[·®%7™¦Ù"„hᜯåœ7 !—Rªñ¬/ÏõŽÅ:†œHûà„¸0äðÔ@FxаiE•ÿ­kÇãÜ;¹mÛ¶Ï?÷Üsƒ¥@X0ŠgñÞ{ï5zè¡UUUÍÑh´Å0ŒfÆØ!Ä!DcÌ""&¥ô{G³,Õ?f¥ãÂ`†w »<50..¦]>áz „àfŒ|e`ˆe‡±´êɯÜ<4Ò×½Æ ;’ɤ» ضÍ~õ«_U¯_¿¾Ù²¬U¦i63ÆZ„!Uë‰ÈPJÁWä§úÇÌŽ!7Ú10Î;†Ñ9èðö¡ŒèM;Üóõ¤™¦ nZðE dZ # )¢P"ÉLLur¦|Ä{Žã_ÿêÚ‰?ª§×׬Ys'€‘©ñ`ÎcÀ‡?üáÅ®ëþ—a7)¥„RJ¥Rý㑎!Çl̈®!‡w »üÂP†Ž»\)c ±˜E<cdÆÁ#5ˆ­°`™1À° À!AŠ A*DS n€1)˜ ÍÀùàÖ[o­Y¹råÁ CÎUß{þLÍÙþqqqÄåcNŽ€iˆÅãÄ#‘j˜õ $,1 ܈AL*‚"‚"@*‚Tú944ïGX`Î4«ŠDF`+›zNXºté¶´“[{÷c¯×9áÖ¢e¨\GU¨eÁ0"À=DPÐF*"0Ey£€1}Q‘ö!Ìd>c€TÄã€(õ^êâåˆmÛÜ4ÍÏ?}¢«rÔñybÇP·r j–,G¼ª†c,x³ÇB# ³Àð¼¡Ó¬*û¦¤(B€†Rª®gرŠJp.µœåÍA´¡Dy:±àupm*å‹,```(|·$ ‡$cL ÌdÏp"ŠHE¦6¯\cL¼f>Êf1ëÓø_ôv‘Š4x©OÏ% €ðŒkƒ¦€Àc9cZ›ð³¬`^ÞLV¬5›>â%T¢JºÀ\ %ŒpÈ Œ(b¦Íi±þ“ŒŸ Ì¥„q_*¶P."ÒjMšÉÕCLšÚY2M¦0¥¬>`Š@D À º¸„ „1e ™öK3£Tþ.À9/éÿÀÜW‚ŒH±Ë›ÖÙ ²P.ä2`9QåAÕ¬‚Ñ)ھ΃e0?ËáiÕ©Î ah  |éˆò²È9ðÜ ¼l,§Îe]"†ÀÊE1ÕÒ—GÎÙìSñ) ŒS†¡ &²(¬pÝ÷=8™ ¸™qä2ðÜq¨l9×çûàŒaIE‹cjU½¥ZêêTs]\µÔÆüDMT !„”R}êûGªÆË¨£( œ‚ñᬤTè>lf¾;73lÎT[j¬µ¨e¥¥šj—¨ÕK*Tóâ˜ßX“QÓŒ1ø¾ï ¦»»ÛûÞ8™ê?wî\_CCC쮻¼F r2Ód\@‡€âLH ÷]@G+>vUß\[CMuËÕªzK6ÕÆdcŒ‘»xñâàÙߤúþ¯½}àÌ™3ß|óÍÔ‰':¤ƒÇ(€±C‡ÝÊ9ÿ4•ö(¦³Àº@ a Ð "ÔUFèß>»Áq]×ëëëê8÷^ÿ‰Smmm}o¿ývûk¯½–r]wÀHðàÁÇîõÉÆÆÆrÌŸ*e3æ\Àˆˆ»@¤k@§¤xàgû÷ï@/ôŒŽð0ÙP @–ë倔r†ú9T"¯Ó¹@¸t' \¥²²rÀqÃÐ†ÎØ¹½ô³úê¼A€99ž„'Ó馄VVψM&“¹+PJÉ&ÞéBDPJ-ˆ Ð1×ÇK08„˜Áá)ø*5'h`X!àBwrð!7žƒëÉðÖÂÄ€ð -- Y¥02!!2¹Pñ²Qùrdx"‡åÕr’3p©‚>Cù0§‹!¶vH3A!ˆT ÌÙ¸DÄ<©“å#Aó_ˆR å»?Áº ¥œSÐŒ10ÏÊ’ãÍÛj0œy2€&Ý›ÏÕRÑ@š• ›ñIW+Ð È_Ÿ;³À¥Ò`À¼3 ?³„pÏ‚ {Aó3P|î;Q—–’ Ì9(èÕ‡þTñRxJµx%¦Á´+|nþ;BÃ4)(Ï„bš.0' \ Т{ Si…tðãÅ @ØžÍÌÍN kòÂØÌ ˜ó–XøBAúŠKaìJ ¡p«ý¥—^fóµy ¨×£ƒ 1Ø(!Êo~ÌRáIbÛ6ûâ¿ÿæ7¿ùѶ¶¶ Bˆ«"‘ÈM³É(3eyIƒa¤ò½|]^ŽØ¶Í÷îÝ»$•Jm¯­­ÝÎ[ÜÙ?&Rý‘´“Ãy²ü¯ç«Ó22o. Ph ]Ƥ㭷ފöôôücuuõöþô¸õÄáó±ýG»c©aFœ 0âPÑêËRxÁ€¢L ÔÌ|°m›=öØcußúÖ·~jš‘›yöTåwŸo3ÀdÕ2È•k JdB•y™ežê€  ,j ÎÖlÛf/¿üòÚM›6ýbp<»ê«?9?|.ÍÕ² àUËÀÁ` ˆ ƒž[xXDN¡c:Ís®€ "s…¦<•f@A±üzišìܹ³òúë¯ê­Ô`ó~r—&ã-7B˜Â+”8|ίtôýÈe`Û6[»vmä©§žúÓ .|À:Ã0ְ丄1€‚²T©ÒZÚ¶Í[[[ÿÁÉæV~yïIk”W3¾âZ¢°ÛÒ] ¯HÝ|UEiÀ ÙlV¡ àï Û¶ÙîÝ»kÛÚÚ¯ÿc,ÑÞ7jïHGG29–vQ`@°$¢BN.”b‘Hä†}oœ «¬f™Îá6rÀ&Î {‹Å'äò‡®‚ßæž>™¨2éÕÎÎ ã—€eY‹wíÚµß'vãßí;Q±ÿèá×®jazàÁ˜.ÿõž\p(¸4£Ü{ï½U†aTŸíŸ`~¤†H„]]¦iR:ÎH"(…|PE­7æe18–VÇÐÕÕ5`%Ü`FlÛßv|øðÿ,]Ñü‘?ùþÑ‹~ËÖ­qó?Iã}ˆ´bcC%ýû]eœ2îm·Ýöd{{û÷œ¾”_–Ð…0¡×‚Å-îïý],3`Üxãسgϳ£´øËûNÝ£YæT6AY‹¡ÌŠI¾À<ÆD/¬ÌEôð·ŸhQ_ýD“ÿÞ™wGï¿ÿþgZ[[“Ž'“É’ÉïJÄ–-[JÞØ²e‹Úµk×èøøxÿ§n¹é£_úÄj£:j°ÖTs:Xl¼–Û‡ØXÄÐ9£Ðhåè+oTßùìzÿ7,Q?ùñßÛ¾}ûã?…®ÆÜrãý®dÆ¿Íí®êŠŠŠ›|ðÁ÷ÜsÏM‘HÄwét¯#Z{'Xµe`yM”êã‚V/©¤\.+Ÿ~úé »wï>züøñ_xz%æ]ÉA¨ù’Kþo0ÁhjjúÈ-·Üòéõëׯ¿öÚkëW­ZU•N§½îîn§··×9yòdßž={;Žs:õp®ÄGç[fýÇÉ Y*¡£q€ºà¶ …»¡7Nà÷ÜðP.럣EQÙ@aQãðÿŒ.–ß›?Oÿ®äÿ¹R¹•V×g£IEND®B`‚musique/data/512x512/0000775000175000017500000000000011715011710013724 5ustar flavioflaviomusique/data/512x512/musique.png0000664000175000017500000017423311715011710016134 0ustar flavioflavio‰PNG  IHDRôxÔúsBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î< IDATxœì½{”$G}çû‹È¬gwO·ºgF¯~xŒ8€xù!|1öÚ^ì»b¹+s,ûг °­{aÄzïÁ6æ²Ø× ö1ˆ…kŒ}Ö^Ìrm–µÁ6ÇËC’FoiÄh4Ó3=šWWÏ£»Þ•qÿ¨Ìª¬ÌˆÈˆ¬ÌªŒªßG§UY™‘‘Y9™ñýÆ/Iî¾ûn@Adº°Ç}‚ rûí·“¤ó¼ûî»YÒyN#‚ HÚh ü0f@(úhA€ ‚ ͈ž·ŸŠ¨‡Ò @€ ‚(¢!òÚຨü‚bÎë¹é§Õ  @A 5¦—‰»(_Ùñ¢DžØLµ@€ 2EŒ¨/uYmŸ,//“/}éKW]wÝuksssÏ£”.BJ„F§Ói2Æêív»î8N­Z­ž{è¡‡Ž¼å-oÙòå}Ø&2SiÐ ‚LYx€_ù•_ÉÝqÇ×^sÍ5ëåry-—Ë­ær¹5BÈšeY+PÐ8/`Œm·Z­gÚíöÓ—.]zð«_ýê·Þõ®w]¾­˜2#€AÄ02&ò¡múЇʷÜrËÚÒÒÒj©TZÏår«–e­QJ×(¥×B(ïcI ì´Z­C—/_þ§G}ô›7ß|óQp ,ú¼¿Þ©x “lÐ ‚dŒŒ ¼]ïó‹_üâÂM7Ý´>??¿Z.—W)¥ë¹\nÖ,ËÚÇ;„^‹V«uÿÉ“'ï~å+_ùOÛÛÛ š‘1è²·0‰F ‚ ÈȘȇþšk®!Ÿÿüç¯|á _¸677·V*•V-ËZsÿV`Oðàq> c@ìN§óÌ™3gþóÛßþö¯~ë[ßjBWü= 3Û,€A$2&ðþu½Ï[n¹Åzÿûß¿|å•W®ÏÍÍ­Z–µ–Ïç×(¥«”ÒUBH¨=>ŽXÊEŸ·­Óésú Ø4à7FGìqŸ‚ H&t¶{ñ‹_l}êSŸºêÀ+³³³+ù|~9—Ë­PJWlÛ^ˆ¶xÆ¢õcÀw !À#—j-rìü®u|«JÏ^ªSJÊçŠrŽÍ—sl¡dÃ3ga&ï¸ÇÆ£”r/¢ÿü<±÷ÖB˜·\.—_ññü ðŽÏ|æ3[þ÷÷¢Ôý$ iF²F;†ÔâÉ—¿üåÅ—¼ä%+óóóËî¶+¹\n™Rºâö¨ïUª°?€'¶À#Œ1rörnlÕÈñ­]kc«J7ÎïZ'·ëäÄVÕºTo*o¾”g¯X¿¢ý3?|MóæíoróÌ€—Fd DMîûo¸á†»¹¹Ù€¶ûçE‚ý m @€ ÈH0¡ÿ{¿÷{3?õS?µ²°°°R*•VŠÅⲞ_µ,ëZBHٟɤˆ|BmðײÝîSëtc«J7*Uºá ýÉí=¹U£µV;ÑvÿÙBŽýÄ‹¯lýì_Ó|õuW´)¥,® „°Ó§Oiyyù÷ o:?nÇ@“LA!ãíÈ­·Þš{Ï{Þsíµ×^»277·lÛöª[ƒ_µ,k™r…?øP> [“h´Údc«fmlWÉñó]?±µkm^¨“ÍíªÕîŒG ÷ï)8ÿæ5ë_|Íj³œ·¿›Q4àø›nºéoaÐø£F›ì€ ˆ2)ˆ|¢azoúÚ¼à+sss+…BaŶíe˲VmÛ^€«ˆ¯!~RÚáìEO|mãp¹Ö¢Ç½Züù*ݨìZ•]z²R£ç.5¨£pÍFÍÙK úñ¿;\úëûOäÿŸ·½¬úCËómÇqz'ê8è^B{ÙË^öŸýìg¼ãï8ìËÞÿƒ;пÿ²w!"À‚ =ÆX‹WÓîsŸ»âõ¯ýòŠ;\nÙ²¬UJéŠeY×@ÞŸI–jñãxŸèAPä·.7èñJ•?ï…êw­Û5rb«j]¨ªµÇg•œMáÿxÓ k·½þ@ƒâ8Ž3°=*P«ÕžÜ¿ÿ/Õëu¿ÿ€AQŒ È”‘õZ¼7\nyyy¥T*­¸µ÷Uw<ü !dÖŸ_UjðÁ}’N?®iq=ðG9!Ðé0rúR?_¥Ç+Ý0ý‰­*=Q©Ò“•:Ým¶Œy­¶ûïO•î}¦bÿß·ÜX](çšxÑÿHR©ô¢o|ã?ý†7¼ákî.¼é ôG32#2aŒ¸³]¬0ýç>÷¹ý\™››[uÃôžÐ/B®ôç•¥ü¨Î‡‡_àyµøV»CNTªÖÆVÛÚµNTº=ë7/ÔÈÉíšÕj;‚œ§‡ý{ Îþâ+vo\žoû Fü‘€f³ùÜË_þò·>ýôÓUh¹ÁÎÆE0€ †‘±!sÒÞôKKK+…Ba­P(x³Ú­¸³Ú ¼e.Kµøq¼_ÜøO!ÕF›œ¨Ôèñ-¯&¿cmœ¯Ò“ÛUzæRƒvœLëÍØ9{©Aùîûfÿßw¼zçÅ×î ™Çq/Ïç¯þ«¿ú«ýÒ—¾ô‹~O€7/@?2`D#’A²¦Ýë^gô£½úÀ+Åbq¥P(¬Ú¶½J)]¶m{…²èÏ Kµø,<@8LÏ#àÔö.ݨÔè‰íÝܮѓ[»Ö© u²y¡J+;MÌÑçÊ=翼ûµ;{gòÞ,¼H@§Ó¹xðàÁ¹±±Q€& F¼Ñ¡—e9 €Š"?ÖÎvoxÃVVs¹ÜJ¡PXñ:Û_#›¥ÞôYx-žÒ®nw:Œœß­Ó“•9Q©Ñ•ªµ¹]£'·wé©í=‹µxÌ.³ àØE Œ8m NÛýlé´bç~æRƒþêŸ*ÿÙ;^½cQÆ{K`(`YÖüW¾ò•õŠW¼âÏÿ à쀙`AR$ášü°azÿ2ñÏM_.—WÝ6x/L/íl§JZmë£yž¸ðÃôŒ1r¹Ö"•ní}£R¥›•*=Y©Z§.ÖÈ©í:m´;ÛáN BYprE`vÀî~:–ûÈ/m\Z;Võ|l3ðÎ~ý=o|^\¡`$`ggçéÅÅÅÿºï/82À˜(F$¬ÍGµ±‹ò‰êl·R(<‘_v禿*«sÓò]ò"è†é}mðÐhuÈ‰íªµY©‘nˆþävnn×É©íªu©>¹=굡68VX®Ìꊼã.3»½¿§0NaÚ ë@ëÁ¾°´µ£•Çþç±Â[_µÜÜ?Wè ¶û Ffgg_xÛm·]õ…/|át£6ôkýúQ#@€ ŠŒYäU;Û-BVU:۹ߥ'š»€\à)¥½¶xOàÛ9}±NOn×ɉJÕ:Y©ÑSÛUzb»ûy~§A38÷ÍØ`V®+è=a÷ýY¹œ§¸Í+÷€}ñØ—O+ïYo·Éïÿ§Kû×/Ýõ& ™oý[Þò–á _8tMu—ý£Œh@€ >F òþe‘'Ÿþô§÷¼éMoZ_XXX/ r¹ÜJéš;dNÚÙ.éZü$}Þþé—\åŸÓÀø›fgg¡+úÔ÷éýùÅ?ó @&¡¥ÈÃ]wÝU~ÛÛÞ¶vÕUW­çóù…Baݲ¬uJé˲–¼M ÓJຓޜºP£nOzÚ Õ»/¡1}úÚT ´Û¹.W°KnȾàuƒAÝv™fÂr%hí}!äÏ>*'ýÐÆ¶ýÓ/¹ª©’w©Tš‡®ðÅßû3¦ 21H_·Æ[äo»í¶Â{ßûÞÕ}ûö­—J¥ër¹ÜºeYë¶m¯À•þ0´?³$E>K%îâÞôg/×éf¥N6\߬Té‰í*ÝÜÎîKhƵ{¹ÁÚÏç×)¥ë–e­‚ûîxD>Mà×âkÍ9é¶½Ÿ¨ÔÜõUëÔÅ:9¹UÃÞô\;´'ðÝP=Íy5ú®¸>ØÓ^E…iV©æ¦š¦èÈkþþfÛ¶ 0(üÞAü¦À#Ó— ’Iâ/ ç÷¶{î¹gÿêêêR©t ŸÏ°mû€Û&¿F)z;ë¼uΑ×x^-¾ÓéSjÖÉízV»Jn^¨“Íí]º…/ŸáBìÐ\©+ꮸ“| ˆ]šÏ¬µ»ÿãu¼!2 Òo"Ÿ‰F¹ @ýY–•‡¾àEEÑÇÌýC @2E„ð ·Ür‹ýÇüǯ™™™¹Ù¶íWRJŸO)óòÄÎäš¼ŽÀðkñv›ôÄvÍÕ®Û&¿Y©Ñ“ªôÌÅmEÔ~¦B- ¹"Ð| ˆ+ð4_’/tÅžØßo‘*³ÆZX!Ïvp«4- †Ì½þQ44:œúúðÛÿ ’â? üŸÿüçßV.—®î/Ö$<­öøajñŒ1ÒhµÉÉ uzr«J7*Uzj»FOlU­Í 5²¹]§; œ›>!`åŠ@óÅnM>ï-wkòÔ7dnÐ?råýÙŠ7iŠòû ¤j@­Ù!îs%¼"^3€Û€/ü¼JKfA€Œ…Z?}î¹ç^ºoß¾ÿD)}‘_AÛ}l#‘÷×âÁ½­6#'¶wé±ó»ôøV•nœÛµŽoUé³[»ôì¥:ÎMÏÚ° ]Q·ò% …"P»´Pj …åýíò„Äëx§£¯IvÈK´sŸé&AÑ4ÛêQ0Û¶½&€`ß#£: @ÆLT­ÿK_úÒì/üÂ/ü»B¡ðKà†ÝTE؈€Nº!Bõ^3é8›Û»ôØù*=¶U¥ÇÎíXn­þôÅ:ö¨@íXníÝ*”Ü} ¬BÉ Ów XÞ/ä™#äÏÝ%æïHÔ,då>êϯ¯@TÅÅÿ=“— 26"ÄŸž;w‹‹¿O¹ ,ÆQßEë⤈'òîìa½ã8°Y©Òãç«ôØÖ.=~¾[“?¹]#›ÛU _BÓ‡ V¾[{· %°ó¥®À»bO¬Áâ+$î ’ã“)в¸-<œÊë2Wfe(=Ulhwˆã8à· @¥ó_æ#h±  äòåË¿<33ó¡;Ýf°÷>w™÷]u›G\‘ð·Ï8u¡JoU‰'ðÇÏíZÛUrr»fµ4“ŽeçÁ*vÅÝv…Þ|+Ww´ó–#†½ µ.B£ó¬UXuŽN9Ê‘FúÅN€Ýg’cýçŸ÷6@w=]\\´+•JäM™ 2rdâÿ¡}(÷|àÃù|þP~Ýšÿ°"ïåúR?_#ÇÎïZzüü޵±]#'·j´ÑO-:MËêŠ{¡Üx»PÛúÁ0}¦R}×P£D7©ãÅù«¦‰Šd)àI@(‹6ݵV‹”r}ÃÀ{%°·nee¥P©TjÀ7GêÜS 2NÄÿ}ï{_þƒüàçlÛþQ¾ÈëÖþu¦²å‰üùËuzl«FŽy¾Û&'ÁéBعBWà‹%° %Èå»ânK`ÙâÐø;ÜñkÞjõÛþ¹@¤òÆm?+žæ´±žIÔ¥4i( #Ðl;à72öíÛço,Ë„åBÖÞ€)¾Ú(ìÿáø?Å_×ÈßMùíj“;W¥Ç·vé³nïzwþzZm¢È[v®+ì…®ÀÛ…ØÅ2ä %°òÞ{Q<úÃäx¡ôÐrÌšµònŠ•ú± ±{ð$Í‚r^Ùq éAIÿ½j-æKƒëxQ€½{÷zCe5ÿÌ—h‘!ÿwåóùÿ ,ôQÂ}^û‹Õyöü.ÝØªÒcn»üÆV•œØªZ—§|œ|øEûöíû8PUñ÷ ÿÅj‹~ùþ…ÿvh3wäÌŽZÞB- r…rWä ÝZ¼'ò¹b hﲬÿi;|໎x’~‡>•f€4ûø{È‚b›AÄîɵ¡G4ê äCŠ2«^ª(Î 2¼?,g4HêpBÿèßÿýßï}Þóžw7!d†'ö¢Z¿;ÜŽ~ëɳ¹ÿø•GKÓòÂËÎA¾4¹Ò ŠeÈ•Ê/Î@¾Xj帥ô0íäƒ3àE„«“®øK…\/+%MWÈ,-!äæ«a6†8Êt :p»ãM¯™vvv¶ûJGÁÕOn¼ @REÐîOÖ××éþè~šRº¬"þþZÿN½i}ì¿?Uü«ïŸÌò·Œ‚®È—!Wœ‚+ðÞ2µr,Æõ†ý5k^mXI&"k°#lH0רv÷QŸO"ÇJ¸ï€‰6Bu2 zKð70ÆH©Tâ5Që÷ƒ5ȃ>ø¯r¹ÜM*ýüâÿØÉ‹ö¿ûˇËÇÏïî·lrÅ2äÝš|¾ÔyËîzn!ë §÷¿ÊKx^4„ŠIdSn.K‚Ü'%Üw?NÂD†Ä©4èœ×0'¡r,“œ€òÕP©T ¾@éL cW 2 BÿwÜqG~Ïž=¿LÄ‹xâÏ£ß=²eÿÚŸš1aü=µlÈË/u>_œ|© …â X¹èÀÅ ÈóWr…<ú+÷X¢(€PÂ7t4Z#ƒ8F¤¿Z¿ æï/F¯²&)”ÿÝcžBæÔL„rõr¥T*ñæF;3$583þ ùÈGÞ ýËzù3Æè3gw­;¿ôP¦ÄßëxW(•!犼·œË¢3P@h†4ܦ€$¢Â#ÆH§Õ¤¡‡|¿øç$½Žš¤Ο˜ÂüþÝa€Q¯ö( ÑüˆIQÛÿwÞYš››{êD?„RÙmÒwýéý3»ÍÑ×'Ô‚|±Ôm‹/• _œí…íí¼Û è;«´N0db˜åBѪa‘ø Ó —(ñänJØp$ÎO2<“݆b@Mc@¡PHÆá4È(èÕþó7óVBÈ•þž¶²NV›¾û‹‡Ê§.ÔSëéO(u‡Î•Ýx^ïúÈÜ÷Æ÷~F@äG þÁÃi™Ñ¾œ}´ëìf-›üç˜x?€!ÓE¼IÒá†&gV2ˆj@Ä+ýóù|°À@E'ð=³ @Òdà¡øÈG>2;;;û.^èßû0ÐéþÎß>YzäÄöÐ÷iw¶»¢Û«¾Üëißý^$ü¤r]žø«<ấ@TaÜKž"(0P+÷Õâ 﫦KSyÆÎ×ܞ̎FËx|#õVG9K· À(±çIQÛÿ»ßýî[ !KŒ±Èi} !äÁãÛö1Ô¯8;…™yÈûÆÊÛÅPYM>Ç ÄZPÛwL··.¯¤¯¾=5u"¾hH‚È&ÁoЋu¨ŸL–^Ž£Óü1(÷Ðj–K2Yc€I‹`HŒ–Ëå[T_ïK!ŸúÆŠ ¡ì]}!Ì_µ:‰¨GP¾™p¿Êö‰+ü¡cDž lï™R¼£ø¸Ù„3RÔ‡E+2¸•Ÿ6ñ8~¨ÿÅ9frÿ‘£ØÐh©¿ ×íå+Š@€$ЍöÿýïÕ²¬ç«Ôþ)¥ðÀ±Š}ÏÑ-åû3W,ÃÕ/|ä˳\èQ¯ýÒ«ŠR¾Ï¨š€`­>¸(?Ø`z±('Ý Nîÿ=:ýtެeh"ÒDEQ›ғTýœ“÷H˜j'@ÉD@AlÛEDß3ÉTL¡ŠŒœPíÿÀ?!«ñû†ü ¨Qû·ì\}ðå+Í Ó(ÕÖ£¶+Dÿ@æþªïØþn:Â]”%Sƒ î#ºZQ–¡Nh¸,”«´??•\þ:Û8P Pc§ €üÍ$h4é= ³³³7ˆÃþÞwJ)‚ø3Ñ/!Ò L@èx‚ÃÇAT•‰\&vïe IDATœõCžÄÐf Úü¸ÉâéeñœÄ¨mGcªJBB“ Í€4H’øo~pÝu×íà/À© uÚTœŽsf¾oTDJèÚ¿Žø[5EÒË6 ˆwä©Å[“,EµcBC<‘h‚d‡ÄóÏ®^ÅCq*àŽ#ú7˜¥4`ÌD€$Í€ ¸âŠ+záY¯ZBllU•îÇ\q¬¼êHÁpQ?Lí_Gü“bÀÈŽÍ9®,’ }*ë4óŠ—…^GÀèÜÆˆÖÁÓ9Óä D¶`Š¿@Ö 0XnI"Që2$ zθX,®7òLcŒ?¿«þÏËês%«ý|縇„Å?tü& ”‡‚'Õ ÎUw«JÅ݆]é®ÃDi’&ÎFµOFQí辫D¤F]4ÈÐp:z|>ϨèýO6*ª€²ïœÅX",¸§V©MEýE毅àSDæÃ5HòTÉB7“RÚxÂYŠ?<¦³ÿèõ'óЧÞ œ%¥Ôßœe#@€$ÍÀA)…ýƒë7+55P(…¦rB¡ô’£…B½æ­*îÁôÒs“™Ý(€*ÃVuS "1™!³'† ¢Ø Ñ Ð5¼uW @R…RŠNÕår£­”.W*G'ê]?g— àêŠ?w¥Bõ_f"kÖ¢5oÁÏWYŽ]ÜÅ4Ê5xbKo­j¼þñGýÛEfc”¼¹¨F:êÀ?`ïHûg4HRˆBa%y@€îuÅ–-yQ` Í~Õ-x•Ä_'Ư2&ÉEÔÙo2t$<^©9|°{X#£ÅPÛ4*ý0N§†DÑDüå¥Tfßuƒ~c ’ºMÒ×úúªFËQʸûìÁp5WºµÐ…ž|A¾ÒR"°A]ªÅ;ŬtId´Â—0‘h Ugåß0B´£! œÆ.Š'­3p`€±Q4H’£½€‡( à8i´Ô"Äm~KæI#‰>½ÜZà«Ì4p̓$$%LBs!!3•I#J Óþ=YT…,žS¨ì¨Õ?‚óˆ/gÔö±‚I˲‚ïÍ†à €µVG)Ïð\nªX›BÉ4kÿ¼c„EŸ=L%,  ÂyˆÓ)6±jäN¤]ÛM””Ën…ÈGµù©!½Q½#> ’4QÇqê¼Dü¹ÔÀ˜Àªóøiî+âÀF¾ðGåLKƒ™éþLå(À¨CÄc*.ò$yLÆk²Ž¢~Å„›cx€à¾Â¼$æG$ z7x§Ó¹¤ºÓlAi è´Å£ôBÖáÅZõÀ*n2áçåÈ©£ L€N@õèñ6öÓHb±Ö¨>1éfÒ=¿QiGôq2£b‘¨©æë€E£â<ìc ’*Nç²jÚ¹R^é tÚMI-;dy ­¾PüÅùD—â@½r•Â¥TtîªûF•o­â?”ú¿§Æ¿¼1E²FÄ&VFñ’tùÂ$Øà{s©ÿñ5Jôý @RÅqåÀž¢­d:í–†d)lŠxtukÓ2ñ'Ð-H èðÖÉDU©f*ŠD¤•®SÙ˜Tñ§]Hú°¢Ì"ó7²Ø—²ÑŠQåfHFJ¥RT3@æA€¤Òjµ"#ž«ž/ÙJ;íÖpgÆAþ—­вHü=áW©jñß(GˆôëÐÄÍ/µšgâцxû‡ï‚ôÇtÀ™G1  3`>Ÿ—MdÄ?$Ud}üc0[Ì©E:œ>ÕªEO(¥CAüµ‹ƒ!L€( ÿ½¢£EC¸I³6Ÿ6âC¥Ü”å}µS ÕQï833ã€A#`Œ @€¤J½^WîpE9¯4×i7¹ëc=m‰—ýñ¦u ˆÎL5  ˜ÝP»$)º‰G 4£"i”æc?fæ%*!T#Q3—‹EO?£ë ’½‡ Ùlª÷(©õð7h=mª‰„’_ çˆÄa”ü§ú­PÎVi_;¢³V¶Ý¨²4’8rèßÙGu2 ÕW„ €‘& ’*FCÙÌ+Žà6ôÐöDO®j[*×/v‰~”àå§îgâ7h1Âÿ°Ù w—d‡ø„lþžÔPÀ`$‹øú )ð)[;hT¹|ù²’ „°=eý@<ô»IqÓ b©r‘U;V´© ¡ÅP)£ò—œX2á~MBÍúGMÛ Œ£9 +É”‚%ŒÎl€¥R)ø>ã. $U:òêú¥œÚD@:hD³•×ÉìŸÏ´¸«€Iƒ!¤<}´žÖÈ0·¸öûÀ# l.Tó»oœ¼“Hœb(^ÌQÎfäż«R‰ öëÛ‚’‹× Ëå¼€ÿ F]f4HªèEÔ'áà=iúµWíÝé":i“ñ²F­\ñ4t!Ž$t>âœã`N³ÇdÑѨºär9Þ<F+Q“m¤†T„¢ÛËeµ5ñ×ï 6Ã5Ø'i’ÿÇÔËqBï˜&iEô¹šòk˜ê0ÀxóðÏÌ_4HÚ(=„å>ÃŒÏO"­Ö¾\7¿@T¸:ùêzÄæ1q‰:Ŧ…Lr+‹9¨ýºŽ£…ôFøûðâÌ^Z4ÈÔ«m7b\ ùñš2‚)ÅuÂÉ¡ÈÆ • O©™Z!³À!:…„‘¹úÌ‚I>ê™ÆÚ”ðáu4° ؈ù‡‹V$uñ4Û ùŽ?4?>„ç1Ä â“'Ø\é~7úB£@ÌFåñSϘíäš¶àKT‹‘§V;1Åué7‘hý’!0º ŽÄˆ_gÄIF3”çâf4Hfˆ;@œ€¹8…¦hÅicUpÏ"24¿Þ7öÒ*ŽK(*¢ÎðGQË!BRÇqÃÚüƒ @REµ `l£tP=CNíŸp·É÷•Yy_µCÅ%V߉¬ǰ!H4F6 @2Sž?hÈçLܼyúôÉÄ_çØ‘Û$éô£æñ4vÑè= Fl°FÁ°ÿÆ‘yfµ²…Rª”1F|}TZyßÇ$mFtÓgäÙ•¬A&eÞ®ªQ½ö|ÍŽ &ù>ãb„çšÆ¡LºÔèK‡É sp ý”%Ò.Á>zÜmªõŠÀFó ­Ò¼°ã­cUúzb_]üM•„`‰eÜUA€¤J*ÃUŽ;ŽƒŠÎ@³³Z¬¸áø0—dN+£?.ibJdìûÏ‚1¤·!kÆi4òû èÿðD" î‘U’k—5Ú YÇkÛ÷µñKÓ 6Ó! ’6F<ê„;6E¯ómR-)D†$¢5@õT”H44Ÿ"¦´‰ízeåj”¨N3Ï{EÑ #GäœÕçHçy‹ê§~Ty‡=· ñý.|øQ•£¦Ü/*"'ªMÊÆ˜4ÈØ½_[yÏäž©´ŸNQþ:Q~s4º-e¨ãŽø¤5G$߉ äáÇrš @REk&À îm›¦\ ¬œçÄÕ¢³ra'•˨¸ý/‚É Êódü‘&äž`ä?þ>e‚~ 2øæ0öÖD€¤ ¥“w‹%ù´Ë:Uª7ê#™b"“W:#™¢Ýn+ßc&Ž’DqB›¸‘¥”Œ8ó<Œ‹ÌŸ "k°Œ˜ûŸ·œyÐ 2F•x’:ó eò1A€¤F'ÀÏ"A”NÓß‚ Z0¤ÝÒiûLRAG¥Ça`píÀ÷ Èh>«²µ2AÐ4¤  ÝÒªi×Z5 ­@»¤Ýè¥rJ‹Ð¹â0»ô› |$UÒxPÖ_de*üÛ¥åò¢ÚZ˜‹ÓhVÚ5 Í:@« ´Uhט¹;­U€Ö/@{~:{®Á g#Çÿ{ @ÒDùaHb–À4jóÓ!@ñŸ0 ]htkò¬]hºµz§=|þÌûâqpf÷#¹áóKä_4Æ`\QI•¨‰€_ ¤š©Æ ø|4b>xÝc2Ár¼ó@¦Æ€µëͰV X³ÚûV  ÝÉñiu :3W¥¬ Á=ÞÆ4  @!è•*J?¬I@Óј k7»"߬kÖ€µÜÏv]Ã=§Ý=?u`@€¤Šã8Ê#Mœ¬ÈSJ¡‚`¶¼ï*y “ ë´Áñ„½÷W§Up:ã>=!¤ÓˆNd‘ž1Bá=†™¯íó@€ . ØÈ;ŠÝ_¡JôGàДèâ€Ó¬Ó¬‚Ó¬ktž5«ÀÚ“9¼Î#þfIØ»I™×îïùeÐ i£ÑP=ÓqtÎ8fÄ 0 nš^ÿLë•ã’Üu· £Æi7 Ó¬‚Óp…Þ[n7ƲGøè<›¾w d"Ñ2é%Ž…²6dIC²t.#„uZ®ÀW¡Ó¨Ópkö­° ‡ì5$!?ƾÒ ’*:ó ßë=¹g-”[`…üh[eQ&ø*¹8Q×MûºN©˜‹`ŽžÈWûË͆짔$†-g4H’Œæ¡Hà(IÚéHN3€k ¸R®½iérùê™’,8f½+î*´Uè4«Ð©WÁiÕÇ}r#§œ·ÙÚb‰-ÍœoÿàüÔèDŒ27°1æ`jþa‘±‘J€Q×,¨Ì¨_³" š&^âñ ÙYÒi7¡]ïÖâÛš[£ß…N£Laö»I¶,/”œ•¥²³¾T‚µ¥gmoÙ9°wÆÙ;›g›Û5ú/>1=€‡¨ ÓéÈ:ÿa¦úIÄqœÈÁ}À4³öv`DóiÓ ç«ç#Ü(ˆh'ý]&æ8ÐnT]¡ß…VÝ Ý×À™Ð—ØÈØ·§ÀV—JÎúR™­-Î8k{K캥çÚŲC½[”±^wư¬ºq$QÐ ©¢£ìé:,H™C„¹P=ƒà•]Î¥b²¡´ò4LøEõ1ˆÈt𜴛5h×kÐjìB§^í}vZ“1&]‡ÙBŽ­í-;kK%¶vE™­í-;ëûfœÕÅ+ç­ž°ûE€ 7hÑWümß0@cA€¤ ¥É¿q:Ö zŠ3ð©ÍÐÍe`x7_þ•š¢¿Ö¨nL™„ŽÝi5 Õ¨B«¾ ízµW›o7ª.Xar…åÅ’³¶XvÖ–Êlmo‰­ïqÖ÷–ÅrÞ'ìÝñëÞ²ÿ:MÛ5Æš4ÈD‘d8?j$À0ç$ÊŠ§÷IÙÜ|2 N§Óø¦'ônßé$ðƒ `ÿž"[[,9kKe¶¾TvÖ÷Î8ëK%vÍ%Ç ¨yµyžÈó¾#ÃÁë y€1 @RE¥€ ŸôHuWýõŠèˆÞn‚ÌÆ/ž@9ЮנéÖâ[õ]hÕv¡Uß…Nk/¬É{Šy¶¶·+ò«K%¶¾Ô­É¯-Í8{Pä½eÿgpÉ Á™3 $30'Ù±µ*¡öø½ûU›Û¼2[¥•äθËQ­ûjùÅÙÐnÔ¡éŠ{³^ë }³–Ýa)‘·)¬,–œõ¥gu©ÄÖ–Ê쀲Ÿ/å0do(Š“$UD‡šHà ƒBPGãGä¸{àãDDÐ~¡Eͱn²sJ€N»ÍZšõ¾Ø×ºbïLÙìw”¸j¾à¬-•ÙÊb·&`¶¯ì\½§À0do„ª ;vDi(wiGÀˆ¿8[ œ^d"YÅ‹)]À:ШW¡YÛõýU¡YÛÎÎ~·PÎw{Ù/vkòë{»cæ×ËNÎÂý4ÂÿA4h´ÉC¡^Y—È{DG@Y¥]-¿¾ I^B† 6xí Z:4k»ÐpÿZÞgsüï˜5EÛ‚Õ¥’³¶TvV»"¿º·Ä,Í8{J6†ì§œ`èßÅä=ÊF˜4ÈȆÿãž*êŸp]N}^ñPý­ò_«~-DíÿÞr»Ýì |u×ûhԪЪU§.doQWÍu_绵½eçº}3ξÙó¬0d?$0hÙá÷@€¤Šæ‰ £õ‘iUÇði…Tº'ŠWñ† :Ž+ì»P¯íB³Ú¯ÕOcÈ~i¦²_]*³µÅ2[ÛWîvÆ[,96…ì'wbAÍ™rÐ c#X¥QÜÆ5þ†Q3€h4@è¸B qbФf½õÚ4<¯îB½¶­Æô½°¦”³ÙÚR‰­.•µÅ2;°·ì¬í뎙Ÿ)ôCöÓÒ./ë™^¯×çΫœ:uj{ww·qóÍ7¿ÌÛ6†@íßY³¾B8EÐ ©¢3 zYœÐó•p³€Ú8ÀhÚ:ÔëUhT»B_¯ºµúz˜3]/¬±(å+JÎÊbÙYß[‚õEWä÷–}³­vjÚåEBßét:•JeûÌ™3•“'On9r¤òä“OnÝwß}•Çïx»ß|óÍ{ýÀgŒ.$Ð iAÔ'Š[øÄ ¨×Pu²i °¢ÓnC³Ö÷FmêÕ7d_Êý¾Ù[ÝWrÖˬûVºn绕ŒC‡Òy÷Ú¤ŒÑæýÆ\¸páÒÙ³g+›››•ãÇo>|øüƒ>¸õýïÿb»Ýî@÷Nëç€Áê/±,«å^ÇÛ“·™lÐ i3¨’fØR;V{¾Ê~’ô!Ñg0ð>‘v»»+½}Wðw ÕœÎÖ¬.»ß ݳQ/¬a œÁÚ|ä?•®ˆÛ0ðŽ_«ÕjnȾ²±±±uäÈ‘Ê#<²õ½ï}ok{{»}a÷þÎ2Çär¹¦ÿ¸(ú~ñ_…{ÃÈáh±’XáPâ¸Ñ}•~üƒø¾0Æ8wêœ=~ÚST£ÏY–¯(:+Ke¶¶Ô}Y×>¿8“狼ï3¸œ&£þàñÚívûüùóÛ§OŸÞ:qâÄö³Ï>»õØcmÝsÏ=[ÇŽ«Â   м_èƒâLç—±m»áÍ£ê8ƒÍqƵÿ @RFo€ÞзDzúÇìå/‹4›uøÁ¡ïB«QSµÿF’ØzîÄDˆÿžbŽ­.–Øš¦ï΀WvÖ–ÊNÑîvîÌJm^Dš‚ïÏ{ww·zîÜ9¯]¾òƒü òÈ#l}ç;ßÙªV«Þ+ E5xÑ2O܃ëüß;œ4µ Åb±¼.A0q(Þ‘½‡|† b" #@€¤ Ñ Ú¿=SÐê¨Ð@Ô ÃÛ‡1•ç6"Ógï…5k‹3ÎÊR¼WÏ®ïq|/¬É²ÈûICð½<[­VëܹsÛ§OŸ®lllTŽ=ºõè£Vî½÷Þó'Ož¬ƒ¸/y•Ú¼ÑB/Z6V©TªEl¢Å4¯}Ð E¬ÀÀ°Íç»ÓèfJ\9_`k‹åÞ[éÖ÷v'ƹz^í…5Yy?I >!„u:váÂ… §OŸÞ>yòäÖ±cÇ*O>ùdåþûïßzä‘G.¸/«Å'Q›kz?,°òùü@'@4=x•A3€Û|côµB€¤ cL9 ^ð¨Õîeíô:È:¿;í6Œ‹ù’ûÂW仟3ÎÚRÙÉOÀ k’{B»|ùò®×.¿±±Q9|øpåСC[÷ßÿvµZí@tÇ;]qVÌyûF…þýµêþåfffš”R¢‹ý†ÆˆZ¿4HÒ‚Ôˆ¡»üJ†A´aø“Q¢`Sp;ß9+‹%Xß[vÖöÎ8ë‹eæa©"œÐ7†²?qâDåé§Ÿ®<þøã[ßûÞ÷*gÏžmÀàp9­YÖ«^EÔ㈹ÈÈ„Ÿ·Î¿ìáœR©Ô$„0Jé@Ovüé ’´K}©èê÷PM'Œ$¤«%på|‘­/•œÕÅþpº{gœýsj/¬ÉºÈ{ +öŽãt*•Ê·]~ûÙgŸ­<õÔS[÷ßÿÖO<± áqT¨^5D¯*âªa}ÑwÑùˆÎÙ[öãÕþ;à‹Åé—ÚCí6Síìš%ã $Ut:ÃÐáþˆb Õö½ÖøD¾ûòšÉ|aÍbÏ.^¼¸ã›ýnûðáÃ[=ôÐÖ÷¿ÿý ÍfSUäã„èÇY›ýÞ÷àŸG¯óŸ÷½X, ¯€/zb¬@€Œ÷áJFÌâm "št£ŠüÈÁ½O¼í% óCöAâ }½^¯Ÿ={vû¹çž«lllTŽ9Ryøá‡+÷Þ{o¥R©4!\Ãå…êÔV·£jm¾£pì¨ð½ì·ò¾ €ˆõ­£ù|¾ãû72V¼2‚ÑCÑ iA`à]ªï <ÅÖŒ06ڧ᪻i"ï¡+öN§}îÜ9¯—}åèÑ£•'žx¢rß}÷m=óÌ3»n²¨¯jíY$ÈQµxQçu¼ëx?Sp®Aƒþ~ÑçÕêEë °ÎƒúÖQp(¥½4”RÖét²ó\Ž›)»hÌ ¬$‚>?Ça» êå`¦ŒG£#ôŒ1vñâÅKgΜÙÞÜÜÜ>zôèÖáÇ·:T9tèÐ…v»-?ÝP=oÝ0µù¨6z‘ðG57ø—y¿[Eäƒë³Í¿Lë=#àäóùI½Mǯ/€16 ’&Dg`,|E]°ÔSïÝ/nC˜TžZ­ÖΞ=»}êÔ©ÊñãÇ+î k¶ï¹çžÊ¥K—‚/¬Õ~e"*[Uq×1QÂ/:ïàoãà¤U©Åójô¼ôÁmþð¿ÿœ#™Ö:?Ú™€Ws£@2S~žHëæªÕv^:Î:iv›¡o·Û­sçÎ]8uꔲß~ì±Ç¶î½÷Þʉ'j]ƒW©Ù‹ÚÌeµô´ÛèƒÛE¿Sö’u XÜ.[ÇÃÛî=$²¨’ ‘#Š4Hª¤5 @UãuÜ@¬(€D ½ã8l{{ûâ™3g¶Oœ8±íÍ~wèСÊ#¶ÈdGè35GÆÐ‰WrF7)$0Æ4ÕäSó‰ŒZ¼@¡‹_ £´;>÷Üsß÷¾÷‚¾Ðÿüf@VWï$kõ¢ãó"2q÷Öƒà»LäƒËþí¼Ïà2Skó`ôÍr™@ñ_‡"H‚ÈF$3ÖXµú®&ÿ¼ý¹Q€Ù…²gŒøgu,r×{bÚ–üy† htÄ]§¾è»¨ÖÎk—¦6ÏxYÍ}޽ç IDATDFš*4HšôåWAìG1®0"ø"ë À[D@Ô»Ø]çÿ4ÝOï/hüF nížgxÑ¡‡ÀzÞ÷¨Ú|”ë ½ôŽC¡Ÿ>0â•U Ãg ~4HªˆÂC×þ9µsÿpÀÞz‰ Ñãú€ÀJ¦gŒ‡'ê-h@×4Ýež ð†õÉú¨¶Ñ‹:àÉjò¢xQë‚Ëà[Çû .óÀÚ|¢Ú0­³zh ÷“õüÏô5D€¤…v‡'õta׉„kýᦀaÕ„Wè"^í¿u÷SdDͪEË|ÑOª6µŽÖæc0=ÕþùƒQ<™ à¬7îZ¢@Ò@Þ‡ÎW³H½'Etjõœy& i" @Ðøû¨„ﳬÉûE;àÎôˆ~òp Ñ× ’6êséhtð ¯J3€ì,dQ€àÐ^VišBOükî§g üž…íujó¢Ð=p¶‹¶‰@‘OœHŒÎøßk”5x' SFW©cETL@zM€×Àßàu € àç;†ì‘©o÷çýxQ3×XŒ¹†hTÑyz‰Ï}LëÕR(E"òb½ÿ¥‚'èþ‘þþŽþQÁš>H¾—Á·Ž÷\æµyÄtnH×,ù£þïF€I´jñ›t£ÑÃý9'o¯~Ï´¡/ü^ÀÛΫùcÈ~ʙƉ€TpÌ™½žh4!:â?êy¤Û8 UšRÄoü3Š& >¼Ïà2ïøBPè‘)ÅXñ@€$˘†¾$D f@–~ô&À¶šØûô§÷çu.(ò“AÔÜ“Ù@íÖÕ™Ì §FT^äv²QÏ40îž× Sfå(@ÔÖ”L@Ä$Á°>oBÞP¿`\Pä$LÄ3i\Û¿dˆè´7T »b`ÒßÑEx÷dCûüâ*¸Pè§œ@ ¥êcy×Ѩk‹I­QÊÔêèþ΀:p4_ÜÀ÷eLŠÙ¹Åñà ·MfØßG O€ã8ÆGR{W;2µÄºñÓ˜IŸqz®ißñ'g¾ÿò”eL“¾ÄòFªôæG$a|†ÉèɀРi£ü`4ZBG­™cPÞÃ˼ïŠY¬± ‚ÈЧ>ÙŨ½û§ § q× 2RdJ«ãÀn£=Dæœ/¢õŠQ.D°ÌûŽ \p*àÄ0þ™C€¤ŠN÷~Æ.ÕZ°½Û„v'BVyÍÁœmQ"Ÿa`t¨AÆ‹bpQðV^Ü>FÎèVI•8=Žë­Ô[ÈY 9 Åœ9KÏ«* T7(ݯ¿b„&@ôA”™¶ð¾ *ÏpÄ@£@€¤Ê0ïhuhuØ©·Å…B΂9ÉþD ê£`P9ƒ©ÄÛe+“5þB&0ç8‚è2pïLãTÀªPGØ­ÜÈšå2$my(Æ Úì@µÙ¸Ü»Á o(Ø–Ê„?JQ1ê& ¡~Œþ\ÇGòšŒ+xñóðqs‡"«·ZºŸÆ^O4H&`ŒÕy0hvš;-€È[òVw™žáa¢¼}Ä+“…ª5¶ÀA¬²S×î€lüsˆI•Ôà  å´Õ%«oˆß ĺ÷Õ7‘OÖL@D;-6 Ú`À Œ\ª· ÚhÇy Ñ× ’ñ&r;%ñô½¨·êm@|Ñ `ÓîN܃(D ¤I㙀^ÔC£S‘Ñ‚dÇaPowàr­ N¼W‘?2 ’6iÕ²…÷»Ñªîš®!ÈYrCÀë6¨cR쌵}$ ¦ôbÝNÅmššm:¼yǘº)çLìF0hÌ +žÁ¾(AдiwfS€<íJ£¤Ÿsü2ع/ÆÐ¢L,HvQíhò0AÆúý„šëb ˜âD£11òZ¡@ÒFø` _Àˆ%8ÜÉÏ÷?߯¶Óýó åFò”@ΠDÜ@~úh¼r4ª_‚LÇ/ø ZYzKŠÚïïeÊ}S‹ž¹Ì?‹h¡¸ýöÛe7ä0`†1è €ñÚ÷Eó°ÀÃîné85PºC s€M»›@¨£PÐq˜ÆÛqž$9,Ë2ºvÐr…Þý¨‰C㢙ã]GY™˜©g ’*¢‚&©H&¾Qú÷õ5t@§=øÌæÜ…9‹€MÅóÏ™ìÔ[éq" $=²nÆ å ç7Ú}ö’]¿!¼ ÈÈg 22¢ õ d\3 èûÂëÐr› ¼‘º†À¦µƒ¶ÃÀ¦üŸÚl;p¹Þâw@åf#:!棥JOì[ƒ¶Óývè¥{éÁ(z&9o0ì™D€¤ŠÎTÀZˆu\”Œÿ]Ðàÿ"àšŽ–Óý»TïÀ¹Ku  gQÈYÔíð×Ú¸é–fD¡œS`l!ƒd ÿTÀ‘µÜÔÏ&;ðFd×G0 ·.³Ï.ÄP4Âú½ïá}„‚Ï ð”F4@‚ÑïG ÅÈç 2R’î\9Ö?¢)@š/g_a?…^4@±½QÐKr}Œ,`³™¦€!~‚±Q:4HªÈ?®`œ%õ*8 ™éð>ÎŒ?Œ? Pw[º¡ã ${ðFðžEÆ™ŒN€jˆÆF® @tø?óÏ+$-”nþD_ ¤Ø!Pµ?/ïÁ¯#-£z#2zŒn’C€¤Iï¡Hzò‘` ‰¦€8&@ F:ÈxÑyÙD´Ä¨i–´h¤ÈÆÃ ¥Z¿Àˆú f¤°Ë|á‚dY ~¦‰ç˜ª§¦sU-›þõrÐ i1Г=-ÄMK&€ PnH÷µ£¢qÇÆBHvɈÙÍ*Á~9Æ @€˜GD©§?€¦ ÒÄ(%Œ+\Lëþ™¦!¨äï> TfdiyVÑ ™A5ìÁÏ›È'¸"q —·³U°Ó•&F2H¶ 4bºnÅÀÛýñh#‘¶í š†7‚©ÿRhð›ß»d$ô&¡÷‰ŒBb™r£ßÒ‰9‰õ ˆ—l ÐÉFùØ€¡Õ_cªQÙüãÆ@Èø‘Ý{ÌÁa€Ü1€ É1ô\œïƒëäC…&@§I@”‘"iw˜D€”FL ÎÿŸÙëIšÜì>Y— ¹Fnro¤I ¼I±¶¡WOS$So@I¸ èšDtŽ4æ:¢@Òd4B„ `œ­º&@ü¼‹Œ@*ÙΈ˜Ë4P%` Œ~Ñ †¢Ú‰˜Y“@w¯´l§ ï½¢Ñip¢“dÅÇRóAbÀz.Ñ ##ù£bS€Ê:UÀ9Ö1¢PA&½çuºnMNdÄÈ €I•´Þ5.?ô•×q–M@T4 Qi!)t,`³™¦Q\Dã™4îE€K Ïí°—ª €á€ Ø‹$‰NÀdÜy© ìî&–›yÐ iœÄ&eôúDîõ(‘0¦PA¦)¹;:u%Ð ©“Š ÕæÃÛ_…Ci5¢Þö¤+ëœkgTƒ˜Í4EŸx qÏ&dlÄ5Áp½vS€»"® u‘è»N"3`\ÁƒŒékH ã‡å¢@ÒdÄG&€–x;Ê FÅöF*óo—ˆe£ "$›¨Ì¿ýd¿€SY ^#/d¬$-qöó­§‹î X5 Œ,hLAÇÁ{ix‚srõr 4HfÐé… 3¾4*µwÆsµ&oU’F ÷&¶¾9ò²7²§1b0Ø Š‘Ï#Ä<gQÐ@ÝpöX’E$«‡fêçhGÆÆÈ&¹6#jù2Ð c'‹î¯n$рѕ¼W]ø #‡€Î»î1q Ñ c!ÉBH¹?@lÎkX#0¥2ñLÑ(@Ýa€ ø£rŒz´Ñ Aâ&@Ø90Y#0F4H¶‘¼öVñ>›êÛQ6WG¦£uh#‘êl&À]É×tY#"ý7ü©ÖtÓ#ˆ¼’ÁøëˆI‹t…ŠSCçõÖOÂð·ñÇ ^«iš ÉSxë M¶ b´)G€Œ”D; )Šx"&@ ˆQJíGÏøyÇ3ð?£Ê£&óNŒúUÆÿj4Hª8Ž“jþRÁç  ¦ÓÎÇdÛGÚÀø‚²©€ƒsPLa@‰ÀÛ£ÈìóŠ1ng=™ àŒôr²h@`1j/UdoQÄ—!Ã0Å÷‹Ú3)˜ˆL§NÔ¾™û7@€d¦PX2 ªé‹ŽH# Qm™+`iajo=czüó@€I2& `J.ø€#Æ:ÈX!Œ1årßÁ&Æ ~4ˆ±hOSÊí ×$eTÏH§ÄÀQHB+TcfàºIF„Òf4HŒç!ˆŠ¾Ä1›’D…øƒo3ªÀAÆBì{߉èÚñ\¢@Ò$yÇD\³) ´?7E¿_@œh@°þ¤A24–eõ–£žÏ© >éMÌÛøg ’tæâö“– è­‰ˆŒ°Œ42̈d Çq”¦ýÅ—M>h3 i~’&@/Àß+qdâ5¢ƒÆˆ›Ä³œ$x#Œ b$¼šyr&€“¹à˜¹ ‰í@Q2UMñ cžn4HZDÎ66,ÚÆù2X“盀¨h@ÒøÚ)XL¢}ÿ`'ÀÙD4Ç¡@FÂXÛ%Ãóâ4 ôÖŽÀD 9BÂ{D6pòGˊϨæO`œ]²|¸ @ŒF) উcdÑ€^J<,:³ý_!Ù›&4ÈXxóXÌ(A*&@#àߢZ`Æø¡ºBFá÷E²Ý4‡I–Â4vÂŽ}Iš€ÀŠp4`tU#Ž…$‰eY)ÜSx‹šÄHÒ4QÑ€Qɱ´E¢P¾1ef›¤à0@i™nÞáÁ#Ni) ¢Yè ãE4ÆÔÒN‚OÐéé{&ƒÓsdlp†Ôèç!Z— Eø«R+ +\±2ÚQˆ‡QQ4ˆ™D謮 ÐŽD9„`ŒïOu·À_p=‚j”6H‘=wFDÐ æÂ>ø›M€v4@°2Åò2Ó ’n¿ýö øhÄ‘9 ž— D˜r™ØUó÷°Ç}ÈD’úЛ…Ã]àÍÊÑÛØè™܃0"?y¯@$‘+õ`ŒB·¼ Ì:†ãþ‘>±÷û_t+|´ÓéXÁDQ(õÀTÞ†Æÿh4HZ¤øppªÝš& »ž Mò žAȤWe§œ±®ë >X¾e¥y7pèi¤)õé¤ÄPò° ˆŽø’¦¡ÄÄË^PM}=ép_µ½ÙkÚõ ¿åýu:^ÓoÔ+€'ã]j¿!FßHãŸA4Hš Éw-4=Iàî  ðòÖ{~’‡d7íH†Qü`XŸ×Ô° [Î÷þ†Í È­õ«ÞØzç)<“Ftú ‚1˜®šó?Ž à÷ P7iàÌF0ˆœ€èË_Ô±×Î ÿç|ùv»m( ÃÅ{-£¯$UÒhK »÷™Ÿ¸ëš€î6q4`¼FÀ‡Ñ…δ!ú"Á§õ4––éÏýÜÏÍýÌÏü̵«««×.,,\mYÖ"¥taiiéú ø ;ñ;‘ìƒ1÷!L„£ÞŽ#€‚†è« <úÛ¿ýÛûÞô¦7¼êª« …åb±xU.—»Ú¶í«,Ëšã ½ã8ÄqÂÿpŸÕ_8¹O¯`R:I¢@Ì$4d/ž ˆ ðí׈ú n0(HÆÐ}©Ð¿úÕ¯Îðƒ|þÁƒ¯ŸŸŸ?833s°P(¼Ð²¬E/à(ùÛù=á÷–ƒã݃ˉ\ÃÐüÑþꃱÍshs ·¾ èm“˜A4ÀÛúF`!Sã ™i"†èóßú±û±ÂG?úÑ—¯¬¬¼z~~þÕÅbñ‡ Û†5úïÁí}#~•Io&c@jDõßÈŸ¹×)Œ'àÁIx‚Û“hãîb½Cžzn‡ÛÚ%»ÎP×d»Ú›TÀ¤ô@€dMäÍöÇùÚ]箌ld éÇy€ÌDÒÎ õÓõõõÜ7¿ùÍ7///ÿÛ\.÷"žð‹jûqE?(øzÏÑ ½ÿøErøÌyúô½\o'yIbb¾W0ÿèƒ1Õ/@ Ø>b&¥¶‘5$µþPÿ‰'žø‘ë®»î¹\îºÂ?Lÿ™³;ô{G·é½Ïn“{^ §.Ô¦Q§”@€ìE?ê& *0˜1v~ëþá^pÓM7ÝU,ß "ü:âï_ö>/ÖZäï;cýãSçé½G/s; ¼Ý² |Ä<¿:‹^æ£nú©£¢‚Uˆ!z÷‡ÂýŸúÔ§öÞzë­wÎÍͽì$…?ø¹µÓ$_ìŒõõGÏÐï-F‚1Ž ‰5׸édÑ€¬$F °Z ,.G‹j¸ÿo|céÏÿüÏo»âŠ+ÞE)àwÚó ñ?s©A¾öèiëëž¡÷={vE߇“›÷) 1@€I@ú—Tú¸dÑê¿ÙÅ÷d#©õÌÜ÷ðÿúE/zÑG,ËZ‰¸¬Æ%ücð­Ã[ô‹ßÛ°ÿñ©óÆ‹¾³KÐÞsí¸OCŽÌI6’li™n4À¿9´É ªµþ_ÿõ_Ÿû­ßú­?;;ûocÔ ÷ó„ßû®#üg/7È_ÜwÒú‹{7­“ۓ׉¯¹÷ ±Æ}H Ð Æ2(êj&€£×Â&Á½dûó7$ÆdTGˆ@üýÂo}üñÇ_ÿüç?ÿwlÛ¾V$æÁp¿Šð;#ß>²E¿øÝ û3öÚ>£9;Ì*³ÜOï;µ ˜ûÙûc €u€8æ8 ¬àt€S¼˜•÷ÏË2cÿ·W b.)™Q³€/ïýoÈ8Qù[`¹mý¿gYÖÕ\÷ójüíŽCþÛCÏYøÍ£ö‘s»#¿˜]–Ÿ–Ÿ'? ,7,WæwšLßE¢ëœlÐ ÆÁ‚_"L€x˜ „W÷6Š›Â{ãL€ãE±£Ÿ}æÌ™w,--ýŸàÚ§Rë…üÛ‡|ùÁSÖ'¿yÔ>¶Uð[y`¥pŠóÀòs]á§ý6xz@ –øOšÿxq9Ñ F2 ç>ªÿ÷¿Izð ~e#ÀÉ ñ†ü­øÃ wÞyçÇJ¥Òeµþ¨p¿¿ÿ/ïß´>þÍ£ö‰JÊÂoç¯VZV\–/÷·1ß]'ìœÂÿ*X…ÄǸ b,<0¸(°ºÑ7Üx¹`‘:*TCþßúÖ·n|Ík^óI˲VãÔúƒFàÁ ô7þúÉÜ#›—Ò+ðó³Àf÷Ìî–g®‹%àÞeãÛKã-óäœ-ñ'$ýe¼‹§4ˆÑD›€Áo2 Y= ÚD3áÆ$‘ˆ¿åû´;öÖåååÿ ƒµyÝpÿ¹Ëuú;_{Úþ¯œ²ÒÜJ sÀæö›Ù/‡…=î=Çä÷5ã\Ég›&4ˆñÄ1ò&ÎêP"æK4¦ØßT†$Cüz¯ýë _ûÚ×~kvvö?Ï´;ùÜ·Ûðgì$ß¼Gr%`óWÌ] N®Ôû× .ñí5p_ËBV"‡È’pn!/íoø IDATÿ½=`<Ð LhÌ@†Ñ èf(4ßäee¤è},ÓFAü­;î¸cîw÷wÿ°P(üˆ,äï8p‡ŠÚü¿ûL…þ‡¿~2÷ƒ³É é#Äíž0³0 °™¥þ „ïIÐ]2_ƒ?'üáͽåþ f9ðùïùÁ;™ù’NªÐzù„¼¡ b‚fhp„ôÖDEÂ{ÈÏk¢JÄŒÁg? ¬?øƒ?ØÿÎw¾ó3¹\îF½¿ßÔ[ò‘¯=mÿçï·‡-뉧,v`þ€ù«XE÷¾ìß]ÄûUõæŠ/îiò" ¢dù¡!8ú dúäÆ ÄLpÇêËL@ШG¼M ÞŒ¤ˆŠøõ«_½îÍo~óç,ËZÐïï±ÍKô=þhîȵþ®˜»»f,®™Ý×—ÏRu5?ðë„íõÜãD¥òmátøãeÁ3¬g&|fÀ‹(˜`hsÑ4ám‚Ø@„Ò'aȾx$.Ãü,°¿ýíoÿð«^õª?¡”.‰Úûý¡~Q[ÿ§þé¨ýßxÆŽ;uïÀ¿kaèÒ€Ù½àÝ7<0 ù‚Þû}µ¨÷þ8¿`æ¾ý}¦€ûLõ¢ž`à[5ð;ИÄl1À_£h$IÁqœs7Oø tË/ëñÇÿñƒ~ÊAQït:\Ñ€cçwé{þâ‘Ü¡ãi¬“ò+ki¾+üåÅÞ)÷ųÿ# '£ƒ¿n Ý/Ò yŸ šÊIÜóï@l#^T€c|ÇG² $UFÒYFbÄ¶É ªüXÐ¥C öïÿóÄÿæë¯¿þSŒ±|Üÿÿ÷ðië}ùX®ÚìhŸŸ_øIaȾ™¹Â¿~»~PˆCíèdp=÷Vó ²¿FyÞÞœ6|&yf|WÝo‚¿¸?Ðo‚¿mŸ ìˆ c¢_o¬‰æïW„× ÈØ `¤ÄŸ‚+þ<ðÀk<øIUñ÷šÀ ÀÈïþÝrøGµÇõ?µî½`áZBC!~ž%¾ý¢Zz_`)Dª ÌïÏ8¼ä;1W¿å¡Ï8s¢„@¯i€øžÐ^´À#05ÄHúMÀp‡ópM€V4Àƒ |á)ši,lt´û÷:ü}÷»ß}ù7ÞøÇP”‰?¯Ý`·Ñ&¿þä¿þØY­ÿ€ð™¿è¾ç³rýözNM¹÷CÈà=º/{‚I‚·öÀÅPa ‹Àm9øÕ7Á/Þ¾ßú Ì¿÷ Øw/q àO‡d4ˆ±pMt '‘ €`êÈh@h~T œ ‰ Gü{cüÀþú׿þC¯|å+?K™ÑÆÙÜ®‘_þü¡üÏ]Vþ i}”æ]QäK[_XýëòKúkCQƒ d +?^Å?‘‰ (2óÙÿ›üÓxéü&hüͽhéM@v@€® èïX ˆpÖö¶0ÀÒmH¢Äÿoþæo^ðÆ7¾ñs„y‘ø‹„Ÿýÿì}yœ]E™öSçÜÛ·—ltö„FTtQÁ¸ÍŽà7Šà¾³Œú‰;£ŽÎ|ÎÏwTFTuDÀÀ ŒBDÙ—…l, !étöîtwz¹÷Ô÷Ç=Uç­·ªÎ­Ûé$·“~ó;¹çT½µœÓuêyÞ·–#¥xhãžè½×=^ÜÕ7þU,£îþÑôã!¦Ì¯ÚÍ"s»SW7µö˜³ã•¥ ¡Ãy{”Ê“àr%À&ى˷.ˆ[_HoL:ò<'Þ1NIÆ À¸ŒyÉ#Ú¥êLã¬‡ИƒÑ±y&q}høGân¸á˜%K–\«–úÕ þ¿~¬3þ‡Ÿ¯*WÂVUV¿Dó$D³C4·OßéÂçq‚þ¤ÿSð¶¼0Û"/7AŠÎp´Ôœ!£,J<  p ð2•7à(& ï'ã26Åþw’eMùHx hûËJΘ ~ÿûß?ñüóÏÿ~E³Fþ7>ø\áÿþ÷…$`¶w÷CDˆ¦ƒ¸ãx(×¶ŠÓÖ?LøµUíLŸz,è½då䈓`8¼œ P¯†Òð=,À<ÙÁÃEÂJ©goy„,'ã2v¥€:†T `u¼~Û¿>"0¾P&µÀ@áë_ÿú¿ …Gþ?¹sá37=´¥¯iõ ˆb ¢9ÏGÔ>÷Yÿ?üãÆÂ—~³®fÇ­~ˆ;"švœá¢wy‘ «Þ 1€&sy ü®v’.Çb¯ÕµÅÍ2ÌÚ°M\DÀ Ú©7 €XsÆÑÿ°Ê8§8€p÷3ªÃŽÈoD® Që°]Ió¼#Pia§tºvÿu„ 7ZRcÆ|Ë-·,:þøã¿Àxº½¯ü¿w×3…¯Þ¾>üµ ŠQ˜ý|DgX`Ç=> à«nlþ-ë—è«ÌÌ|)àgÖ¿gu¡»Í)!l%ÞŽ-Bà ."`x ‚02 ”€#´™7´Œ€qkÙsñYlªã6fn«±ÚQ®®%u“ä Ðôp¦vGä>ìHî")yŒ?õ©Oµ¿þõ¯ÿnEêÝâ÷š{6Ö øä\[P˜w*Di‚=fP¼"Êì~a5A#θV ÏÖSaˆYðßd&Rÿg{$è{ 8zÞ~á Ï!ì\‘Á†/g¯§“"¤ü ÷mSÆ ÀQ*€ÏAžëqË?NBzÄÃÃÃ1˜äyBÄ×Iä‘ÛFË"îQO™¹D ·vãBűͯjG1€Âç>÷¹‰ãøXþÔâwYÿw¬îŠ¿ô›:À?5iEëç DE7Ë,LBêt¼a¦ŸnŸµä#Y'eÀ°€Êž² …qñJqÿøé§Ÿþ»–––×Ôkù¯|®;ºô†•ż¥~®ñþhB óNAµ g@™>÷dTÒ²žIzzƒºå‘†ã^ju;\ø¶‹?+HòÆ'ívJ9K—EX÷Dö÷§ íïZ$€ÞK–—©1έŒ€#X¬|àG9×øUœž±}æ™gNxÅ+^1cþüù3'Mš4sÆŒ øÓ½ØÕõˆn¬†ËÔ²ŠB½Ȭ”P"àÎe\êÕ–bñüãyóæÍ»’*¸ÀŸ[ÿ[÷ˆ‹üXîýœ“ý&NG<÷"ËU­uÉP‘ÕæÓuÞ 0[Æ®†lZñð Èzž< o¸^o4?€—5.µ%ÇõMš4©xá…~5Š¢‰!KüÔÑ7XÁE×<Ò´}Ÿ{_7øÏ¨‚¿εý¶…Ÿ Ö%¿|Òœ¡`žzV0† Ü-ÔºIi7q» "yFòˆ½ÿ¼ýL«ž”Ìú[@Ͻv’± ðµdœ!’ãÞw>ï|-À_¼xqÓW¿úÕE‹/>µ½½ýÔ–––SšššŽMãÀvÈ:Ž[nD§fŸ$5HQñ’€?ukSݬb ¬Uˆ2T @ÔÊv™´=ÀÍÚµÖŸæë –žd×Y•õ¯¬‰ƒú®ÝÑês®Î]@ïº%ž{ Éí7‚ðê È:Ø"ª“º„.ù‹ï½÷Þ·•J¥ךõdíiWïøøÏW{·øuÎö/M@aÞ)"ü•ȬÐÉv"‹bÞ³Å(ÐåÖwÖV„¡šÎqNjájv¶¾®³ÈÞƒìþ« )0¦7Àj²ŽŸ°¡^€œë‘P„Çï³Þ€qÐàü|6¾êXÅu×]7ï5¯yÍë¦M›vN©Tz1ã÷µ?D×—7ö?Ö¿4º^D€¬Ì.¸NH•ev:.Lÿ49½ì²Ë¦Ìš5ëcT?Ïõ¯t>ñ‹UŽîIÆK¢À¿Ð„ÂüQ!iáÒguBîøoõ\8¬vâÊfCG:oý¯Z RbÜ“…–`à­sÈ®èýIxñÕÿüóÿ@‰¶Ï<×%‘øè +‹û‡Ý›ýöIÿ§?ÑÄTk‰J_µ=ùMý91‹2Ó7ÞœGàð·Ü¨9''úŒ¹øányÚ:§UÉYÃoÔÑC_)ç¿+®^Àµü+‰Äö}ƒ¢kߺzÄöžAÑÕ3(¶÷ ‰žýCªH W •%†*‰.«ëB´#ìî®ëêNÖÂ{ ¨ÃÀÔƒ˜Cæë³}ÁÁõÔŒ™ÿ§Ÿ~ú§Tœrý«sׄѽƒâßï|*üó¾qSu£e®Šé¶Â€Zƒ¿²h‰‡A¡á²)ø“ôû5í~7È;7þñȉ C ”ÈH÷ì}^jÅ×ö8á¿¶_+~4$WêH=}õÇ Œ€Ã Ž5ÑêÜþóÎ;¯õÛßþöù3fÌxwE ”² Ìy'JãFü sïþhͶ^±v[¯X·­W¬ëì¶v`Oÿ8ßóæ–±†t‚0o€R×z¶IåOPCF{gÁFFp)øG+W®|]©T:­–ÅOã¿vû†Â¾²³,{Ü(Ì9¢P´ÀÚ‘ºú#ØRÀ¤e°ü2ðÏZ›—L°òõDi†éZ0k^G ò¨í•åO‡@òH€]×j½÷Zïºïq[á5¼ý£ÁDâÿ>•Ö&ï–vžî­<%ìê641'‡Pj¸ûNòòË/Ÿø©O}êÓ¦M»(Š¢é*‘ø}@ ãüOïè‹î}jw´rKX·­W¬ßÖõx:áÃ)#"Àȉ I|ôŠ€Ù¾#…… ¾ÈÚg­ÿ–oîŽ~ùðVgï,ø€>€xÊ|DÌqøšær–'}Ö®+,“³IdVµÐ¨,rÐ* RWM@Œ[“”·X½ûÜ$Œs½œ¹nÔ—žt9ù$ažÅöÖ¦àÒúûûËÈŸ¿+ ŽëÃ.ãàHÀÌ~mñŸrÊ)MK—.}ëìÙ³/Í~Ÿµ ÿú®Þè¾§vG÷?½;zàé½"ïã*&2ýÏ7/Àî¢atü!úœTœdà HRÇò¤F¼±ÿ?üág477ŸÊÛ Ëê¯ÆŸ¿eM!ï¿@F¢ÒÄ3O¨¦% µQp®À‰ÆËÕ„Î@Ö¼dÉó3S_Ó¼4Q`{éûÚ òf9¦šH ­M|Køø:~#_øê` ;“ùˆ‚CF ó<+a`Jk±¶R*===ƒž¨†ù<'Yr¬~þ…U«V}üñÇÿߦ¦¦|@î+ z¾§oHܱz{|ךÑÏt‹]}c ð]•uO¬¦-o€#鏨ÂÛz ~ñ‹_ü.À¶þU“RŠ_>²¥ðئnç4nsÖU ³O6wý›`Ö]ðOó7]oLòàú5ãÙž„Pð̶ß5kJÓ/îÞ‡[_p;MZ=4`>Hk@%h@üI˜×²½-»»»‡ÒSI~]ç®ë†‘qp¤w|÷ÝwŸtÆg\ÙÜÜü櫋ǿkYûê·³{@ܾ²+¾cUWôà3{£z&¾4ŽTg. €+²†7 M3R"Pihè?XžõÿÓŸþôø &œbýK)EÿPÿ|û·ë߸¨^Å“gC´L2O+3¹ w>ÉTHa\«¬|/5OƒH¤ye­Ö‘m°‰%úÄbת¤þF<ëøÙ¯Ë `Ý0©gC7¼< (ßbww÷ lÀ3À¯dœ °úcÑ7Þ8ë oxÃåmmmoKòñj!Ñë<à÷þÆýbéŠmñÿ¬Ü¯ØÒ}X&릈¦}î%éyÞ¸Ò-ê‘Ñå«ñë^÷ºKD´mû&Àu÷>[ðCñ‰QŒxÆñÎJ¨ ž‘9ŽžÙ¹ X©°FÁ‰¦}-̲é9CsN=µ^U®'ŒsçöeÊ”¿òµmî(W$~|ûKÂqw,„(”²`Þ(¸élH ë?MN-i•£«Y-K°ý"Óº*饉#|¾HU¶¹ý®ª¼=ƒ_댨¹„Ô3`Ïž=°-hاð÷Q•jù«°›ÝRØÖ3dýGM-ˆ§Î·@›ÖÄãï±\ÿÔú'AÚ3 !µè]F²²üiƒ±< ü99 îü¬™ý/²zébÀ3߬$?w] è˜ÚV¾ó]»v Áþ.iȧ:NFAëú©õ#ÄÇw\ñÞ{ク££ã ­>wèûÃP9Á-Ë;ãŸ=ð\üðƽGŒµO%jžˆÂ´ˆš'š0öšCð(„4ý!ö 4dçáîñŠ/^Ü4cÆŒ òÆþyø–m X”Zÿ3NDäm®F!t”4®9UÈÅÃ,÷vÀøK’,+ƒáƒ^»‚¤Þ { _íJÛqóSRâ¬BZ¸³üQªX4ܤ×^‡`çÎܰ_!h¸÷xœ€„ZýË–-[ô²—½ìkÅbñ4ß~­µÐ4:Nð“ûŸ-\}צ¸kŸÇZ:”«nØBSú[‚(” MU«]Ä@Aˆê(ª†ËH*I"ýÕ×QŒxâtò%·j÷7 âh‡íÒÈ%:“¬ã œ`áÞGdìJλÿèG?zyÇSé­5ö׺Ѻ®^çâ3ÿ£¶©ˆ&N7¬t—ËÞK )Ʋ‰F><ßô—nÖ“á•0®x‘ËWp?ç0*0ÛØ'å·ŒzÁÁ\zظ"§"b¸/Hï˜i­Á%îØ±CMt h('#O‡§¬þqggçE3f̸RJYòÍî¯øüº¨‚ëþülá‡Üïô|ýà‰ŠÍ¥ @© ¢4¢© ¢ÔúÑ ÁN¸…¥ÏL#@úqV¤) ÐÑàLªâs½Õ‚‰@n>G•pˆŽ;î¸×Ôº¢á?X¶±¶õŸBÇBî7…ºí¥‘Ô¬4qýkÞ!+Ͼ–ë_겤O 1Ò’k¥&Í8 ×…4ê©âB_z/ò]qö”C©ÿódq¡QT†!*CµõpẩÁµÙ¾}û ª@ï}×Ð@CÊ8¨S'úÅŸüä''~ñ‹_üjKKËGjõót½ƒe\sϦÂ5÷<ïí:4Sh†h´LhžT}Áú缚И¨3‡¹n9:ggŽÔòäÞƒé$"!‡«FÖ»0eÊ”³Ud­ ¬Vmé‰þüän÷º~Ý2h™R='àn€©0AÈúÒÔµãoK-rÖþèX»Ël7@\åŸV†¾™¯0ëFêÀ'ø9Çûù="á$Â[‚1š÷ †{ƒôæLn‘šÝ¼SaUiíÚµ½p{Ô®]ãàH“@—|÷ÝwŸ|æ™g~»P(ëêèêu÷÷•Å÷îz¦ð÷l*ô­x›Z«`ßÒ^í\‹ÍV'çÙRÇW‡z $À$¾íÄ5½éù^y™þ_ƒŒ %ñÏþóÅ…Ba–oÖ?õÀïÉûg“ÿâ©ÇX(jô¶E…o~é¯ú·<‰Ž³™)G8Ô$o™¤œ4 %šœÐº±*(ÝzfðKvfÔ9Ä9c¹/%Îq/x礣œÑP˜ûÿÄYmÁyîÝ»w ««K $ìpy”H¸æšk†Œ€@ÉqùëÎ@üì³ÏþÝœ9s¾ …ºüë±úiçxËòÎø+K×:»âË m:0aDS³qƒê¶’ 0:5dX殎’èŽ ÐÕ É׃Y‰-òÿ8ô»A½äõe/{ÙkhÛ` ¨cp¸"~»ª+hòŸ(¶ š˜î”­,GNâ”çHÒ”f¬]ì¼Rðs‘C™ýݳþ‹•Å»×í±»Ÿ¯+—¥‰“æf±ÙYÒ±{`&±…Õ'ù¢ Ðfqö¤@“(d/?÷2è!Ì/œ…Zí)á0ëiB»å `7U/ ÷w$ ó:'* rèy1³fÍZ ÀrÿósxtÓÞ(lI«@Ô6Ã&©ä,Ùµ%„¤Ö2Àå `ÙÔÓ×^ ÷€ í\ç‘•»4®á¸v[ÿú7Dx¼Vuh‰ÈÏßya gÔñXë’hÿî ½SçMòÉ—vuuõõööôú+Êä¼› 4$÷0©þ1€Â–-[Þ1sæÌÏ¡ú?£C«T*QˆÕ¿§o(úÌM«‹·>ÞUðW-OÛÚ–­ÓPi?²yRÕ°Ía‚8g/ê²t\^RîzwÍ0+žëÅÙêÍ„€¤6”²î˜•¤Ò,@÷@¦mTË™‘7Ø+FgøšaÎ% hii9™FæyVnéz¢¶iÕôŽ8Ý^¬PóÒ 8yi]K^ZЕɗú¦½GêÉÕé㞺кZ LUJgœ³–ô6ù-ç¡3#\%ˆ4Xð*Õ'2A<ФúªÚƒK}úé§{`=_ ÀÝÿ -ã€Høoß¾ýÒiÓ¦}´–ÕŸwܵngô‰Ÿ¯.Ö³}/wñ+"´u <åXˆ¦ P¾îjDÊÖ2§4}£F&Œ‡ -r^'+PB¤¬-È:ØÈSðØ,„‘Þÿ¸\¬îO¹r?JD€×o´ä`¯µïJG­ÿèÊ+¯œU(¦J)õø?çìX½Å½õo5笕ˆ Ó«TÓÕ¥}i¼ÐÒl{>aP› wÛQ@Iß= îþ*¦×R2Ðá2«l^çdÀþ¦®gÁqçÎ|xÝh½¼"â¬ÛK4Ð ÈÚãÿB¯Z4-©©˜V¬ €Zÿ¹$ ‘öÆ €–ðß¶mÛ‡CÁŸºú¤«¤ø·ÿ}²ðow>UíÓ-àOQ7iiG2íyMÕ ,TÇCÞ¸!‘ýf¼}mC«êÝ-fª2%¾ÚÛ÷¦ W'I/hGî®ihÇ™Ýw½DÀ5.¦Õ¯IÀë^÷:küŸ¿ ëª`ã®þ G+š'YaÎ6àPÊ}å|‘¼AÒ2ó¬tg~Õš’y¯YŒ„»ý1Ð5‚]€ÌÁßùèú¯ ܵID­reâ0÷ÿɳ&ÊŽ ¥ÚŠ„rÙ²e;àwûÓ¹® üq ü·nÝúÞŽŽŽ+è2?ßx¿Ëåß7X—Þ°¢éŽÕ9KˆPàWÖ>ÈB *ÓŽGÒÚa-­Ó@/«5Ï`Žåå8W–3'ÆÒ*žFåcE¸5µ•C:UmÙÐVyZ†4=5IPÓ@Tk剗ôÝ™5kÖü¼É4쉭=Qˆã"PôtÖ h×iíé—ûèÇ~¬wÄzgHž tG»ú%!Yzf çÕÙE (`û,v•˜Ç[çž2BêgFK“8ID–çh¢c8ðìEÓ‚‹¨üîw¿Û ô)øûæ4¤õ pÌÿ3fÌø'ø»@ŸÏîê—\ûXÓzÏΨø€QŒÊäcP™<±î4Djs)¦V~Êàd)ø,P‡åNS:ÀTµnE:hoc¬¯V%yÊ:LÚ&í <&4Þ‹Ù„Xäyœ!9D€Fç¨øåÈb†õêøÿ4ª7þ¿~{_˜õ_š`…i@2ˆª´¯äÞ]¶i ÚV…XJFni9ªžÔ÷”ÀMtµ!yKϬ~d¤—5À_²‘P±¸99ðq:Iþ;È(*ƒˆ†Â¾ð—'úÝÿ|àòåËw ¨ €Ê@¾ dhá°ÊQMBÀÓ¦MoK'üüÿ¸aWôáŸ<ÞTkm¿ø$f¢®ô£$qoW^kSŒ3Ž š(àOúSLàw ¸¶nØná¨%މOø?óÌ3o™;wî?pŽù×ÿüqcá«·­/äíè—üˆ›0ܱIË4hI/Å×äk‹Z°¼ÒÄ.°×„@£.‡C÷§\ùË!äDw`,ò:}ªcƒ´gÒ$™[5€w¿@h ÁÑ,‚Q©Tš À˜¸IÀÎÞÚŸkš³|ô$oH³]IwÏ+Ù‰ £0\ÿÆŸœ§qxœãû$3 ÌC樧»ÞæMYåð°ôÿÚ!Õ¢×”§ÏÏ.ËQGþwrä3šRèí Ò{ÅñíI!‰—.]ºæø?·þ9 hx9j ÞyÅ «V­:wþüùÿ  øiéÚâ—ù¿lÆÁžJÛt”§‰NõWÂtÝ«þEM4:Ã⨸>cj];Þ JB|«5)Uú@×ùKÀtý«°´\Úad÷a’ é ì–¬ˆz‰€¥{ˆÈ€<ˆËFºÀ!Æ{ÔÔÔ¤=.Чócvõ†}ÚZšªiQ‡å·åo!'ñ¸Ÿ¶‡V¦Ê !æð]^¤ h%#¥<¢Û—²Á9ÌíŸþœ(€]çŽí;ëmf>š;Ø 1¼?H÷UuŒÿoÛ¶­åÊ•j  ýaØ€‚¿áh´ÀQJr\ÿ1€øŽ;î8iÑ¢E_YçŸþI’DôLÿÏþú‰âõ÷möƒ¿üY5„dTÀPû Õýú €®gÛ§Õ÷MTé®E…³>ÍPR–ê¥hçiíí¯4‰ÕŸa¾Y 0ôH2Ëɬ{j9©T%r܃]2‹H¸uBé‹h¸Wüàˆã €Æ»T(ÚóÆý©{â&“ô©¼aù»þ¨^ÒêСē¾ ’(þ(r¢† Ï—Nã¨G€)li)à»oZ–z½àOrãùÙ¿Òî({”Á û¬ÿ8X²x†·x>þÿÀì€mõóõpC÷Gp€¿áö¿êª«¦¿úÕ¯þ^Emõ‚%IÄ'~¹ºø‹‡¶8ÁßçîWÁIs;†§Y(áJ_WÜøv¹0z^˪OEufÆðQ9€º=U†,éø=ª_«Ì\žz˜Àød "PÏênJU‘ °¬¨¶¿ÞªCò3'·WÀ›wޏUƼh2ÇñdéZ@ìêz2.¦–¿Ý™£LÕiµgº–ûs„˜å§ x›SkýMI«Ló®5Ъ¶]Áxù:ãÖêIòäàÏÊõåeåsD$eÄý;‚tÏ^4MΞÜR wÝuÿ&'ã ¡…[þ€ø¬³Îjþä'?ùÍ8Žç× þåJ">vÃãM¾ý„ÏÝŸ¢veÊ O^`Y¼‚é¹\ô‚ww.ËŸ‚±‘ާ—,Ìõ•êM ÉTG¬V)TÃS¯…]½Ëùl*éà2Òbw^"-”“Z®e5ñÇàˆ”æc Ρ¡ßòC'ÜkùZ H÷”&aÕRE'E®€ÉPWm™Ä++^!=]Ò§Îy‹Wm˜è*Â$’Õ%ÃÂÙ!¡WÁx+ÎAèG{Ü„Àmq«ç>Zà_{Y¡8ÚïLÜÛȰ¡÷ÿsÆÜà1úJ¥’Ü~ûíÛaƒ¿kÀ˜ÿŽ2àØ¹Ìø²ß-·ÜòùR©ôÒzÁ¨\üÉò¦ß®Þa¿aéÓsÕkE1†;NB¥uxå =®€Ù°JX§ÁÒ°s–!ªm3yŒ(D;Om|±ôÚRÏ e "]"hvH´®v¨Ù}ûH€ê„}$ ç–²È4£0¸2^Ñà/¥LÑ­5Pü‹”‰Ʀ‚ù·Uçj¶¾…Óßæ ~Et>2ÍG(`’ [Æ'²Z*fËY²³Nöý¸Â³óñ¿U¤gà #Œ¿¿êøûHw­Ï†Ä½[ƒô¦OhÂ9ÏŸ ÒkÖ¬Ù³{÷îAdný»6¢GÃÊQC<ãþü7oÞ|ѤI“.¬µÃßÝop¸"Þ}Ý£M®ùÔ²úQlÁàŒçCÚ,˾ t øÓŽ…O´&rKžä,D cŽKç§T9(Ót|Þ)ÒDB[CÕÉ‚t" A^ê"y&N”¥¯{ðßïƒ8p4…óÌà¶yÿ ((“$²¿5~¼ K¥gFTC¤yƒЇ4É„ª‚A, iÐY0ÌJ–V›þ«’ÌwÈüôLpÏ$Ó³ÓH+Î$æ}ñ8çµÔ Dƒ=ˆ†ú‚tßò’9IœÓæøøÿÍ7ßüÜÀï"| €Æœ% Ö¸ÿ#<òŠÙ³gš¦¡àï›ñŸ$R\ú_+rÁßiõHZ¦bxúI@T0}¦L‚³aÙ¤R‹$rA¾1W {iȺ(ׄ@¯ø¼äÕ6ø‚€qªsqŽ‘r@{VÔ"¬sᦠCFBrõ›ð áÀ¯ƒä  ^”Ô½+SäÖë÷eö«þN†å_MTý¡V½®›ÊUØéðªÖ*ËN3P«²¼yÓ5–(JQ³-Y­È±æ_]ø€ŸêJ’‡A˜ž ü<Œª„‚¿íEm)ìݬû¶p÷¿(_{íµ›‘þû¥Àµ@CËQA˜på•WN=å”Sþ€BÞ²>×ñ•ÛÖ—®0Çü ÀççiSž4ÃíÇYmzÂ{X’­ÃRF<@6ÒŽÄY˜I@×£¡M£j–n2`ºL³ïPë©J ^ŽWeI“Lq &©RðK­ÒŒqRÆ^‹T²1À¹<$5ÿ^%MšÁ´p’Ðhñd­ŸJúNJÚ¦dÖfH˜‡Î8í~uW!`÷•…™ÏfÔÀ?ï~P¢ÁnÄŸþ}éÂvyÜôÖàjüþ÷¿ïìîî„9æÏÁŸN_TrÄfý+ðH­ÿOúÓ_Œ¢h¦Ïõï³þ¯»÷Ù–m4fûû¬}:¯•‰s2ldV¿”i)SS¤:&¯Â:©#Ùuv)m=zO–> ϱúyJ‚X>‡ üãý» öéNkk»_yL°õ?<<\ùÑ~´¦µOßµ@b MŽplðÄ+V¬xg©TzEˆë_eTI$>øÓÇ‹;{³/—yÁ_Pð_„2îòW¿~ð©õlÞ„Ê+I¬{µDJÐú(©³´ë è?™¥“V¬Yq>ü  ƒ,3Òç‰Ð*dÒ ée yž ׫GÝ¡ÖUˆx-ºÀÙ}Ãåð½B …B#¿§¦š===†€[WTÍj zê2)•öÜ¥42 “&8I#i–ŸÓâ­^%D‡ZÔh’8¾)Žñpø5?¤­Cj„ÌÒÏîêé¶L¯Iý²\ì{6îC×ß,GݬëCþ…:¬ÿ¼úØJ[É»;»%Ë–-ëÚ¹sç~ØcÿƒÈˆ@-÷Ã.ÿSÒÈˈÅãúD7Þxã¹sçþÕ÷ÿ—;Ö{¶[?¯Úà/Pžr,ÊgàŸÁ:4ˆ«k xDËš øÍ_5Þ.HYÆ0=µú…Ynõ ]Ûû) š–ÖGfi%Ì{ ÄIø¼€ê¦AÂi ¥IL¢Œh©$Ùü/?ÒD`$d@„½RÕð~¡PZ'×PÍÞ½{ƒ‡&6¸-+ä@Ÿu§ŠJѶ¡¾AHÛ‘Ÿ§ùôÖV|56ñ>m+|¼^´”Õ¶œX-ºÆ}ª<àKRˆúŒ˜÷¦ë§rÍ áÄÃG€x9<ì‚?€BϳˆÒ!¡Z2kR³¼èÌùuMþ»þú럅Ûí_ËüÛ59" @*ܸÞô¦7} @s=®ÿ{6쌯¾;û²_øW&ÎByò1ùàO+ê±ú9hº'Ьl~ãÈYtsÍx€=)P]H’‡y5_(s¾Î[do'.PíRO@ý¶ô^ÓŠ¸Mz7•‰ë5ˆ@¾Š[¢Pî(s.KôïììÔe§«Ï°hf €lö’ýiLD’æÙŸ/É`Jš*úœ’³dÀÇ×y%$®z-³ÁVÜ`d£j%Iì™ø€ß 7ïÝ&0Æc5îùp‚4Ô‹âÞMÁú—½öؤîD“›7oî%[ÿÁ¶þù²À1õ *c¥c –ë¿ððÿ²¥¥åµµ\ÿ Îw÷ ‰ËþkU!I߆ðOZÚ1Üþ<7øË;Kë·úÕ‰²¤M@&îx#\•!¤¡O¢,’ x9"K£”’»Þ*?a—G†‹ ÈòV˜ÊØzËx9”=°‚ë%Á^@À`€(ª±U^ãˆ~J+V¬èü€ÏåÄЉ€ƒ½º$Ò®7£UÒ´† Šñmi!aŒÑK•€æ—fæ³°u)­6âÚÖÛÚ­†1ÄÀëBu€Ÿ‚öܤMºWõ4%Ïç ‰”(î\‹Ð=ÿçOm•ž1¯.ëÿ;ßùΓpý»<cÖý jõGâE‹5-^¼Ø»ÛŸoìÿòW·ï´ Q/ø7µa¨ãdk5@vîÿê©ã³¾œ,¨4Ìâ@ºŸ>¹d$@PeÆ8d5AfØ3°Ïî‰ç¡]ÿ*™Ý«“€‘#ž¿GÂèp|蘑ØA!D€Ææ‘Jód¸R©­”JƒÏPb`Ö7¿ùÍg+•бPu´.R°(t"àà> <ÕYû‹r`’U+ÝLÏ@ö’>£­cg¹¬b÷pñEú´rš€èZæ¿t…»­~—Ëßµ·ÿ¡@»b÷¦`×?\qÎÂ$x£)@>óÌ3û~üãÓÉÊâ€= À÷ÿÍc5 K°8¬Mî¼óÎÿS,O¨Çõÿ£{6þ°vgöŒŒuþ ³ q2.axÆ ¢˜¨ ”îjpWîsÇÁY¿p„ð•fœ/Y²"øWžiæcÔÙ~Ðn`'iõœT7‚ÓŒt^6‹±,]ˆ´Ô‚‰Õ°È@è€rx?‘3à°u6©uã¢B@Ò××WéîîÞ s<N ô`°r°7+Ð009@ Ä2 4«Aÿ¾¦ë?×—„ ÐÕÀ*³|ê9ÌŠ9_×zž`‚~.ð³{ɳúÁÃäâPH4Ô‹B÷¦`ýfLç¿xv]_æû×ý×õRJjýs׿k àñ!€Ã-ŽÿøÇW^yåÔÙ³g€ví×rý?µ£O|íö z™$ßb—‚{õ¿Ã'q“¯jä´âÓ>,à×'ÀÏ]éR«^hjAD@¨MzT>ÂHnœY{È@Þ¹E{KDöŒuÆò's—Íû¥—ôÕÜQ±`"Ndà+5XIDm­ª0·4¥Ãá•tuu­Üà/„4ü„™m2ï-†ôtV "»@B"œã÷<9ðQÔàm‹_ë–ÉþüÔúCùômÀwƒ¾üô~Ôý{€¿–ÕŸ}Vž®OÎýŒªÈÅk‚ÙF$¾vþI•¨†GŽ´A¹zõê½?ÿùÏ;ážõÏ €o÷?½ù•#†¤ÂI@ þä'?yiES¨kßü*þó¿^SJ—jñõýfQÕóò”Í“R}¢íÂþVn\ß´ú OºYF"²e Ÿ–'Y°ÁØ$d¿~IÊsgeß/$ 0õÈ{…²ÇJR©¼|½«ã>­ÍŽjRã½^P×2À`²P¯ŒRGe¿:6lØðDEfÓòxZ› xñ‚ÉauÙ· Äå¯((™µUš!w¡S@Õiy¿A¤ 'ÿ x“©ò&лßú.à'Ï!øÕ½ù¬~I:”WÜ»1økðž¿8&yéÂöÜ*ò¶øµ¯}m=Lð@æúçî×þÿcô© oÇ¿_üâÇOž<Ùù™_À$ê¸}eWüÇ Õ/ücºÜ ^Èæ)¨LžGâüT¡&øyCõ»@,,Ë×Ü&˜³"…¡žC²º§f»Zb¨A7-ŸÎ=0þ üÞawtF˜+*že@'ráo¢eX¢'! 'a}@RGWQ'8\Çžä—¿üåªPkBàù/ t×–‡€¾êÇ_ŒIäŒÎ£•¢f³2 €ßõïó"t ¢%)ðZà® Þý€ï}ä&P»º¨ù ' IDATÞ,<­}¶*ÏC)qï6ºŸ ÖÞô6ùÉ×?/|’ ~øá]wÜqÇvd`€>À˜œü§äˆ ©8­ÿsÎ9çý ;ÖÚðg`8Á?ÞºÎÚ!ѽ˟â"†:NB†´¶¥n_ûÁ_º6‘°¬~Z'!,ËܘTG¶ ¦CÆd?gä²$OT7 Òù"ký‚&da‚Dé°Ðftz$“¬Lû]SÇJ›—ÍÀ@2PöFdrs¡žNÂõ”Éâ0€_¿øÅ/¶ ìLð÷¿~á¬Jðr­žNðÕEæö—Pѽ9 «Á’ ÂsÀÕ`k¨Ì&ú1Âà?ø¿]`L¤÷¤#¾ð»Ýý0ê¦uƒ‹ö i׺`ý8øÆ…‹+Í5ÚmƒRJ|å+_QÖ?ôÇ @ø7Ê»X—Œy³ì/þÖ·¾5gÒ¤Ioªgâß7ÿdqËÞý)¾3‹_Ÿ* Àð´¸höÁZ—¿0u3«_ç›A$u ˜”LP¡8KI†BU·PegÑÒq_´NÕºKêDp¾6|Ö‚V“ž:û Kiü8ëCU½D 2 +Cîº0iom Ò€}ûö ±"i±¾ðÃ% ضmÛc.ðg$@À¤–"–,žæèÛ$eÐVMǹU¶à”$ìiÙ ¨©Gv´þÒ¬Çì À×õ$õá÷žüªž®{×4%S>Ô.ˆ†úд}5 &WC>tö±Éió‡’ª"ÿøÇ?výéOÚÓõÏI€oüŸó½1%cž¤¢ús½ß?€øÂ /|€¢RJ’êÄ+ßøÿ¦}Ñ—U7ü1—s¹!­2i.’–vCÃùËÉË‘e þ:=Ù…ÌC@ÓIîY0•©Àò6Hž&#JÓ"ìq™o…p†¸uMéU0º+'<†¾^½œ Œ·?ÐÐÞZ¬­”Êž={ƒ•¡W§ •‡zèÏJŸ[þ|" üÝKò?תE&Õ¹´äo”U,µc ¨Þfí^BôµºJ•)ð:Aúð¼à»I}N $lÒ R’{µ Á¡QDÓöI98ÍI³&Ê+Î=®¦ëŸ¶¹J¥"¿üå/¯G6áOþ~øÁ_ýÓ?7€±3ùOÉ‘B€ ³"ñW\ÑÞÞÞþwyëü¹ûÿ‹·®- ²=Úý®ÿ& O>ê’¢0Ç7ª(Ì kÌßãE°tðR²À—ê j2¡ q€${ü+o%¼«K`$€Ý6£yP+ƒvÞÒÐÍ~ }£Ó™« !°t}½´Š$S'ƒ;н{÷:JµŽæ;-Ú Ò Q**W]uÕÃI’ † ÀY'L“3'†m ,ÔjR‹ œy-õß?S'Àîi€" ¦CÜpý£zÇ`ÁÎë9yÀ“Wvg~Ð͇Ü{-àKsH%© ©k%D9œ÷bo\ðüJ1® Òä 7ܰiùòå{`×ø?ÝüÇ5þ?ædL€ÔýÏñ)âŸxGE­@èkí÷ï“»âÿ]³Ó˜øgb7sýO] ”wù h¬eé‚¿q ÚÖ¬P u/¦S[ïÊÒ$µZ&è¼g°°Î¸š´4H7¬ža ¾·JwT^¬gDÀáb¨Asuyo[ô´„ˆs×®]ª'äÕU"0 Â1ªòä“Oîß¶mÛc€iñûH@!Žäy/žvO=@ßN ¨,OÿSëö«R3¥ämº›W.ò„”`¥!×õ2Wæí¥`-Ã@¿.àgdã°ˆLPÚ±ª®Í~àãç_yÁÜI5«MÛÝÆ{¯¼òÊuÈû€¹öß7ößHïa°Œi@D ~ó›ßÜÚÑÑñ÷ÜÚwý*ùî]ÏÄ*£,WAtQ²y2’Ö úÎ_‘*÷·…3\]zöãòZ‡N/a½d±ÒÐçY$Ä®òa‘¸· ¥®IqV2µ­ˆÿ|×i•)­õ9±‡‡‡+ùÈGV•Ëenù÷ÃtýÓ €ÜõïjcRÆ$`“ÿŒ¥/xÁ Þ¸_…Ó¼¾w÷3qb½ÁëÒ¼êÄ?¢â2v{€<׿E"(9àîj¶[ }8‚é›þ1ëäüüû’Z‰óŽË,ÜŠÈÞ-o~Å*©I#"Y| o€Y`" ‡úÝhÀ¤µ)Æä:&nݺUW§ãªÞáêœh¹z€òå—_þp__ßVÖ0‡Ë#ÐZŒñÙ7ìÚý» úvµ°Ú `? ÿÈ„D’02à°¢i;çÖ}ð*O:Vm}jÕ!ô%IÚ†¥÷nDÓÎ5ý´¯’æb„ÿ¸ø´ò‚ŽÖ [¢mëÛßþöSË—/ß ÷²?Nj­û0v­`Œ" ·ôÀiÓ¦«@žZÿê—Ýû£_=Òi¬ûç°¨ÀYF”'̪†ÖiýkUO:ë¦Øeù;FÈ0@6®ùg^~ëšæãixI€ëMq[$àè Cªdõ/F§HXgî”Á°™Ë‹f}ùNÕÉJ»ví¢ëŽéo#mBBë¡ê¥:ÍòðððÐ}÷Ý÷?5<*!äù/ž“¼ì¸üýÜ©D;6I%ËÄÌÒDIv$ß„(V=‰¹q´¼÷P‹Ô¡ƒ$¨ Ž­‚¹®ÿ‘‘ šv®AaïÆº“ üÛ‹+/Y0¥nð_±bÅž¯}íkO# ú ø}cÿGœõ@ýÆwÜqÇ …ÂlÀ}õË­ÿݳ)¶>Êâ!É„9ú3¿Fá¡M€[í̃àsýƒ‡ç‘^œÃ‹ÀÓ㤶H¤´(·Ç#gžN<ŽwT ìWŽN4xZO=²(:“;G¥æ2=“ „,-ü`¯Û1Xýô•ˆá~”:E4Ð]wÚ8øòßœXyÿ«Ž­o¼ÀÐÐPò¾÷½oÅúõë÷!üûaoüÃ?û«ËëàŒA õ^GD[[[aêÔ©ç*åþàœýÿÓ{¢]}ƒ)F?æä?T&Ì‚Œ›tÁ´n`wùâ=×yäuéÌÓÜ*XéÕú×8=õ¥¸ u¶7³#³ó<-kÈR$åhRŽ#'Î ÷¬_¿¾&èÓÝö|$àpvLª|UGÕ(õ«_½)I’aׄ@–‡–ËÏ9®2{rØî€íÜA,LG“ôPó&²­~)ÑÓ„/稭A DŽy/Æàg"Qè~Í[†®o¦?´•büøâÓÊ¿â˜p"˜-/•ŸùÌgžøýï¿îñ~zÐÉ|ã þcçÑ×±Jæþ¿öÚkO* ³|[ýr÷ÿÒÛ÷žªÐ?¯ÕÉžÂC*¨òsºÿ¥C?$OkÀ“‡Uvv-zì4Sr4yãmTÏÔñH]Åé${ÓtgÇ·[‘ÆÊÇYV¦”غÃI\pÒ¬Ú;–)Y±bE7Ì1u 8ìÛ‘¦Ö…+ZGµúÐÍ7ßÜùØcý°ß5 „m¥_ü«ê°ü$âík öï 'Éeñ’ýZ퇅šG­RJQIqǪµÝÿ’–ÈB‰„Û)|î}Í­ußÅhäᬜ-Fo-í@ ¸äšžÃqnXI:o®¥aÖ00&YÑЮ¹Ù‘Ò„’åïyN¡D ªæ'¡îÿŽ M˜6!üC@?üðdc锨ƒöª‚œ¨yÆ.»ì²_÷æøžà§ÌJ^µhZø½Éñ¶Uƒ½ þž©¯5@sЗG<Æ´H‰ÂÞ(u>Œhp߈²8eî$ù›½´|òì‰#ÿ›nºië—¾ô¥§àÞé¯@/lë_ýs×?mÓGŒŒ)ŠpÑÔ©SOQ ÜýÏ'>ðôžhg/sÿ³"¨WÚ¦Ó‹ ÷¿«ö5£ësÿד?ÕùqßüçrŸûÀ•¢³ºÖù3ز;\Y#NêúëøÄH–Æ™½ Ø¿·v"Ôçþß¿yõêÕ½0'ÔÑMv|w'¥€ßØ)xôÑGwÿùϾÅü>/|ù¯Oª4ÕøÎ»!I…ÎÇ!RÏŒ·æ…åÈqqK4¸¥Î‡QÜ»ÑÅ®‚dÉâéÉ/?tzyÆÄRpÚnî¿ÿþ]þð‡Ÿ€=æß—üùÆ?t⟄ùž1Ö?06 íhkk;@î¬uýûµ;íû6ÆÿS‰ ¨¤ŸûµTC›@ °®¯k‹ËL!Á®õÆjÐ4\ ̹…mºìSσAúáȃ×ÙîÊS_Èì:Ô¢2P´3LB"éÛ¤{âL?àÀ·qãF>ªtüVq ¨CYSš¼÷½ïýÍþýûwá^€…Ó[å'^w|}Û¾V†w.w~£Ál×*Ì~Œ‡ýÁŽ‘ Š{ž®Nôêq6ïÕ‚ä‡Vi-Ƶ•S¡íæ©§žÚ÷ö·¿}Ù쇿:8øÓ¯ýy]ÿGšŒU`XÿïxÇ;¦455-Èû§¿=Û4þ_i™ˆhôA6‰8eè"¨Uì8T¤¶˜ 9¨F¹½ye©ÌM!¡ ÑãËö¸&ˆžÒ¬Z¿­³Nص§Þ.±ˆ@^¤ìxÁœð=Ò €.«ßõ9R+ßÃl©¨:Yó uvvö.]ºôõz>xö±É[ëøXˆáý(v>fL@s¿ƒ ¹=ÿ(K4Øæ­£Ðý,FúÔâHàkçŸ\ùÜ›UꙨLÛÊŽ;.¸à‚åÝÝÝÊ­Ï]þ}äWêþÏ]ó$YÿÀØ'ñž÷¼ç”ôºæìÿDJ¬J?2Rsü¿uº?2È•Ý|øä½Þ¥}*­ÿ=é `e³žA;ÊTCšéxþt„ÜZŸ_ã6hŒ*’“H뮌ÂL$438"Gdÿnûf=òÊÂDZ׬Yӷ럂ðž4‡PTùÜs¡=†.¹ä’ßoÙ²eàö¤¿1€ÿ÷wϯÔ3) ÄPŠ[ɾ4çN<Ç¥¶ˆÊŠ»6 Ô¹b¸ÄùLl.àúw¿¨üö—Í«Üðß½{÷àÛßþöå›6mê þÔõ¯Î}Ö?·yàŒ=àÿ?öØcO¡J|2 ÛÐÕ'ú‡B¼ˆ•–É^ãƒ$Òó p`N­n……’П7±zØkTá@Ê-rZ"©˜Þq ¨N ”Yg›úðºKx!üt ©²O¸jq8òêEJ/tÿŸŽhïf6éo\2åwm@ós÷£°o äi-˜Ö*ý¡ÓËgÕA޳tvvî¿à‚ yôÑGw!øô –¿µëŸÏõÄ6…1CØ €€ÖÖÖ…@>ð«aGŸÝ›ÝsÎÀ¤© 1 vŠß•PŸ8 #ܞ͞o^[àÍp‚o7¢€ššn†•/ š`“b$Âq/Þ«ô?š&aêºò1ËÊ'. }4Ÿ$4  À«O ïàÊå²¼ÿþû÷‚l§ëøõFÚ(‰Q^€aƒ·ß~û–[n¹åç@Ö¡çÌ Ð:­Å×]ò¢òñÓÃ6U¢Õ*ì~Åmjrà8ø×#bx?šv®Có–ªÀ?‚¥}J"!pñ™ó“;.{yyѬð™þ€ þkÖ¬é^²dɃ˗/ßü)ØGÎé̺áz·è{$#ÓúÆ "Èo *•J3\î~WØŠÍ=A÷œ”&ŒZ…]Ríé<á®î‡ër…Ë"'X(Bhà6ÓÑ4 ÉפÒ(Ÿ½+ákùU†7€ê³Ù~”ŒxÍA $ìÙdÏŸ1¥Q ê†ÃÖÿ¿æ¤ooÉnÍš5{zzzÔF$.À'6 øçxô¶À ßa¿øâ‹ûÜsÏ­ÎÛŽ{ko+â'ï~QeæÄðM‚”Dûw£i˃ˆzlëµ!bƒI4Ô‡¦O y˃ˆ{;3Ë`„r\G›üå^RþòßžTi+…OöÌwå®»îÚ¾dÉ’‡·nÝÚ‹0ð§ãþ|¿¡>bÁ›`ÃÅbqÌÛhóž°¨dӤѩ©ÊÏqf]IvêA½Ìš%ãí¾PË ó¦¶ÈëßsZeRs}Ÿ…$wm@ÓÖÇ ìµÚî¸T—ô5m_…ÒÖ‡÷mÇ>¡8øÐÙÇ&w\ñòò Ã?ôØ“C¯»îºM\pÁãýýýt}¿þ}ì àO?øãÛëÿ¨±H¬9…Ba:`Nlð€®ž¡ ‡}Rl ¯Q^sÉ+-°™å÷ì& 0@<§C3HH#/i{$‹§àJÊóÎ`͉¯“ Ô„„ד’ç[ÌU ÁÞçØ»ÝcÊ«MKâ(l¬H!—.]º &øÓƒJF˜ÕDw2Tž= `ÿï~÷»ç¾÷½ï] É!:O 'Ïž(¯¹ø…åR={‰{ÐÔ¹MÛG4Xÿ>õG¢D{QêZRç#ˆûwŽJž'Ïš(oùÈåO¿ñ„Js+ú÷.—ËÉ¾ð…µŸøÄ'ÖJ)éd?>æŸþ¾OýŽË#Ùú€Ðæ† þ]tÑ”(ŠJz ÚúTºz<[ù™" a»µIwroxž¢:­þJHˆ4P‚ê@#_5\€eËçjﲚkTWÍw `«êÉ’i-8–f¼Q )Ì8õ: 3ïsWí€<'w­9sD[ލ¡¾àå¯>1|üÇŽ<ð€ÿ÷î*€ê¸h³Vd¥Œì#^¤^€Ï|æ3œx≠–,Yò×d/wÇàWÚ…*þåÇM•?¼è…åýlE!l’¯-ÑÀ”:÷ iiGyÂlTZ;1m¤‘I4Ô‹¸o;âþ#Ú³ß'Å8ÂÇ^³°òÑW/L‚¿ìH„‚oooù#ùÈÊÛn»m;2+^¹ýÕR?îöç›þø&ýUàŒ@:JÄÙgŸ=0; ßÀáJ‚½ûí Aœ–_Ô4U·ó¦V2jN]òÒS•RZ YëÈô¤ž¡Ïó¦›ý˜sdêvw ¨kI,s’ŸTu΀]f)¬úÓL))Ñ×YÕ³ë$ïqf5òZøÞˆ4ª{«7w*Bybøøÿý÷ß¿6ðsàÛ °aÄápMÔÃúßò–·üzíÚµÖ pÞç«Oê7øŒòü©­ô¢ý{д㠴lþ3šv®E4°ÇW䘗hhŠ{žFós ”®ãMð?mÞdyû¥/-_~Îq þûÿöoÿö¡Ûn»­ ÙÚ}ú=éA­ø«ƒw‡GŒu€˜={ö4—‚k@W÷@4w%*˜+Ûäô™ ÎºÀÜaÐeö³j]^€TIY¸VP³@—«©;¸Š¥ªAVd ©«&(©ËÂ$) Ls°úpÒpB,dÊŽ89’ô¦I>Ìo`ÔC-÷ŸK¥1˪é ÐÓéÌ‘Ë æL’Óö4•pçwÒñ:kÞ7[¹ÑÇ.i³VõUÃ1ªr!=šÞøÆ7þÇ}÷Ý7sÆŒó\é;M½pÒì‰réÇ^ZþÐÏVî}r÷­ÏI*ˆ{·!îÝ7¡Ò:•¶éHš'cT–þ&‰÷!îߎ¸o‡Þ&y´¥¹áãç_yß«$Q½Ÿ…MŠŸxâ‰î·½ímË·nÝÚBá_îGÝþ|Ò‡¬!´£ÁúƈÀ#€( Eß„?.å°%+Iìsÿç· mOr5AãÁqÊÎÙ]sY\œ™5Ní|$2EÇ @žÎØ&X:âÒ ñ2O)ܰÀ™®qOi^ölÿìéóH^YžlI#˜°{±ÅŒõꪈ}ÛÇö².ù›Óf¯•*—ËÉ­·Þª}Ÿ aű"€ïk 6ÒÝöíÛ»/¹ä’ïïß¿Ÿo§@?‹öÖ"~öž—ßUÇçck‰¨ ¡°o JÛ–£yó}(îZ_õ À2¸C&²‚h ÅÝO¡ù¹ûQê|…îÍü ±À§ÏMþ÷ŠW”?pö±£þwÝu×ö׿þõmݺuÜ“ý¸ÕÏÇý}àÏ7û‘ÀÑþÀØõ)R$&o( ¬){RrËhädFÍA ©Ç쉚¥OÓTˆ'4ºžÔ­·õJZaž‡4aÑ"1lN€þŸ‚;-‹”)¹‘ÈnHÏ7¨^Arû^å-Ìú±Çè¸Q’ΫG+œãtÿ— ÞzúÜ`”X±bÅ®}ûöÑŽÊeù»¶Îç7‡_h+£D@ÝcŒjG]P¸çž{¶\qÅßÿ÷ÿ÷•J¥V)¥ óRËp̪³ÍÿñoN¬¼ü¸vù¹›×Ä;z‡FíFªd`+ û¶"BRš„¤y2*¥ÉHJ“¨¾em£)¢2 1Ô‹hh¢¡^DC½©Kÿà6R!Â…§ÏM>xö‚dÞÔ–Æ¿R©Èk¯½ö™OúÓ¤”y_ôã›ü¸&ü¹ÜþG5øcòëšÀ~%MÞÀgjš’ »˜ò¸»v‘>¡Ïu’gFª·ÎÞ9ÙÏ=Îç°š%|>=iü„xJþ,Ògl¡"É›džax<´Hû iÌtK wÅÈP?„ÚR¶†¼éÔYI{«B)ïô–-[FÇÿ‡‡‹Y£ub×\sLçñð?oU/ä0}åõ IDATÌI…Ÿýìgë*•Êw¿õ­o}¤¹¹¹5IMöÉ;®['ð†Sf$g?5ùÇ߬‹õèÖÑ÷xÊÑÀ^D{ÓÎT išÙÔ†¤ØYl…,´")¶Œú„BQÞŸü`ú[Õ2jIkSŒ·¿l^ò³TêùrþlÚ´©ïãÿøê»ï¾{'˜‡¦ÛŸoñË?ïË7ú"c|x–yò$pV†|ŽYྡ|3(³ï]^âc0Ï) a¦Å/¡ú8Aò£"\¬’ÎhÌéÿvÅ“t¯.2`Ïà_˜ž€ Ñ­|I”Î/±Üæ—$éxÁT©6¨*Šž-^M.½<Øú—pë­·ªå>ðçîˆ[ ª¨Þ@FèQ¸ñÆ7”Ëåïï{ßûP©Tj³2’ÒxÍ\$`JkÿváâÊßœ63¹ò¦µñÖ½ûâ¾D4´ÚÓ %ÈB3dT¢"dT€Œ«çÕ¨È D’XçB&@RÑç¢2$åƒw5dRsï± “”%Óq ⪄lÙaV¦Pó ðö÷÷ï YèÙN¥B„w½ò˜äOWž5ü…7/ªtL¥å¾G¸ÌœØ,?ÿæE•û>sÖð¥¯9î€ÀŸOê®|÷»ß}ꬳκïÁÜ ÛÂß Ùd¿½p/õ£Ö?ßèÇùÍŒ£ü±ëR¶ß××ü ÊŽ Í2Ž*‰ý7׿$ˆò d¡d¹í}Ýe×4Xå¡Ã$lO@NvÊ#À­}¶h. œqÒ.õœd ô˜½:1tÉ™Ò'Ï€–›HiNQPÄBð­~³y¼^|ÈÅy?þhCIEQ¬/ɹ¥­ã¼·^vww]wÝu[}-Zý|À¹g90f:4õסÏG°ƒ{¢›o¾ùÉçž{î;?ùÉO.ž3gÎ+S‡'€„Ò\ˆðÞ³$ÿòyÉ<ý׃[£u]½qh`ìI©áìEÓ’7Ÿ:S¾á”™ÉHwZTâ"e«W¯î¾ôÒKW?þøã{QmßÊ‚ç$ºþÕï~Ø ï~c“`̼+UÆ2±qãÆÝ¡ÊÅ‚À1S[å3;ûˆçßèÀp?P(y€¤(÷î|DƒÌõ7sð¹ 蹈€ª.ä/‚tÜLà´¢%»ÖçÒ™^ÍÞ§ãýÒÐ2Á:¡÷V=É"£åÑŠ™DÀ(­Òª¸ë„.û:ï´ÙI=9Yºtésƒƒƒð‡`¾pLXþTÞïNßµ³}?ÆÁ?GÆ:·Ýv[O¥RQˉjÊ­k<™g€Þï÷"”×§€Ê„f„…ˆÖ>ɬ^ߥAH!nËßüì52[$€wc¿ÿl®„Ëâ×C üIfnà¶)Ö9" v=óîýòúÅ3’ÿßÞ—‡×QÝg¿3wѾYò"ï `K66±Ãb  „Ú!4uø¡4L“¦ås M³³ô)! `6×H( `c–Öú(‰H ÔÔµ‘ð‚WIÞµ¯÷Jw™9ߺçÞ3¿93w®$ÛºÒyŸçhæÎ~Gsç}ËùªJÏ㛳íÛ··îÝ»·rË_&dîÿ×ýÏħO€dšÄš5k~_[[ÛüÃþðÆ¼¼¼äè]‚ðáÓ5,›[Á–Í­0âFµñ_Û´-uÍú¿ïiÖ;ÃÞŠ?tä|¸bn¹yýùØUUÃKú€ÜÝßÛÛûå/yà±Çk„õù¦Ä/ jñ‹}ûy?qØlÇL@‘?E6 ‘H„Åãñ¿ß?!ÝpÎøû`  ¼/ôXXºIòÅM€mʹŽÓ(ÌeóÄÚµ ô“˜Iñº=ÞË™~ê#³o'Ü ûöârf%n#u§dÞú«5%ªD´ïä¶¿ËB ¹I´·Ñ|º†¿½öœŒ’ÿ~ýë_5῟fÖ»ÿEHBâ=3àBü"ž~úéÚ­[·ž|æ™g¾°xñâ*Àjí " y,¯B¨lÇÅÀ?šUÆûÛµwv·è5tjû›z5[WÕŠ¿Žó&²SŠÙeç”±«ªÇ›ùá/XäDü¿ýíoüüç?ohmm Ãú|‹±~‘ø©ûõ˲üya)éðØŠøåÈf$þ¹Ñh´# Ž7 #mÜïÜ v`!`®b8zè~€ãh}6!XMæ HìÉ__2wXà}=KÈqs¹wÂõÛû÷'ï‹í˜,©ÄóX’A,r¬ä‰À.!À7Ñ[9o@ð• §˜s$ϘÓá[[[û^}õÕ°KcšnÝ™²öÅ–Fp¸ýüLæþýûÍ+¯¼ò•¿ú«¿:ÿÞ{ï]Q\\\hÛ˜QŸYfBwKÏ+gKÏ+7 «/ŽÿmìÐ>ªïÔÿ§±S«;Ú­E<–?(Ë zr›_YĪ'²ù“‹Ø9 ™×á¨ñwvvF_|ñÅ#>úhCWW—(fi¢Ÿï‰_´ø©Õ/ºüeñ~@‘Zd«°¤ýýým……¶ß¼Ž/gâÐâý3  $³ðí%=ÀÝIø.°’ Äó‰$›z•y0á/•|”vƒ”¿|y‚¡˜`Ùk‰o n ÍrS¼DTH«ü"—ÿG¬{I…€íÀ€ÖuZ¿·!óƒ>üß«gg4ík¯½vÌ0 ÷ç/G±˜‰èþ-Yéþ§ÿëéŠ92a»d[·nÝÇ›7o>òÔSO-_ºtéù­û!ñÞòd(ÉóãÊyãÙ•óÆ3Lji[BÚ¡–0·„´ƒÍaípkH E7D±4 ˜>.ŸÍ¯,dU“‹Ø‚ÉE¬º²•¥¹gìY{{{äùçŸ?òÄOééééÇÀ³Ë€X؇’=%~± èî—YýÊå?d£°qT[[[CEEÅ%|Ûº,?ˆ²ü:H,OæТ}`9…6KÝ5@ˆÝ*’t—à6yH€_4áš„uÉífìS.ÛÏul€Ä‡tÄŸ\.zk=Ëœ5ÄÁxŸ?áÐcÛþÁ®ÞùR¹ÈJ|ˆ†¡·¤gqÄ—Í0Óú'öY7 Ã\¿~}#ì]ÿ¼$ÒËÏJH!Ì;e߉€O ñãÇ«V­zó–[nÙsï½÷.›1cÆ$ÛÎ.aa}ÆøtÌ«,bó$ùMÝ´ôD´Îp í¡¨ÖÕG{8†®p\ëîC×âòyAyAËúБ›X–ô³¼€ùA¹?òƒ>Œ+ ²¼À™/åâTc¡¥¥¥ÿ¹çžk\·nÝÑþþ~Y8Kæòw³øEÑàe< SEþmÀbXòV__¿oîܹž2gBÛÞÐiÿ‘‹^Æ ÷·ÃJ-u~^E$ËkY_=‰¤ç œ.€Âfé3û¹Ä¿eŒømË™5«?u›…½´Ä>Âñ…º¶kNLÓylÛxYj2èM»æÍr+/âîe332óÞ|óÍ£GŽé…=JpKÌj¤H]‡U0Òø}=#qñ—^ziïK/½Ô¸fÍšª»ï¾û’éÓ§§çuó뇋s0±8'«…›ñŸûì¨ÂgÚ³Ï>{¶¯Áî¸ã.Vø¡¹‰VxüøñGÇ·Ä4MÝ4M1¦Ñib­­7Š%¾”•’AA€Q< ±q³h©â¶Ù/¹L³.—ík›¡NiͶ¿Ü2¦\a±°es©65%YÎ… =Ý>•WÁ’¡ëÁ¾‘–þv8®§I~t½‡ïèÿd4hË ·_¿rÞx×Û,¾LÛÚÚú—,Yònoo¯XÏœ¿;`µŒxž-Æ?G¥ÕCÂ|^š8lp©wANbš'´|2Ÿ wîܹãî¼óÎêk¯½öÜÊÊÊ—?qÿ;>NÃ&8[H#j˜aìã?©9õÊ+¯œ:uêTì^Ú¯_Lö³ýi£%|EoôJ%ú 3²) ɰZ €yêÔ©ãÆ[•«øÃ¤1½ò –žWÎþði«ôÇËh‰|=ÔŒ›5°\RÌÇ’6€TN4–¤oN|büÛ£gÂñ,b åHîq½u‘ë¯@JÔÖ%¶uûX<d³gľÜÒ¿?qó¬Û2QYÀ`_—.OVÐí|-û3"ÿ[.šj¦#zO<ñÄÞÞÞ~X¿¡ñO™õcs֌ƗŸ$1Pƒ½‹ õ0XãÄâàBbË»oß¾þµk×¶¯]»ö®¿þú)·Þzë¼Ë.»lFAAA/$$ßâ=¶óÀ»Átýs5MƒQ8ÑŠy§¾,0°½0/ÌPK–ºÿeoûÛÅõR3ƒƒUn[–tkȽ™b?r"ÅK¾«Ô ¬ôr{œ¶Ñ{NÂ×ò©‡# À§kxã//Œ/šVâú"¢9(kÖ¬Ù±iÓ¦#pí‹Ik46Ê“¡øË“1O‡phH(†yX '1ÏßN-‡lÔu=pÝu×M¾ñÆg.]ºtZEEE%r ±ê:X0„|„ä~ K¿}Ë–-M¯¼òÊɦ¦&þ¬dJ‰_–åï–ÈÚOö¥¿r÷ŸŒÀ©S§"§NÚ1yòäÏ‹–¿Ä ÀhyA®[0ÑÜô¿'\!cð…ZrLóYºïeRÖwÀâ'aÄ:‹Y!ñ €l;T8ý‚˜d»—Ù–YNX`V«ŸŠ ˽ÌÐà%,`;Gz¸¾–}²Íñ7ËgéÈŸžúã?îØ´iÓI8[K¼Éºþ‰åÇ ø _2‚ ØA”‘&v ¤ÄÅï9%±MÓÌÙ²eKß–-[Ž\uÕU¯½öÚ©\pÁ„êêêòÜÜÜ ¤v€ì“ö'{š ­¿^ÆXccco]]]çG}Ôñúë¯7555õƒt£”4Ñjw²üég±?uógäîùŸd£!f…»víÚ6eÊ”Ë(ù;ùøÒg&¥ÀÌ8|¡f…•ý¤DÀÀ'Bö€|À"ø¾ÉR·âë.¢`¾üiHße)ñKö¡û»‰À!7@8®W! ÷wÁ×´™ÜÙ%3KÙ·®˜•6ëŸ08â—‡äRH ±Êí6i±0Çw¦÷Þ r|xû¯/‰Ï(ÏKû5Ä®e›7o>zçw~Œ·¾ØMJtýó^<ó_Ìà/j`Œ¸ÿep а øaï1ÀÃI—?™—$ûñPCòØ3fÌ(X´hQɼyóJfÍšUnŽå"ø”!mY_X=|K%<’+ $÷Íð§ádíÓ-ÜH]¶žnãäêw=µë Þò¸H„W<ÿÉÚŒÈX9×ÈüqìØ±Ð=÷ܳÖd4Ñú§ISÔú—Žk>! pðw‚ŽÔ»A‡ÝµÍÉ;š˜ö#e틹Ér:Ÿ½mo½õ>¾`0諪ª*š6mZ~EEENyyyNYYYNYYY°´´4XRR,((ðñ‹¨‘¨GÂLÓD$1:::bÑöööh[[[´µµ5ÚÒÒijjŠ:t¨/Ó"QN¤O“%eÄO[T2ïDø”ø (â±ÈVÈÝ~ñ={ö|p饗VÓ<À¢¼“trÓâJóŸþØè© ’¿çâE“ÀÉ.xÖÀÀB/B€_Äí¡N qY)lð¿fKCè†46€Ã)2‚%$H…€æ´R¼¾ÄýÔ¢!ø›>ɨ»|õ¢©æŸ~vJF®ÿx -yêXö7Ãój8x4¤ùƒÀɇz|H ±ÉÞmŸ ù„ϺðYƒUh’æ&i2â—¹úÈŸZîÔ Û†>uñÓzýŠøG ²QÈÔoòï½÷:?˜9sæ2—žIhšÆþúªYæ7^¬u/䞀Þß1X0!õÆÉ@$×ó}„21`»^>ãd; Ý62+_º¯“µo[zàÅàðu6ÂßQL¯ð¢ÙelÝÿ9ßÐÓeÂjý×ÕÕu>ðÀa/]ËCqªyîXúW½(íðàËùýä$ÌÝöT ˆ¢@6uk>ÒÄJ†2O¢‡C%T'Ë_´Ä3Nî|7ÂwJꓺúõ<Ÿmd•¸ý¨ , ¶iÓ¦·¿óï,=na€ &˜KÏ+×ÿ¸¿ÍSrN ãŒür@óY$ÄB©µbu=ö`ÁÄ‹ó`åó”îO§µŸ6o@òÝ&!C õSèùá˜7©ˆýó×.ˆçøÓG‰Dò…Bñ»îºëÃ0¨åO‰Ÿ–C¥Ö?uû*8À%,@…òðXO€ 7a@ ŸN©yøÃÅÅ`{¢m†ÿ"ù‹"€Zþ¢ ºÿ9yD—5~mâó+~Eü#YÕ °ôà?"®Æs0Pë»@qSSÓS………3 ‰½cÚá–°võ/?ôÇŒ´!^@¼d:be³mË9É‹ªÀ®*Rb@º¿xqz„lS:ô¯t»Ólí{æø!±Èˆ д z#ûqL)Íc›ÿò³FeI®§¯)fý÷»ßݽaÆF ½XôG¤FM,ú#Žz–tÿ«—¦w8ôàó´é’FïQ@…Ìíïäþwó¸‘?‡Ìû™Iì_æ ‹ðP¢—Y÷²˜¾Höb£×­ˆ„!«<ÔÆî8€Ø¶mÛþ}ùòåwrë?]`öø||ãóÓͧÞmð–Ø} FÁ˜ÁBÛEñdžÁ+ÜÎ*œ~¶ Ïðgäº9“Ó¼tŸ@ú"ܼz¤¦]ÐŒHÆÇ-Íàůf0ä­[·6oذáRq™Û_ô8Åþ•õ?H¸„€”<ç¿GD"v2/Ì{ÀƒLPÈÎrM¦âs >”„iü_&œzˆïPÙ±¨ØÝú®Ö> ˆ¤"ë<€kYठªªjâ‡~øl (¦£:yÂ1W<òÿdWúºÀü¹ˆL^¦\·“y'™O¢×ž]`s×Û“Œ~H\w¶üzùíò…šhÝ0oy~{çâøâ饓sssÿÒ¥K?hmmíultjýóQCHYÿ²¡O ^ Ã ½”¤ÝD/Ãu²c‹¤O¯ qž²yËe¡RpŠå‹‰©ÊÚÏRd³°*bKßÖ½{÷v¿ÿþûo\qÅ·Šyn^€ü€OûÁ çšùÒ'žµx?‚-{™x>ܘZæ`ì,#ZfR[x‡ûïOæÒ·~–ý„3èl€¿ëÈ ö/Í`í‹<“¿ˆp8¿ýöÛ?nmm ÞôÇÇK=´êŸØí/så¢à —^Œ|æMìM Æé)yS—¾î°Î)æïdù‹×2›,'ÀI8…è2ÀJþÔû H`´QÕ&ÃßøÆ7þm×®]7ää䌓%&–Â“ÌÙv\ÿà`»'¦ÕûÚè8ŒXÙœôÃna[,}&"舀žÎã´ðjÉVÂQlÞÄIDAT¡÷w!ضZ,<¨ýÏPÈž»m‘1£"ßó]àÏS,3׬YS·mÛ6Þå’Xhâ(iâhhÒnê¥:¼ïçwÜ!®J'ø2JÜ´O¿Ó2Ù¾2â÷’À§21É<}ÞL‡ã‹ç¥óêÍRd³)Œ&°ÄDOœ8úýïÿÚ¾ð…oð<ÀBþֲIJûWÎ3®}ìCÜðöLû»Ž‚i>ÄKgêKXf¨(°l”^ Ðí¥Çm—ÅÐÌ8ü‡áï91èc,¯ª0ÿÊB£0דóg༉çÉ4Möw÷w{jjjšaÏø—‘?ÿËŠþ¨ngƒ@Ê3À—Ó>ñ3uñ»¹ü+Äyêš§ŸšÓñdç žÍÑ€¬Ì¤½|HUìÊÃ@.@aIIɸ¬ËÏÏŸDóLÓÔ€æÀƒ[öû¼V䈕ÍB¼dÆp}Eð…Zh?͈úw_>ÓüÛëÎñÔÏŸCŒû?üðÃûyä‘z :'}÷³ÿyÜ_Ìú»ÿ‰.YeýŸE|ÀNÊn$N-{/Ëé9èùdÖ7%i©{Y.;–í¼êY}Èfz8¹"§^€XWWWè­·ÞÚtóÍ7€¥(›`í5çïíkÓö5õzf…@G= ñ’éCÿf ®ÐâÚ÷Ãnô1rü:~zS•qãâÉÅÛEòþùçyä‘X-jõ‹Ÿyì_´þeÝ©Ô ÷,‚xÄ8<`÷ðe|êFèNÉ~l+ƒI˼t·m¤ÇWÏàèFÖzÇš¼G@Ò à÷ûK8ðãÇŸëÅ À?7´†µ?yb›¿«/žÑuÅ‹§"6nÜÇ ƒƒ¿û8õÈ´œ¯ˆ‰E¹lÃm ¦•dô‚ÉË–-'o»í¶]°ºüŬ±‰–¿˜H³þ¨>ÿ#¼²å^¬üÁÂìé¼Ó~á5d»€ƒ+`^ÕË€0te<ïÿîw¿»~Æ ÿ¨iZÐ%€çfVä³u7Ÿÿóç?ö›nØø»A‹…_ è£åŸ}èÑ^Úö ª¨ˆESKس·-ŠO,ÎÉh?‘ü?üðÃÖ¯ýë»a·üeÍ©ä¯l°õá $Irœ û¿º Ù:ÏDîe½"{…ÑàøšùãÍ×ï¾Ýñë:ß‘öð0tëaÐû; ÷w Ðvfn Œ‚ñ0òǃ¹:*F˜ _'|¡è}­ÐŒØi;UЯ㮥3Ìo_5ÛÈɰ_?‡øÿŽÅbæƒ>¸ïÉ'Ÿ<Š˜½¬¼/ñ‹Ä/–ú¥ä/äG‘¾‚‚ÂYGÖ× p(Ä ` 6@>„AŠ_{íµ?»æšk®v)Ä Àž4ŠxhË~ßKÓ‡X«Æ,P#·fn)ÌÜ0_f•ì†ÿ‚Lè±´hz´w`>Ò3ì>E~Ї[.šjÞñùéfeIîÝýÐÑѹ뮻>ùÿøVù"°Æý)é;UúÉ?I@Yÿ g£Ñ BôÄ‘QX«úoºé¦Í›7oö/_¾üJéÒx r|ø‡/U7,œhÞ»iïhGß°WýÑb!øc! 1ì-óçÁÌ-†È  LýyñaƒëO}/ôhh`>Ö‡3iÌŽ+àöK§·]2Ý,Íü£KÉß¾}Ý·ÞzëLJîA*ÓŸé+6™Õï…ü“P䯠 p¶1ê<€Ô À]ÿ~¤¼¹Hy (yóÍ7¿|ÅW\.óÐRÁ€´û Bÿøÿø^üïcz&c 4 ÌŸæËóš|.‡š0`Æ@3Ó„ÆŒÔr3±œ™ÐÌôhxàóYÂÔ²4¯%ÿÚÚÚŽ{î¹gO]]]ìñ~‘üÅÄ?qˆ_§ N}ýù+((Œ(Œ…/ „Ä<P‹¢À2]¹rå¦7+V¬¸\$aô@dz…8ΛTÄžºe¡±ïTùèïë5»š•ð€ g•²o.›i\9oüï%þÞÞÞØÏ~ö³O<ñOô“¹ü)ù‹î~ÑêçþèÀ>b¼_ÅüF$FM7@ ¡[ ï(ÎÛºþmܸ±¡   ôÙÏ~ö\]×E¿³FºJ»Ѝ(ÌÁ '±kçO`}Qmam¨ÝGü> WW7ùÓjãžåsÌYC3víÀ¶nÝÚ¼zõê[·nm†µo¿¬¿8ŸnX_ÚÍÏÒÕP䯠 0ò0jC$ ö ða`Ä@>j ï †Šn¾ùæy?ÿùÏoÎÏÏ/¦¡Yï¾ÎíšBoïjÒ_ÛyRÿà`‡vÆóFò>\~^¹¹bþx¶¼z‚Y’7t‡µø ¹¹¹ïûßÿþ¾Í›7ŸBÊê§ñ~Yã£øÑX¿XÚ—VøS䯠 +°çø…Æóò`…Š.\8ù7¿ùÍ-S§NLÀ`EÇÉÎ~íõ'µ­kÖwŸèõã—äùqÕ¼ óÚÙås+†”ÔGAÉß0 öꫯýû¿ÿûý===<É»üÅÒ¾¢Ë_ç—Õô—Åûù+((d F½¤"À—˜ç@L yÂ’’’²—_~ù‹ŸûÜçÊj U@CkXû׺&mK]“¾çdϨŠ‚¸¦z‚yÝùÌÏÍdžšÐG!±úÙÁƒ{Ö®]»çý÷ßo‡u,Nü¼ÉHŸ’r«ß1ÓP䯠 0²1&àØ5PìÈÃÔ`ßúַοï¾û¾P\\\äUužp¸%¬½³»Yûàp‡þ¿ZOÿé-®3ܘ]QÀ–WW°ëæO0Ï(eÃ^šrw8Ž­_¿¾þá‡>ÇEw¿èòçäÏ]ü”øiœŸÆúÅx¿˜è§È_AA!k0VŸÒp@)À눵 NžÞ­ýw}§¶íp‡öQ}§ÞÙwúJìf‚‚æN*bó&²ªÊVUYÄæM*bÅÃÏw‚Œø;::"/½ôÒÑǼ±½½=Œiˈ_Fø²?>˜%êòT7?…,Ø€£»ÊD@ˆŸz n¿ýöy?üá¯++++vñˆçƒd]Æ` 8ÐÒö7õh‡ZÂ8ÔÒ4‡µúÖŽžž‚=>]ÃÌò|VUYÈæN*dó&bÞ¤"6}\Þi±î)d¤'Ožì{á…Ÿ~úé£áp˜ãq³úÝ,~êî§ÄïØ¿P䯠 ]SpM ”‰19 ‹¨¨¨(y衇.]¹rå’ÜÜÜÀ›7€c¨bÀz,àDg¿ÖÔÓŽP í¡¨ÖŠ¡=Ó:Â1´‡¢ˆ›LË è,'àG^@G®_G^Їœ€Îò:ò>ätäøuäçøY®_GYAs&²ÜA¸38}}}ïúõë^xá…ñxœ÷ÅÀnõÓþý²¿Ìꛘá¯\þ £cNžD¯ÈE@R" Ö.ƒò&Ož\öÀ|î†nX TœI!íp"}l×®]]O>ùdÃÆ›rÏ»Åú©—÷ ûðã¸ÅúU–¿‚‚¨Á˜€k8€Oy^€˜HÃtš;kÖ¬òŸüä'_wÝu ü~¿ßEˆç¶`¬Š'âgŒ±mÛ¶µ=öØcõ¿ûÝïÚ`%~nñÓî}"ÙÓÏb1»_ÄGYý £cVi-£bÀ @s¨W€ÏçÍ;wÜ=÷ܳøê«¯ž7nܸ‚ÁÉv£ .–>0Ã0ðî»ï6ýâ¿8¼mÛ¶N¤\òÔêËùФO­}·8:«P‰~ £cZžD€(x½ÞÄ.ƒ¼×€( rý~ÞÍ7ß<{õêÕÕ]tÑtŸÏç…€x6Œ1à…ô?ù䓎wÞy§ùå—_>uäÈ‘R¤/³úi¼ŸºþE7¿èî§ÃöÒR¾ÊêWPPÕóp´t0 8 $ñK¦9“&M*ºûî»ç­X±bιçž;!1²P’Ô3Û8¤!|`ñxœíر£ýí·ßnÞ¸qã©“'Oö!EÌ18ÇúiÌŸ¶¬ ~Ôâ‰_–á(«_AAa”B €D€è  åƒ¹åH€0Í9÷ÜsKo¹å–ÙW^yåÌêêê º®I 8ìsÆàèE°H$b~ôÑGm555M¯½öZs{{{?R.xÑâÃê²§Äï6åÛsñ Æùˆ_Yý cJD`í!À…õê- ö _lÀ÷›6mZÑW¿úÕY+V¬˜1þü‰>ŸOO#ÄëóŒÁ „ É]zjèëë‹ðÁm[¶l9õú믷ôôôpR¦ÄO-~±”¯èö§B€&ö9¿,ίˆ_AAaLA  †d¹bo Nþ|}RDTVVæ¯^½zÆÅ_<éüóÏŸPYYYD‰{¸Ái€…0ãñ¸yäÈ‘ÐîÝ»»Þ~ûí¦7Þx£%‰P§Í)ÖÏýd!€(ìÄ/zÄó1¤¬~i’ È_AAaôC D È*Š™W€‡ èç iaêŸ>}záŠ+&]|ñÅ-Z4~ÆŒ¥º®{"†SH‰±µµµÿàÁƒ½û÷ïïÙµkWO]]]w]]]O4å]ê Òd¤/#šðçDø"ñÓ¿“ů¬~…1 %\àÑàä B@Tp/€è ãøø‹‹‹s/^\6þü’óÎ;¯döìÙÅÓ¦M+ª¬¬,ôû­¥úNGN@¼¡¡¡÷àÁƒ={÷îí©­­íÞ¾}{wkk+w±‹uò)éˬ~‘ôi¼ß­ÉHŸfõóëQq~%Ò 7€' ŠÞY×A™gÀ­‰"@l¢ÀàçÐø€¯ºººèœsÎ)¨¨¨È-//Ï-//Ï)++ –––æ”––‹ŠŠº®;ÖóÇ㬷·7ÖÝÝíêêŠuvvÆ:;;cíííÑ–––HmmmϧŸ~2MS$SѲ-ítÄïFþ12¥Ëh’ µöÓ?ø¼"~…± %<ÂÅàæ ^ž+ Ž7 ŠJü2O€(|”74zô;ÐyIÂ/§îtNø|^tûÇa”ÀåÇÈþâqEÁ!‹ñ˾“"…1 %2Ä „€[ˆ@æ!pkâ~2o€œW¼4ñúe`¤ò8ºØN$â¸dJ€L8mG­|±\/ñ+âWPPPH%—°€“IY´Ø)‘ËHÞ« ÍÉ0X sûSöó—…輸é»%õ9ºúEü "”2N!êÆ§äûŠÇ—[¼V™ n>ïDþ4æÏCé<Ôª§$O«ôÉâú"á+âWPPPÈJ <ZUŽ<(K"” ™X ËhÀÉेµªÓ‰§.”ÔÓ=uë;uáSį   0H(0ŒÈ@8… hÙaq^$x7·ºD@zMâgJ¤n·P€ŒÌEï€,tà$*é+(((œ(pš0D1@=²¤BNpœôE! ».  ½¼7uÇ»…èg™;ß)‰OZªŠø %N3Ò>ÕɼW/ÌÒ÷Iö—%ÿQòçŸ)Ñʼ²€Ì;à³§ÛCrliÁ(ÒWPPP(páQ 85* d †nÄŸÎú§!ÀJÀ2Rv²yÀJøÔÊ÷Dú€"~…á€gDr2v²ÚeÞ =é»eþ;Á©G€Œ¬3iNÇ”€"}…á†gÅŸÊ“kßüeç‘Á)ÀçòÜ–ÓyÙùá+(((œf(0Â0A@·IGü2ÈêÈà–É6Òs)ÒWPPP8sP`C"9™§³ð½Xû^áFötÞi?ŠðÎ&”È2d 2Yï^ [‘½‚‚‚‡£¢€c8­ PD¯   P` @ð Eî £J((((((ŒAèé7QPPPPPPmP@AAAAAa B …1%Æ ”PPPPPPƒP@AAAAAa B …1%Æ þ?™ôÀ:4gIEND®B`‚musique/data/48x48/0000775000175000017500000000000011715011710013574 5ustar flavioflaviomusique/data/48x48/musique.png0000664000175000017500000000603411715011710015775 0ustar flavioflavio‰PNG  IHDR00Wù‡sBIT|dˆ pHYsLLi†½9tEXtSoftwarewww.inkscape.org›î< ™IDAThÍZ}l×qÿÍÛÝûâç‘?eJtÌX‰RÅ‚dÄ "·¶[9)œ …SX"‘×HS£NQpã$¨£ à Ú$Nä\d‘’ u­BÔ•SW²AþPl)ŒÑEêÈ£HñޤŽÇÛ½½÷ÞäÝ;’Ç£J§ ,ÉÃrßÌoæ73ïÍ% üÛ¶ ÀåË—[7˜¦Ù«µÎœ9sæ»îºk>‘Hpåsô‡´ÿ~c×®]뛚šzô1ó&›„ˆ¨-ïyøJÎHÎäà êcýÞÈ…÷þfëÖ­/% }Ó,õâ¹sçêÚÛÛ7„ÃáDt+3o&¢~!D7ÕOg}~2›q¢ÉY7t~Úã3ycúª+˜F( mD颳ú'ö¶É#‡_عwïÞß,„y£çr¹-Bˆ0sÿîÝ»7 !ú„Risd:+FÓsÖĬ™qÍ‹iG¤æòÆ\Î#˲`„"PV‡IŠ8”Ù ÕbZ¦G_}W¼~!F£p@m,,,üË•yoàÍátÝØœIDrÖSsŽ‘s%bѬH ÚŠBu$B­ Ž(êzš¡C2ƒ4C(†Ö¤y‰y¾° 5Ãó¼(‚ß0€={öÜ—uŠ»ðf—¨k&„bd†[ŠÇÐÚÃ:3Ö Å ¥/É ¥+h‰±Tú±"OÁ 03 …Hå=q=Æ\ø·W.¶Qc5mÜBñž~4·w£®1+† D òÿ ̤Ààòg,º–¨B!”ÒÄÌ!TDຠ|>ß>–ÉF}3A€ ‚A€ü-ÈW@e‹+,+y*>¯ÐFÐ`ÒZ[•·®˜Ù”šAeRÙpßø’ÍK½N å‘XåªDª4“R*\yûF’˜Êl ð­^N€h%¯—Ø0-®V% €f&f®i–x‚Ê¿BTçõrPkÑF`À ‡ßPª}¢Ê»%W©.e€¬Á^p˜2ÈÀ ·”ÿOPš ÀŠ\7€åàÀH_q5{ÒsQprðB.0y €ë‚¤DGCˆ{[bº-fècÃË ·Ð’Õ¡4¨Uh­©l5 3 =n~n>‡¢›ƒvó\pà85×…¹7Õ·uEõƶ°ìmnò6¶FuW¼Näóyw~~ÞÉÈpó±á\Ó2eD`ßi5£Ð 3R*\xë8ú;ukH÷÷ÆTwcs±¯µKÞÒZGZ)™Édæ“Édú¹ ¯Ž_úþÙ³ç_}õÕ÷²Ùì•gžy¦óÃüç+—g RÌ$„0j L!Æ"m˜5"–ÁÏ l^8sæLrxxpòÑѱŸŸ??|âĉs©Tj@@@.x¼´ïܹSLªj@¤µ®]33Áoñeúø?)¥º÷Þ{¿à /xD/1˜«ííMÓdíh"±¢ƒýµWTÍÚ̹E…"{BII):Wä+÷ï×"¢åÅaQ´fÒZ×3“'52R¢¸ 1 &§¨Êö¬uM)¥à  CjÀSŒÂBRih­oR0àJ€•FÖ)–î­àW·©¹¦Åbà µ,²Ë䆷Ì€¨Sªý¢5wy""­™ªAg®-…|®2“ð›Á2O]W°J(Q¨6¬L¡r‚lFÙ€5’xéˤ¦Iìwb@ƒÁЂýB‰ë§âUŒtÖ.‰KÂÌÐÌ M5¡f¦ê21sm˨ÿÛÏ*÷¨ëP(Vxx©¾€B5Î@9%YÕ˜¥rôèÑÐÓO?½Õ4ÍÛ¥”÷› îµ@Ô¶¾÷}Ö×8yUÈwÜÑÔ××÷¹|ðK#“W›þohª~ÖUÆ…)‡V[¦æ}€ŸÀ:86®é¬Û¶)™L~<üùëÛ÷Ÿ¸É8äEÚàpš z*M_u½Š@iYŠ€¿)ºö3©TêóšÌ§öx;~|4'Üæ~ðú&?´1 4 –ñqõtZÛ¶cß¾}MB à  Iü;(tß}÷ýI^‰o}ê»oÆg¬u${> Áö”EÂ?>*i@V¬Ç¼rýß €mÛ"™L~ß™øÇ† —/+Da“ë# ¿U©¥*€mÛ¶õ3‰x~°1ê%4t„! ˆ@Â?‚)fhí`&°V[&”R•K’RʰA* Ckh”Fàk?A•$3ŠÁT`ÄçßÃ×wm‡p ~°V`Û¶˜žž~ö›ÿs!žáF¢†NX†€)–á‡, É7ZÞcfÀË£«9ÊétÚ«P¤ÇÆÆNß¿¹¥kÿà´áYõðǵ(Ÿ’5ŒßKÔ Í§ðGÞÞòî|òÉŸHWž¥W´æÁÁÁ¾Ì‚÷á¿1i,4¾† °Á>¯DýKû•Hll‰òØØ˜ `a)€ÉÉÉC»·®+Ö;n®d¸E Wj¸J£ 5Šzq8PõÖ«ËüíOoR?þøé\.÷«hkkÛô«K3Q#ZfyüÇðÃê)¿Zµ†’þ[¥ƒ 7ÛÖ…yhhhÀDé@ŸH$ôÑ«õÿí柳ïüæÈ‘#_¬6 XÀ¶m*‹·Ì:ÒPdù ª©¢f£ 4\©àI†§4<©}ï{¢ùIìúP‹|ã7ÞPY³½}ûö}¦‹§/½ôÅ-…]·äuçÌÛh™<‰öÌ/Ñ:ymÓoá¡>Wÿt ¿ðäÎçÑ/Ø/?õÔSŸp"‘H+ª¼¥Ü±cdzž8ö©gß­›ëøH™B"'—6o2xeDÁ8½)3ˆ¿ÿX“êW#Ó»wï~ÀˉDBV8HhøêÞ½{Ú¸qcÃUGR:ç¡'E}Ä¢³gÏÎ8pà×/¾øâ÷<Ïû€ùkfV8xð`ä…^¿û[¯·¼‡õÄõå—å–¿$ÑŒXöú¬Yþ/{“{÷Ž?›˜˜øR"‘˜¯¦0x=ÐàÎíÛ·÷www·Ÿ>}ºL&GœpÀB¥ªÉŠ*tüøñâk¯½vàý¡¿{ð‡ƒ‘Y"cëª>, YÄs±½'Äßù«-ůÿóW'&&þËx™U¤`Ûö4€£§Nz‹; Ö4 «ö¢Û¶íºcÇŽôê:ßÿå##¡dV’g5"/VˆpÑâ,Úb‚½»GýÙûb…Ç{ìäÑ£G¿ àÌj|½²Z'ÎßsÏ=úÄO<ó?üÉs“yc(S0Þ½ìˆxÌ@WcTon«þö¨>|øðå{ùöT*õ#Ó‰DbE»™²êW ®F»»»ïرcÇžþþþm·ß~ûú¹¹95>>ž9|øðKÅbñ.ðª lo¶üÎïJ•à ®0ü+ð€\ gk-°o«Ü,ù-Dz{_%œIEND®B`‚musique/data/32x32/0000775000175000017500000000000011715011710013556 5ustar flavioflaviomusique/data/32x32/musique.png0000664000175000017500000000332211715011710015754 0ustar flavioflavio‰PNG  IHDR szzôsBIT|dˆ pHYsÝÝpS¢tEXtSoftwarewww.inkscape.org›î<OIDATX…µ—]l\WÇÿsîÝ»ëÝøÛiâÔÄqE”¤¢U¨ÁPÒFI´R¤@Deó€”k¤‚©< "4¥Ÿ·±±ñToo¯)Ýgÿ À=¶d³ÙZ뇉¨m*•_?’ÌÕ÷ô'ª7rëÆoúNÚ7*¯»î«9øöÌc®ÀuÝí™Læ~ ·\›N7üîoCuNçÖ ÏzÑçÛc§ùd#GJ³Cj‚VaE€Ì FöÜï?ÔÝÝŠÇãAÅ®ëVŸ}¬ïù7ÇÚ`9€SEÆ®‚ؤœ*`}ø†h R ¤B0†€€Êž9ñÖG­ªå³Ê 9° 43# bTz‘€Ð¢8‚a¶ç­ •JÝÃYVЍ (*f"*¾—% ™ÕªˆÈRŠ A *] PNHÉ2Çå‘´‘% ¨J˜yI¨ò*Ë¿Rù³ü“0àg`åf ×(”€Ájñm) "$²ø{1 /‡\& +Ȉ¤e-!bDCàÍMv0• ¬s™°ÃN¬P³f&‘‚À,‚Ü! ûóV,mÕvÐÖ¬ü–ZËÛPegáûó“““#ƒƒƒ—™ð §e÷óÈÀ)‚“aY›À°—_<Ù0Õ××w:ñÄ¥ãgÏ^ðq<Ÿ€M›6ÁuÝÍ?|åÝcå8x-ÌLX0„¦§§gêêê¾ÛÑÑŽŽŽ;¹—ëˆdYŸV`ŒQ y¹,#bBž†)tóÝŒ´d†ÇŒLZC³¤¡+.‹Àˆ o€Àç’”wµ¼fJy  b,ÂX@iHEThš¥‹Áj3+&Ã…zŠÆ˜ŠJÀ%㩾j€òß‚ªÄ·ü–EÖ6ˆ „ ƒèn%p]÷Ó³³³û©•JÀ«@@RèÛ&=8pàÈÕÉ™ÃϾüvËådàLÌæHóâh„[Ы8•nÛËàºnøÚØøé#¯]ÞóÎu¨V3ùv \ ¯àP €ëºõ©Tꑹ¹¹,se€•lbbâ×ݯ íý@Jq]ÂØ,0 øšá"Bu,v÷mèºî†Ñ±‰ÞÞ?ÿëK¿ý÷|ÍBJfÈ¢NÉ:;;w¾øûžÔÅêV€"mž*¨#V þ:;;é¿0Ø÷ÜéÉQå#Û`…B@ XÀt{ ®_¿þ½?|˜ ç£÷#)ž j±H¹ãªÄ“Z‹7Wp]·æ/ûº_ŸÜ˜¬}€'„ˆ*± Fsq Œ1‹]›µ´´aÍß|Í  ‡mu,ï_üçåx<ž+9.©ÇøøDÏÎLmLÖ>@a'„ˆ­±l…⊆U6ajj*]òùkkµ’|>‹œ6HŒ´gñù€ãaKð9ò¹pöèÑ£?]œs @bòæ£SA””mÃRKÌ‚€Aq%ÆÄB‚¡¡¡ñ’_}}ý©ï·Gg¶úCb27á¾ÖØà`oìŸÚW›}éØO~yòäÉ7ïñtØSL˜õ™€‘ r>C³ &3Š®Q``à’ßÅ‹³ê;p|3óL[Rï ]•/XWä‰è°¼ô˜ÿrþ­kŸÜ}¸¿¿ÿ0–Ù’ض>2Yc&×O÷–ç~IˆzI<\Ÿçä{?þW®ë–}[[[ß~b÷®Ö®®®C_ݾ}oSSSã•+W¦öò™?&‰×J•åF‹Ÿ Eäq¾÷¡3/œK‡Ç¬b' €`ûóجÇå량é/Ö&纞þæ7Nœ8qn¥€«5kÿþý·hˆFæFrèñ­Ÿ)µÎOÒ{_iöÍs;‘yýø^üù ]===þÉæ@CCñg}+ÞÞÞþí¯=øà£¾çS¢?quß«¯þÀßãñøçêŒ>©ÇóJí¿·ù®»tÆIEND®B`‚musique/data/256x256/0000775000175000017500000000000011715011710013736 5ustar flavioflaviomusique/data/256x256/musique.png0000664000175000017500000006413511715011710016145 0ustar flavioflavio‰PNG  IHDR\r¨fsBIT|dˆ pHYsììu85tEXtSoftwarewww.inkscape.org›î< IDATxœì½y¼%E}6þTuŸíîËì˽3²ƒlˆEb„°H0šjDA£ü\’W¢¯óªˆJÐüÔAÅ LD„¼"Á°h`†œF†™aæÎ>wî~çÞ³w×ïîꮪ®>Û=çÜ3C?ó9súTW/·»žç»Tu5Y»v-"DˆP;®¹æRiݵkײFžKµ ‘DˆPe^1ùx"0ß‚`ÎçÁ#DhÔHpRæ[>â±ÌŸDáU$¯„üDYÆ{ßûÞØßýÝß-ëïïL$ƒ±XlÀ0Œå„~9˲F …ÂH¡PÉçó7mÚôÜÛßþöCl÷ÃÅÀvÏ@ó… "¨£÷êÞ{ï½ÝguÖ`ww÷@,ã$ ”PJ—B(c¬ÒÀÊf³OŽŽŽþüCúÐ#¿ùÍo²ðÅ€€5S"ˆpÄ`V\ë¦_rÉ%æ¾ð…¥+V¬ŒÅbƒÉdr%¥tÐ0ŒÃ0VBºK¼ òK°m{bzzú¾µk×þË7Þ8À‚#„0¡B @„–Aƒ¬xÇgœ1ØÛÛ;‹ÅVÅb±•.Á!Ë !f‘k!X9!„©Ë–eíÿýïÿ‰·¼å-ღˆ@$šŠ¬xÉdÛ¹çžkÜvÛm‹W¬X±*•J $‰Ó4)¥+MÓ\Ié«'‘ËYýJ@üMÉmß¾ýË'œp¿(¸.@ƒC‚H"Ô °âäŸþéŸÚ®¸âŠŽŽŽÁŽŽŽX,6@0MsÀ0ŒåŒ±DØëIðäcŒŒÎÑýJГŠÛÝm&ën‹2ÿî6\!„ýÇi§öÅááá,àÐ@ˆz"T:Yq¯îªU«èÝwß½h```°££cÀ4ÍX,6è&ÛV†± Œ|¶m7œàüœ E»ÇÒÆ®±YcÏø,Ý;™5ö§éÞ‰ Ý;–¡™B1°}GÜ~ËIK ¿viþìU½ ”2ñXŒ1Ò××wåSO=5±fÍšo)»°Ð@D@„êl@>÷¹Ï%¯ºêª… ¤R©x<ÎãðAÃ0VH†í¸2Ï1iGÆf²th4mìOÓ=ãcÿDšî™HÓ}ãzh:GmV»!\Ðn}öí'dÞtÂÂ<àà{Œ±âÏþó¿yÏ{Þ³@@~8Ð/ €W!‘l@ÿë¿þkÑš5kººº‰ÄJÃ0MÓ\išæJ‹ÃöÝD‚£P´èÞñ Ý5>kìKÓ}ãcßD†îHÓ}Y:“+Ô”Ù¯„ó†Õ¹O½í¸´Aâ‹BÍf·Ÿyæ™ïÙ¾}û4d°ÑˆB€£õvÓá‹öóÏ? ««k •J­ä±¸a+KYñzÅáånÛ6¡”bj6GwŽÎ»'2tïØ,Ý;áºê“:<•¥–=£o~ôû‰ç÷Nßû›³gRqÃvÏ›1ÆH2™<öÁüð 'œðÏ Ù¥÷\"àÆI ü…^h~éK_Z¶bŠ4Ms€RºÂÇûÂÎ¥V¼R‚Š90•¥C£³Æîñ ÝïÄáÆÞ‰ Ù7ž1¦³ù†ZñP f$Àa«à0>õº•ùÿ}Å©3¶íp›{Œ±â-·Üò®›o¾y€4€œÄ`ݽ€ÈhqTIò²Vü¡‡ê;þøãÚÛÛb±wÕ9É—!¤M0ÆÓ4æz!d&S Cãiºg,mìKÓýiÇUŸÌ“£hÍgF ÌH‚™I03áηbA3c0fæöuï†=ñ7ž°(ñÆãä !Œ{”RãòË/¿ðæ›oÞ¹G î^@$-€:’œ¼÷½ï5?ýéO¯X¸páêd2¹*‹­4MsÀ4͔ҕ:tj&Á)¥°,FNgèÐhšîO{'ÒtïXÚØ7‘%{'ÒÆdz~­¸í’¦Kv# ;–ˆQñ®5aµ/†Õ¾æô~˜Ó»Á—~µ9õȧßXÀÂ… O‡“È ðïsä‰!z)òkI~ÖYgßùÎwV,]ºtuWW×*Ó4W†±Ê4ÍU”ÒåbêÎêAðrëD‚3ÆH:W »Æ2t÷ø¬±gèü³b14 Zÿºž^$s€B~c||ü­ÝÝÝ_Ð/’^ý樊ä–M†§³Ô'ù,Ý52kìžÈ½ãš/ZóâªfÜ#·™pÈmÄS0ãn|€‡Ýbâ»îî_ˆrnx5­^ëîÏu'õ ò\Ñ"<ùÇË(¥&dòCøF½z"¨"ùO>ùdóé§ŸþB*•ú€¿{„#¿.éfÛ6žÎÑ¡ÑYºkÌå¶{dÖØ=‘&{Dz4[ >mÖhjÀL¤`&RˆÅS0’¹i¼ ±DÒé7wë\u¾"„L¢ÑÖV)µ_"BÜúGè÷£[EH½»U à&REP<€†$Hj‚jù×­[÷Y‘üâö:œ¥;ͻƜ‘n»Çgéî±4ÝòHi£aƈ%ÚK¦\²·Áˆ§K¦@c Ït{.:|7)䕚ˆ#(ÉZůFÔ:„Éÿ¼†ÿ€6 ˜×‡ª ëYš3"¨€166vY{{ûu:òÛ¶MöNfŒûŸÛ—Ø>±#uÇoO6# g˜&bÉ6ē툧ÚK¶#‘lC,ÕÃŒy-[&5“2êœàú|šÎ"Ë µJiT;ÁKﻜhWÔ:ÀÒçoúúúÌññq1¨»DPȱÇk ~ @RµúÓÙýØÝèxfçx]¯/5LÄ“mˆ§ÚOµ{dO$ÛaÄœêˆ6/"WHÁÉJÀÀ¹BeÊ”•Ðà&•dð5QCí=áçÓph Ì@,Z´(1>>ÞâsDPDëÿä“O^B)=I%¾hÑëþõ¹Žç†&jº¶Ô0K¸$O¶#žjGÂ%¼ úÎo)rrMf¿*õÅ$˜Î] DrV–(³®daõÅl»5½e4%:;;y"PýÔ ‘T€œ{î¹fooï'?ÓÏ#”R|ñþÚÊ‘ŸPê»ëÉ6Ä\+K¶#–HÀq­ý#êî¸Z¦5Æ:Ù—ê(š˜«Ð-×° KEM(–õjAT€iCý¼†]]]\†H*„ù§÷Ýwß[)¥ÇªÖÿÅ}Ó±ûŸÛxH„ gÉ Úz žlG,™H.’]ý-Þ}µÔuJœx •z%9 ó4ûSª—Ú•öBQ AçËå@ã„„===|8pC¬? @µ HggçE vóBÈ¿oØðÑ !Xrü™hïYàï lÏ₎üån?ßTuÇÃØ¯lô4‚2Qa ”5ÜÐW.×X“øÔŠ » ™LÆÑ@ò _|”‚ ozÓ›âñxüµ¯?+Ò_??x¿oåkÐÖí“_µòò]%^‰üÊí'!ÿÄ3%òOaŸD.G°\=Y¢) Ì[)±Ip·Ú3 \£#Ú€­ÚÞÞÎÛSÃD € üY»víë(¥Ý¢õgŒ‘_?¿?®Î(K ]‹Vɨ%›¿ ¿·J!ºu}¸OAse!JI5-³æVLÊo[êï+}ì& ‹®@ (–·µµ™h õ"¨¤··÷µºá½÷ýaÀú·÷-5„(«ïu$"ak] /~TÁ[.o[V‰ÐC+e„$¤Šþ`%ë†î¡diE‚èÚϧB’€þz¡M !@à @å (!d1éŸL¾hlÚ=ȧt-\!mÌ—tî±j¡eâù•Hˆ$…@ôÔ}êÈ[. ¬(AšR¡‚zìò­»³¯=@ëÖ š‘€6Q„Á"\ílÂÙDÐßjšæB^ÈÇøÍæ‰:×¼aÆìì)M”Rktä¯ôD5fLÐ¥ –K„æõ⺹ü»Œw  iÅáA¹i(4@H0‘H4|@$e <øCt著 Ží§î °»UÊõæ ?ŒüºFqºciª £[ÊÙ®ŽUlXáåö?/ I-ýoñx<Ê´J)]È!ÀøL.pÍX\ÚPÛèJ4ÄRä÷”ÚRT(åhŽ ŸK)ÒTB¨Š›°|®ew×@7b×L#as9hB€à-œ#"¨Ä0Œü`Ä‚ãJNµþêÞÝWÈ.‘¾„Èè–+rýK¹ìÕ¸ó•ü®bÕ®¯¼R¶©rù‰Uc±˜8°!R @õLâ9“ >ÃO¸Þ½Ö-H†%>áe ðR~‚@ˆ»V½u¿EMEyѯ« ´Öj5o@jÞ¡ ƒišâ¤ @ÂH*@cw<%LÍedVÕ.q˜åæ|“‰¯ß©HR­W!z ¡f·27¼$*±æ!ǯO(Qå<’†é…n PQ?“s2™s‘Ð (‹Ój°; øpV±àÿ‘¢i,qünk ÊGØ2ÌÊë¼€J–ÅóÙµxòäªr}¹úÕ¯–cÔ !t# Ãs 9­Hª±,kJ-ìJ™¡ ‘C»GõgAùÃlÛVpH±Î»ó8ôçXö/©µ¸üµ4Dxç3Ð%+ ù® "¨–eB€îdа­¢vûj¬¯juu BUt" o£S,ÊjC‰ºsµîµŠÑHh=[z®pÌJ7`Ct,€*Q(fÄߌ1Ò®ñ˜ ¥µH 9¹õWB×<áPX,¯¤õÃ…àï*-³¦nµáA#(ÚCÞ»|›1ðd¢(!@CBHª”eÖ´›Ò!AÀáVËuÍBX$býAw&ÿ-TœS+­pc5Œ™O÷¾b„¼@-‹Åbº@Qp$B{×4n³6Б_·¯ ó4J媵¾úõ!Ç*¹¿&ºï2 tíàX!Ì‘4µÞ²°íŒ º¡Â¶ÛŠcæ¹»üe«×Ù/ÂÌôy€@™ûn€†žd$Õ#pCÂÞÈ[ñNB­²2m˜âÿËô/Ó´«Œ¿Ëm_ònP“ %s†FÁšoO”zôlˆõ"˜Ê_¥tY¸L¬(@:‚hEå(u¼Ð?DãE”¨~¬r˜/cí,ç3@1âž­6Ð.¤aNì€ê£W?6šP îˆ F¨S8…ÖC3ußUõF6ˆ¥óE~f`2`¹ l—ä,ŸqÈn[sر šƒÝ¾¤~'«A‰nÃâ €ZPŸ›Qµ28H_—“9BÀlع ¬|Ú!y. ;ŸÏ€Y…òÛÏá¸F c" ü¬÷q#˜ø4Ö:ð[#bàUä_!ª ³Z壡ªÃ`r°³³(æÒÙí\v!×èƒ7š?ÀBˆº¶¡ÙÏHꀪ]ïJoiˆËï}³R17«Œ+óÄ'»G!—†•KÃÊePÌÎÂr-:kb~AGœ ,h³ûÚØ@_›½ahÜxrû¸Ñ´P Š@3FFÐBðøîš}¦Ë kDAZfš²yc6 ™Y]k^̦«žËÀn¤Ë® -n²Á¾\Ðnô¥Ø@›½jA›½ª?Å:’1Û9WçJ Og“Ob¼içÆ¡æ4ä’€-‚Šo„êè—s÷ËïÌ0RE.€ikB Œ` Å\…lùlÅì, ÙY³iX…ÜV9Lƒ`EOÊìo·ú“XÙ×fö·Ùk¶Û :⌢<]ëŸÿ€Èh%T6ðGè§« 6X-n¶‹àËxÓÔÓ‡LZÐÄý.æsÈgfQÈÌ ŸÍ EÁµèÍ"!ÀÂÎèo³ûSle_»½º?eô·±•½)Û4¨–äÀ\‰ÞøAHežh"˜#*XÒú—èÞ $ûà{ºcˆÙÀ°æVn[ä3iä2³ÈgÓȧgÏ:Ö=ìMG@g"æÄåý)6ØŸb+{ÛìA×eoOÈ.»ˆz¦ü%(fÿ£^€yDèÅ·ç8Xká•ô¿ü“é& ß¹ÿfÛÁ3³ÈfÒÈefw ù¹üU!fR¬èMÙƒ}möà‚66Лdƒ ÚíU Ú쉆’¼Qf@à @õ¨Ó ÑòqýC ¡¬ðsÙ r™YdÓ3Èef‘KÏ:ÄÏeªì¶¨„‹º’lUÊɲ÷;qùÀ‚6¶¢'iTï²7Šäܪ …âØØØÔ’%Kú[á9Ž0(“‚rDÏÌ#jºø /„­m?ï PÁ*ä‘KÏ"›™E63ã<í¸ðö\F¿U‰®dœ .ä$O²¾v7ËÞf'cïÒ l×H¢Û¶Í&'''‡‡‡Ç÷íÛ7¾k×®±—^zitÆ £›6mšZ¾|yÛæÍ›?£v¹5ÇèìʹD½GBs‚ `Déø 9 ïÞŽÌô$r™Y‹ÍëJ‹›}n–½/ÅúSl°¿Ý^ÕŸb½íñP—]|‡"‡f°KM „°Ã‡Ï:thüàÁƒc»víߺuëÈÆGׯ_?6;;[`àßüÃ0Š”R»Ò!Ýóˆ(h1Ô0€W^ ®+—õgHÏÆŽç×5”ô”,éN°Áþ6{ ¿ñ>óÕýmö²ž”MÈÜ-y-äÏår¹‘‘‘‰ááá±={öŒoÛ¶mtóæÍ£ëÖ­=pà@2Á‹,å#–ÙH<Ï«ç2ŸBPb$ Z­®ˆ JTÓHT—]+š<€Tß­29²¯näïi‹³Ámö`¿›|ëk·$Ùª¾6;3BºÒXM©ƒJ oÛ¶56669<<<¾wïÞ±W^ye|Ë–-£Ï<óÌèÿøÇi8ÄI,[$¸X&~øv íèè°(¥¶mÛ˜_ò‡!$PWDPôÞ»ŽRЮÛÈ_' ÔMó¹LU'š4 ö§ì×e_ÙŸbn\κSéJ«€ìljjê°—¿üòËã›6mÙ°aÃD>Ÿç–\µà"¹UÒ«$WËUÑ ÌÎÎNƒ:IHÖ ä硟èó8U€H怚¼ —^€fŸ%XÚ“t“o)Ç’÷'Ùêíöâ®d]\ö0”"{&“É:th|ß¾}{öìå•WF_xá…±§žzjtbb"9.×¹éê²Îš—²þ:o¹Ë³»»»ƒÂøß᎜w!Ð òZ µ4’Ry]1ÏûóâAzøÒe'æ/:mI¡ž.»:²‹ÅÂÈÈÈäÆ÷îÝ;¾cÇŽñ—^zitݺucCCC³QgÉkµæêǾŖ9 ñÎÎNoœryò7a$ æY€“‚Ö ‘4 º<€0ºÇ#»8ò¯Tá®®g·•JtÛ¶ÙÄÄÄÔÁƒ'öíÛ7>444¾eË–±çž{nlÓ¦M¶ã£ªD‹Çì¹Î’ëwârÑ™² ¡Œ_I5MSÿÈaë3jh €QÞà1~”W鬿à„l?Wˆd?|øðìðððÄþýû'vïÞ=.Äåãétº€êâòRÖ¼T|.fòu®»hÍ™òAÈoퟀ%“ÉÖ£º !ÐðsŒ`Ž`Œ‘ð¡À2µe[¯ÔcÄëà¤C¹€²ÙlþСC“ß³gÏĶmÛÆ6oÞ<öôÓO4¤„e#»<–ÏÃñ2p ÀQeÍë…y}P7VÄw-U/ nç @õ¨ùâ«ïô#ÐLöá® ›ý·ÒCÁ\£Ëê‹õ$í$ç „hߌ­ÿãçG¢¡À-Áb„’Æ'¶²–ÞÜQj9=÷[×%Ç^-D/‡y±ú\ywpo ;G­ F¨–ÍP´‚w• á>6 úá“~WÍpCç‘¿µòF †A$å!§î#â4W|(ðèL‡³E¬à3&LÚ^(ÓаÎ"!±˜þuß-8ép´†3Ìd ˜É:Sku°ú @¨äæüC0 Y‰ÐÈ´ôðÑ–ìæŠ†`L¨ n"hlÆ-X8œg8\L$ nÄ]Ÿ‹²ý! Á2" ¢X,òYo"”FÅÞo£³‡3ú©Þ”P z¸•Pqòˆ9i÷tÈXN§ “ F¸¨®ê @•ð¦oʱlä‹6 E™BE‹9Ç×ϲ¤ÞËèa –ƒ6pômºÚÏ_°BžÇHP f$(ƒAÅÎÀÒw›1Öô×IG¨–Í·€¼Å·Ì©, ¼]7XZÝ DPæäŠùÖ]xΟY ÈY 30 ƒI b” f& ÷U‹nÂ1¤á¨ÃH#Q`FH2gîû.¸Dç¤W;ˆð_³ä IDATª$]CÀH þÖ_ñÞ‚æßE–ųRpê˜Ê‘ÎaŒ1ÌæŠ°4]"ÂW1œ³ìÊ€1æxs6P´ør­Ó§ûç"xtÞêê÷X"h tÓy©Ã|ýÙÔ„Ü€2À²€LÁÆtH²H>&‹¬~y„^—t¶›1PáÆ18V½è¼h;¿KëïÜlA0ƪ;ð„5âìâAqM%ã¸åp­FÔ XºW–1ƈe3ŒLç7Û\´2fE;8¾£Iˆžl!hoDInj2y‡}„:%E ¶óŒ„ Jðn\ŽùÔŒ•F#+GMDò‡ù2iH°T¹#Á³ø^ý°@%O)òj@« lÖ3 ‘ÌånRpX¯~9TÜ…ZrJU–¿êÚ 0нÐŽŒžhž Ð P°öb¹¢a"PspÄ(Ÿº#€FBtù•‡€T¥A0þ3Í ÕfL#u4#üE o2z¸…PÕЗV–§4¸7÷埪¢¦#!ЀR:×E¾—â›Åò÷Ô‘Ô%“µZ/ ˜Ú““ƒ¾Ô˜Ž<€2P»[ñÍ@" UPÕ«>Ù‡ r˜ ZüjD År« e¯‘xÿ4÷2J‘Ð%ö%ˆ€â)¨ûàP[C3=ZÖ 0Ý€a&EÔ…óˆšâ0îÎ*ÁUð7sÿÕˆHJ roi~.c3†GP=*¿!%x[Tt(þ<{ð’ÈÐcþÚ~å÷ULèFÀ<#ô„ŒÓÖ½qÃR" †5œkDü*ьᷕ¢]º‘Ô€Jß'¯vïiÇxËzPë‰(‘ŽŒˆ_!Ä{ùjL FÐ h¬æœ2YÂFW€Èí/ÓlçàtCÝW¥QÇŽ Jè#-µ_Nð¹ß!" ó*DÔˆÖ ´!@Ý…=€9 ¬Ë¨íó¯LÄq%Ç)çÍ Xªò&\É2Cv‘ÌŠ«&¯ -(!RÑÐ Ö!eÞêHt È68 Ž4ûüåß¡"€Þ@%ÇmBßq„¦AuÿëŽHªDuS‚1ÝW‰A?âqäýDIÀæ`>zÅ$ èØM˜†,€êP1©”˜_„ðþŸPŸŒA:¸Å»v#h‡ÿú*q[Ñ8€fa^/g4¸E@€Òà%+o¤]’—!' Pöú'Ç"!¨óÑ Xâ&E#d¨Ý@)p~0½je3âÆ£º^€ ˆæS7DP%j¤ˆ@ÀÕWD@Ü®“¤<á‚249 Zú›QÉìÀeÁMø©!A)! åç‘‹È_-æ¡@—ˉ†·(t9€0èÚRIpÈÞ+çèGDüÒ˜ç@ZÌËùDP%tqb)£!õýëÆèb}ɬ­‘Ð’Ñ å~iÞ PwDP#*~„”…^°îÒÈ¿à¶P_×¶.€b±x$´ý†&Hæ„òo úøAO@îà%LûCAK=ÎräBšˆs>OÄA)1¯;"¨U«pÉwÿA#aBPÛyFÄ?6 KèÒ’€G$$w¿BPê Õ*;dô0P¥ @Ëöý‹ˆš/\sÍ5sˆ¥‰DrŽòoöÅ¢Ê)¢< УtØfëa~.aÔ xÀO 9}]ÒOJøÉuÃ&%áí""}•hš'P…¨GZ:ËZ1S€#(ú@X¢P ª{ÃÓ¼£a]$5 Rk!’¶œxõ…@'œ_<’x³¡½6Œ12½)â]ÌÞr£ @*¬2`ò&!B ;nhãˆÈ/ÀÍåHÆ©ö¹Žf£!@ëÌ|ä ºÂFüsŸ‹ Ôq7sÖ—0I”‚1Æ!Zª»ØÒ ½žP·€| 8FÚ¶mT¼Ó&\=nDø½lÆ‹AHê‚ðIA™–à\u Dª8—WUì_¢§F7ŠÎËd21^±¹]%‡Ë5å—ƒ6‘4 ñQFÜJª7À· =Fi/à¨Cé9Q¨æ›Âiëæ‰'ž˜úÓ?ýÓ'Ÿ|òktojÁWƒ5‘4á]z»ìˆx¹À¯XC+йþG¼ Ä¿9ѹ{o0~ö³Ÿ­:í´ÓÎèïïm*•:Þ4͆aôQJ;yüoY­ô5oÍ‚"æ^$بãEP=¤›Q²ñxl/!€W.ÔôWz_:×QsHýÛhI< HzãsŸû\ß»Þõ®Ó/^|z[[Ûé©TêÃ0zɲsÒóeÊ?‚Ì˵ ë,‘¨ÛyFÐ xî¹ú‚@É ¸ÿ‰! Ä†­ã™6kO…yýõ×wô£}ûÒ¥K/M$¯@E²‹EoY,W?\øqõ—y^54êhu„vÓÁ¹{pW2ÿBHÀk¿ÚP‚øæyç—øÞ÷¾÷¦¥K—^ÞÞÞ~!$)vçÙ¶ ¸&Æ× ä¡ÔMEØA›‘ˆ Á¨D7 ¾J ¸úñׯ_ÿÚc=öQJû8i-ËÒ>Œìâ·°ü*»Ê2"¨•7%æ—EÀÙ•./À7õ„ ìDŽ’¦Fü'Ÿ|ò”SO=õ†T*õ&ÁeçZ ù†§³dçè,Ý9š&»Æ2d×Xš fH¦`GŒ)!Ø?™9J®jeˆ |¢ø}ýÁ¼ p4Š»Ï“zæÃ?|ÜŸüÉŸ\ßÞÞþ6Æå®=ÏÚ—"ÿlÎÂÛFÿÞ2JŸš¤»ÇÓ$[hí©Ò+˜ aˆ ÁÐŽâG”‚J¡i4-©!ŠÕ7˜<ðÀàŸýÙŸ}²½½ý2FñUxéà yô¥ãÑ—G膡IZ´êý§Î{0êlhß ÚÞÜ‘R¿ ðCç?7ÌMZŠÕ§Œ/ùË]ùÈG>×ÙÙùnÆX\ˆñiéŸÝ5aülý^ãÑ-côàt¶q—ˆ°’ÝuÜaå#5ƒ»êŽH>Èû?d0Ð Šó´$tVãÆgtÒI·QJ9ÉE‹/ß²mòë†Íï>1d<;4ÙðÙ˜‘@±g G/MŽÞ¿¬à¹ú¥E Ìd!8’¡<‘güñ‰ßýîw×õöö~€ÉG扤çß³¹"ùÙú½æÚßí2w§«W=b€ÅR`f v,é~§ÀŒ„[)×Ù¹;v¼ G—ÿD$ ƒ?š¯”5Þ€ÿÿ‘Û—ß`Ü{c_|ñ׉ÄëD«¯ŽÎžÎÒï=1dþtÝs*S¬ü ±ì¶~Ømý`ñ0#.?ŠÍ‚š:¯>°á‡Ž JTó y0é'ÄúÒðß 7à /¬¬1´ÒÃ,ŠËo0_yå•ËV®\ù%BH·jõý#ÿºn·ùåÿÜ;œ­€ø„‚¥z@Úúawôƒ™mà”¦îõäWž/(¤—†]¿z @PòI=”Èü+ÉA@#R¡ŒV ºü .Œoݺõwvv¾Ç%ºÖêo>l|úç/Æ6ì,ã“DXßJ }1<êɔіêsb260ñ‚ÆK8 @!Z¨!/ÎaQ%ÿ±Ç›|æ™g¾ÒÑÑq…mÛTgõ E›üó¿»ý·;Ì|1¼ÿ›â¾o,ÙÐFçz3ÿš“àkéb¾ŸsaÞMñë×íúkv¦ãQp¤C ¼*€¨ÃµBp@!¿yúé§§{챯···_­¾eY†hõ7 ›Ÿ¹wslëðLèŸK¨Úµè‹·y×…€yÓªQ¥›µÜ¢á¡Pà¬wÂ4æßÃ#I…+D$U¢š·ˆÍ¾7&GTòŸwÞym<ðÀíííío ³üßbÈüÒ/Çl »œë@@»—‚,< q?7ÂB|K/’žo+N™¨uÿá¿¥YÙcð…€ßÄzß“h$àQ uº/":Ì ,´.Ôlÿ[Þò–Ž_üâw´µµ½E$¿oý¹ùÁ-ñï>>œ›8q<‰§@ŸÒÞë’P®@ ¯sݨ0–Âsÿöc3I äiÀ«…B Ô©ôtªª]_Æ;ÞñŽÎ»îºë»©Tê|ù E‹^_<»?@~B! ý ýÇ„Âë 8È͹^Aq†ŠÙ~‚^Ò5 ‚{!l zŒðzGCH @ƒÀ­¸Ó€ÂE(/­Áõ7ÄøÃÞFþ™l^{×âo“b)ž¹§©.KN’n¨Äxç‹Çç½*1^÷‰ïÀïvÕ0– " .h„@ö˜çaT]¨z•teý €‚2NÆXÅIÉryfyÀº–MÃimÈo0·mÛöWíííWˆƒ{8ùGg÷®}.¾iï”tæŽÕhïJ‹q¯‘'”‚›OÜØßYÁ·w¿ùV¶Ó¥T½¤ž’íiæX{§¢'6/ €"­ØÈòS±ûî»ïÄp§ä2Dò˜ÌWþˆøÎÑY ù Ì…k@úWûŠë—ðD„Àµ¼Tôx}æó˜¿A2Þšl?áFAcõI@x8‚ù‰ú£aRÿªÍ´S|™7f@žƒ. Y, uò‰rPEÀo¶Ðzâ •pZ€q饗v¾ímoû!¤]Íöç ½æÇˆ‰ä÷ˆM)Ì%'€v/óË]wž¸ŒÝ|ÉÚŸÔDÊšBü“%Ê¥Ô$˜KjÀM (" V÷=‚Ê/V ,¤E½uDȔҜðü›0Ž;î¸ø7¿ùÍcûûû—¤R©…‰Dba‹mÛ^ÜÕÕ5 ¢9ÛE’‡³~;†žp Bôm¸<ý×?¾víÚ›b±ØqÅbÑ#>·þÿpÿK±?ìšòB'þ^Nb˜ˆ-?´}d]¬½Çô@ž¹³ø@¨ˆ×PtΉt›ÍZsÛsy•PbfY€ñï|gÑ%—\rqWW׉Äi¦iö«óɉÓJóoõuåzhH-åžTo@Üáîa €0î¼óΕ7ëžãqÿ4ýû_üÑô7pÿJJ_ùZT·ç†pÉéš[Ï€wxò $DˆÃ‰Û ’Rgá!–Iq„_Näß#<Ä‹—B¿&tëc¦¡Ý,—ËEP 4sÌyÄÿä'?Ùý±}ìÏ.\xI*•:€ÉIlYáÓO>ÙÖ@H8ÀÇ©q7!ð.è¼~ún½s+ÕÄße—]ö1Ji‡èúÛ¶M'Óyzí6Æ¥ùøˆCXsñqùýu~WçÞKåbUçÂRL¦ÊךHÄçuáÖñIíî³\Œ/†Â謁Ä ½Êg2™H*AÈä’ôâ‹/NÝzë­o^¶lÙ¥©Tªâyäæ’Ö¬« Xæ]P½^Š€´óG?úÑ`ww÷;DAä£ü>þÓçcâä<Ûot/…Ù»BNv*É>©Ü=š—äcÜ€ì%¸]vþÈ?æ“R8muX¯çt1_äxÞ·îÚz=t€¡ïYN§Ó¼2«ý€¥qD @ñ[n¹¥çÚk¯ý`OOÏ{)¥=â”ÒâûàÊÍ#/’{"'»Æ2dßd†-FL Pb„íÕÏR£N.¾)˜Ÿ´³Öý­¸©LZD³Ã%ñ»è¢‹>Ê‹óiºùç¾?ì7»eTJúB@0—ïóÎ#¯$×þ5E‚oÏ{ÄŠâõöêÁ'´èˆÙ~÷èàH¨uŸ÷€h@#Ý€Hþº‹À+ê#§ŒO|â]7Þxãûûûû?H)ív3Ñž{64à>W°È³»'éöC³t÷XšìK“¡±,Ù3ž&Ó•LL¡AØ«À½7@j”²Ì;øõ6¿ûÝïööö^®’¿hÙ䶇_ñã~ž±§&̧ÔðIíþ/’ŸgÛÅëBˆæ[ã1ˆ±»¯ L±ò \‚odš#ë¥s @"¦÷BB€ºzGœh&–4®¾úêÎ[n¹å½ýýýâoŽáÄWÝS•ü;GÓä¿·Œm¥ëvLÐL¡>a—x‡Tò€o 5ÛÞ[î¸ JÞ–À¼üòË?‹«=#÷>³ÏTû€Ä–">Æë2Ô¸Wà“—[bI0çnÐ5½Z1wç·ïS©Û1UtËYûÀº E¢Š@ðìÊv^=Ž(P­þUW]•üêW¿ú7 ,ø°a Å™fTÒóïlÁÆã[GG·Œ½õÏ,òÏìT¬?`t,RÝžrKï]×’«3'qƒ­»~¼G€ŠI÷›‚È3øÿ1Æ÷ˆ4þ¡`¡?*)deÝIS»·L&S€/üSW´¬hÞ cÞsÏ=Ë/¹ä’¯&‰ó8ÙusÉóH|ÿwCF%“KJ0â m=@¬Í!{<å?–ô¬×ˆ)å°Gl·ŽNÜÿüí!ð*µDÀïñÎw¾ó<5óÏ#?zr·9|X}C]¸FÃ/²\Ɇª×R2ú^/€{•\ß\"šrÈ×Z8’þ/<ž%àÞBÀcŸãÍ ¹©@Ù©+º{%„°ñññËý¨žÖ®];ç¦Ñ’ ›NzÇŽ­X±âBHoØŒ²¶mÓÿÞ2bÜtßK±¡±Jc{âX¨ö>¶~ Ùþx)à8óæùgÊzøñeÅï4B žÁüAégÉ’%瀜\eä{ïò­¿ûM»ƒ$;%Û'&'2¤X]š UH1'ÀÁ¹ÔUSÑ“ð¯á",“% ÂwÄ*¨47(;s ;°åÁƒÓ‡Ê( ŸºçZNT—ÿ¬³ÎJ=òÈ#7wvv¾KgõyC<41þá—/Å~µi¸¼Å§бèèÚú@hÌq)…*Þã¨BÜé­“,˜^|——Ûð#Y¨€8[±À’zŽ4Âa pûþ;;;ÏV{R^>x˜‹ïç#„P Vɯ$9ÄD›ø(¯|pîs1E„áuª¶HH‘Ï|Æ`¦¬+ ©¾?Î@dc¹}‘bÄÊKeq“â4Áàï|ñÅ' “_ôª:õRh)P'•¼øâ‹Û~úÓŸþs{{û[ÈoÛ6ýéú=æ-nMf ¡û&„fv÷  {ˆû¾7â>…â»’î7ÿ9 î§g±8ÁY9p~èBïX.¤‡ÔæÛü;à÷ƒ~ö³Ÿ]˜L&×X–% Àÿ¼2]ÒÖow–‰ò§¨ÏÝ rrbUљ䮋¢é•éXªqd±€7ã°$:¡ëŸ Zÿ“—w2M=ûì³cpˆ_€,ê_1'´Œ¨äç;ßÙuçwþ‹;µT`vÆÙ>|Øøì¿oŽ­Û1¡µúÞPÒxìž•@Çê·F H®ºèëtE‰To„¹ÂÀcT¿ÁèD@ àm&—×ä+Z@(ãÊ+¯<@`ÕSÛuÐ+ç<ñ‰ž›o¾ùÎT*õúRÓIùÿné^"ÁGŸ±TìÞU`©^ÉÅ' T ºÆÝW×Q—©™½:¾{ B¤F+‰€· w"oÀ]§wóy2[]²dÉëTòÛ6#ëv˜¤z½eÉÍ4aïMBQ-RÚîÝbLè´ÓYrNP•üÌ÷¤ß±þÙOwGÿ€étº¸~ýú yástæTòÿã?þã‚믿þ‡ñxütݤ’–m“Ïß÷Çø]Oçò’C`4«o ìÎ¥Þs梵'kO•PŸ“\´\òÃ)JÛSâ~¤ðJ ¸š˜"¤Œ¶¶¶•êS“;FgÉdZ ½õºA„Êäu>ÉçÊ·öÊ7xH%¸þÒž$I üâ¡ßjLÀï?UA<ʶ@ó³â³‚ÀK/½4iYVñ³Ã€ºÚƒy%ÃlÞqÇK>ðÜ‹ÅNâäß"“ÉéuwoŠ?´ùoq\7’±ÛÁê?̈ƒ?þä–‡RçäxßûF£)ßž—À”r)1FàGüŠe—¼¾V˜Xaÿ|Yù, „´€èŒÍä%~D‡ï ¹×Ê››O´ÉÁl"Œà÷„ùWÆÙÈ˯½óC±Çw%>Þ«³ür¹ê!}ž€xÇbß #}jå¥ÝI¶´'éòàÆÇá“?ç~D .]€@ xpîqõÕWw}ðƒ¼Ë4M-ùÇf²Æûø‡Ø³C“òSfÎK¢Øw,¬¶~gÉw–¼Àµæ²+/ƨþ: ±]¡¢ï®Š]O޲0·Á2o+&íž7ÀÏÇ/ŽhÑåÑ€gø)üqjqe¶`É;õ_Ô ˆä—=#ŸÌ>!½é»™oÝù^!BóHÌ…Bý«UâûžE%ä×|‡Õ©ð"ƦöÊÎ;¶O·9[·nÝ(Ògá{ø@Ýnò¼ €:—ü׿þõ/…‘×è¬qÕ÷Ÿïp2ñä¸$.v-G±wµóþ8wÿ>éÝo¡ñxÏ‹ôDKeû󻳄GJÅ^>¾]i¦z”ܶ4ͽ//B@(¥ À÷ §{‘'5<µóvÊò`pûöíS³pÈŸÆÑ–P'”|衇N¼‰iæ’?8•1Þ÷ýçò»ñ;5_xì¶®U÷]g1îû ©¦ Z#^À«8û¬ßð<7–¿žŠÁIáe“¼ßðG¦ ÄÕ ü:¾Ôõ¾×BIª…Ò”_^MâÜ^`ú=·œø" ^§2s•ØR›‡\ ÄæWDTA&ü‰¤‰™Nt‚ÚK Ô«ð¢ÑüaÐìd üÃçHO¹ñ?»ÿþû÷À!? œ|€GþzÅÿÀü…Î<}=çŸþ?hS³ý¹B‘^sׯØðá,ñ-¾kýiùÅ'ƒ%º\×^Iêy$-¿†ü‚ êÿöÏ¿hÒmßý·îþüõ|ÖZáÍQ~#ç Ší¨?I„.óN8.€šèHhÞ•RÌ8çkCèõ€çúÛ€ól>ñ½›ùBIsêðB¬½UÊ•aê²B|^>'òWq3tÖÿØEì‚ãö’Ïç­;ï¼s|˜ãHPO4UÔ¹ä¿ð…/|9‹­Vg•±m›þ¯û^Š=·k’z–ݵþ0“È/>ˆ¥|«¯X|G,‚^€N$ˆÀB9;Í; ¼qòð1q¶XÀ¿[ÜõwÚ¼³?þ¡f„@,¬|™D&“9ÔÖÖÖ+–½fQ{àììì, W(¹eW È$$`°½WqÁNÅ|¿ß½ž~‰|‰—"ñ…õa¡@½ÈOŠY³#òkÿl¥­ ß}ôу£££Ópˆ? ?L›M IDATGÖUª|Ù}íP]ÿ;v¼»££ãbÝ}w¯Ûcþtý^#HþòK_둟ÀIîQ¸„&N]J²‹®¾Ë6Jœ¬€6¸e×q!aB=A8xß¿+|ïêâäæŽwe‰òà5*å¶2áãï»Iƒ­Ènœ°ÉÉÉÝjá`;K˜J3²ò`î˜wæZ|ˆäƒíþq¶[Ç·ºÌkå6¾`3¶²Íüõ^™»ï¹Ž³ìœ‡ŽèÒ>QùÀœÚ õÆ.èˆãŠ3—I÷ˆ»ÿ?þñwÀ!ý €ÃîrN îÖh¢0®¹æšÎeË–}J—ôÛ04aÜôË-¦ÿ$žëúSŠÂ“#áç$WžÈåî:Nv·ûßû–ÆhHîÕa<ôp×»·Á|ºýDóäÕEÐT)B&úù䃷/ŸÏ7B6::ºK]aÇ, z,;ë‹­Éæ2àì9@J[Nj¾›ù¤…Âß—@|ñØ`¢ûÇ«žü4; óðþ@ùßüéJ+ ˜¶lÙ2õ›ßüf?òs/ ¿ûÏÀêÿM5ëÓM7}À0 ïeœüÃÓYúá»6Å –íÐû‹}Ç€%:½ß¾%vâ{Ñê{]©Ë_ $Š„èAPÂ< õ.0bZ!x€»)$w•‹…ï¹B|*P¡¿·70a×Í&›ÏçÅî¢z4o_CCCC€g±<œ°$(ÈL äóèîYuH¤v lpqˆn äµ}‹oC¿,[y¾ÌÄ÷ÄÁ;–ì ØÞv5\DÛB|tK ¸-nà}ç¬ÔZÿ[o½õ%øäçÀã>¨îh¦@àÌÜÛ¿dÉ’¨ÖŸ1Fþ×/þè&ýˆO`VçRXK}BC$±Ð—/_ äYy·‚Hdž áƒHxAT7ßûKEæÊÞ€â  AP ô“Ip¹\N7—|­B no­[·n''¿ ì4Í„lú€÷7ò¿Á ¤åà:¾Ë7\`>i@}uÙ³ôŒ¹á€²OÑ«PCø^‚¶T‡ØÄ+ Ål ü† ±zÛcòM›6Müò—¿Ü Çퟂ#³ð»Pßì?GÃ@Kþ†n¸†Ò£ºþÏîš0~ýâ!*uõ`É.{‘Ê$ò»Çsª‡à‚Ÿ3üx].ÌC/þwË|w_g7‚½wCáIwKå¯(ŠhÅ@7ti@ÜÉ\àñríÚµ{lÛ.¨"pñiKlCÍG2@fÒ%-wíÒzÛ³þ^ÜÅz{î}i÷ßÿÅðAhëø" „5\,óð­ëÿ'kzÙ5ç j­ÿW¾ò•?±øS€gÿ6+p³<Àøâ¿¸pÑ¢EïÝ~nýÿÏÿÝfÊ„&`f……'¸sÉ«¤æu}¥Žkí $QpÜ~þîyHÂÂó\$`ðGžñœ€ø^¶Ÿñ9ï¸j¨Œ”h®ñ <1¨< 6˜ [Q8­™™™Üèèèf@–t'ÙtÃZ§`É XsÉÂ`¶(0÷Ï —…$ýÔ2h,>D±P-¾oõ½¥ÐÌ8bã[åmq·^y²¥Ëü¯_¿~ôá‡Þ ‡ø&áˆïÿoù €ûøÃþ0¥´CPò±—G'ù¤ÄwÍ‹½«À̸³3ÁJKÖÙsÕòà ± ®«Ï¿½ä! ÆÅB±í|ŸL,Y ^-&® idÒ>T1нSÎ$ݸhæ›KTذaÃB˜ø€+Ï\<Á™aÀ*Àsû½¿…÷ƒ0­¶mÇ’s÷ÝRÈÍëª=’@&½Ú£ Ÿ§ÚDŸšŸAbd³v'7]ük°?%­ „°L&S¼á†þÇâO¸Ÿ)8À²€ú'ÿ¼ónÄNôŽ;îXÚ××÷תõ·mÁú „E¬ vûb‰Ø"ÑùŽEK­%?<77à»úLIú]ƒ€,¤qçÌ+f^ñIa‚¿"e„@m0˜p_&6tUHhtÜ Èßxã[–•É~Êb«#¡ +±-`ôéo‚ÍIkKD”ã~øÖÚx`!“Œj¸ †¡QöW+hfñƒ¿WÁ_ž¹Ì¾JŸøÃm·Ýöò–-[FàX}.Óp²ÿ ü#{£v¬öû_vÙeWBRêkº~µé€ñâþi‘u®õ Æý@¸•'bµ›xÂáôøûpfôûñ¼ßÊKPÊeB5¡\ë h<y{hæ“—ÔÞ€ZßÖPܾ}ûÔÎ;ŸRò,7ðŽ3‚^™Þð©°‹mÃíòS Í-¹í+™gñ=r‹HûPÇ øËÁÞ€¹²Ë˜9ˆÄ¡çAìà»&Î{MûÚ•'i_5µaƱo|ã[à»þãðÝÞ÷ß®?Íð(³»»û¢õgŒ‘¢e“¯=´ÝTw,Ñ +µ‰èûÿ~1ÿ)üöLjä‡lé]oƒÂO*»ôEÀÍ €A‡ApËTß[ç ¨Bæ°Üá€kÙ“Š!¥y§\>ŸŸç‘› ¸ dýë_ÿ!„QJmѸþ­«­®dpp)y`â_ëwùyIBîúsaî}%}R/ØPFÅ&v:Ý}·ÿ„%ì»ïymÑTµ„–N§ ×]wwýÇŒÁ>ø§á±?G#€[ãSŸúÔ¢d2y¢ûß¿ñ€áOßÍÍ/A¡wU°kO]†pòŸÄ¶ë¢^¾G Vü©~«35J#ߘ\_ôœ2Eø6¢g >Lræ`p*iÎÀ'¬g@ƒMÕ`p ã7n˜V¶°3É>ý¶cäƒL y»¯­G\/ég;–ÚV\yÑK?Lö¤ƒÞ9iñ‘—`NíÒ®ìocw]}ºÕ©ˆ!!„1ÆØM7Ý´yÇŽ‡à“ AëßÐØŸ£Ñ`üõ_ÿõŸ¼˜óá͇ •¬vª,ÑÉW Ôº$ dòsC Ù]‡G`?‹-—yu¼mÄF.¹¶àܱ~:!ЊA:8™äëVõh-ûÆ'à¿LbÎ]HB´á €Ì£>ú 5ï;w¥}ÒÒÎÀñèøNÐé}2ùÝu>¹™× “ÞM êÜ~Õ„ì¾Ú#POÐÜ’ûŸ1;¬]öªö«ë^_gúü¸ÿÛßþöö»îºk;‹?ê~Æá„|ä_ãèPÐP§úZ±bÅy*ùþgû8õâ¸;W„ì•ÈKšü€\K)(!"bCàý ¯P®6bg?Ì÷™?˜ÊöüGÀ ŠÎ8{08—œmÛì©§žR§“®—õç^E@檫®z`ddd‡"Ì ”ÝòŽ´]^td+è̈·C@ôž5¢‰ò.¿šll ±±mHøH!­­rùéKìŸ]{VQ7Ø~ùË_îû⿸2ùGáXÿY(S5ÚúÍ ÌîîîsT÷ÿù}StBœL’€°“]iEþJî|ØU¨—É KÎ:ûVÈ]Tw¡<¹Õß~¿6§ïMȧèÕQ×2@1'•Å Š× o“áÖåÀ³³³³Ü…Tç“gÀœG“Ùî~³ÅbqæßøÆ÷!ÏðJg ö°¾qµÆŠ1‡þ’õþn e­#3†äþ§aÞZç“ÿÏëö¿>U;ΟÂÖ¯_?ö·û·€CöQ‡ÜÏœ\@Mtý9%^À¿ýÛ¿hšæÕxbëXàØV¢ 4`´µqºz´2ð»‹dwÜÏCpå™·,ú¿rÊãɽğd™˜_W\­6Ä@gýOYÞÉ’š†¶cÇŽ)ønºNjjTncT½€ÙÛo¿ýù7>*&0BûìŸký¥òÔ›óGÚ0¾cl»§²^ØÓbì'…YÄG6#>üˆ" “â›ï:ÙúÔ[Ѻí„¶nݺ±w¿ûÝO‹Åq#’¿iÝ~*éPÆêÕ«×ðq.¹ÿÙ;Õ[‰ÇDˆù („ô2ÃÌ#¤ß­t¹ <¬Â V89呬|®a¬ôv™ Æÿ:÷{á…Æà¸‘â\òõœKŽÁ€4€é~ô£?ÎårÓŠ€RÂn}çIÖ›Ž_ =®1µñÏÜfõ9Áz€æ#~h3’û6hŸçç8c°›ýçÇÏ)ª÷ñ !ì8pÅW¬;|øðò8è.OÀè§©®?GÝ@y™¡”v‹Ä!Ø=®¾I°“=5“©ˆjY Ûr(à=xÂÅ‚ ýÔ¼¾Í|Áàu î“y‚¡}¶\9ñ¨0þ€|pä餥GIk¸´/ àîæ…^ØÏ=÷ü«Ò%ÈÀ ÿß{O+ž¡yù%àô$ö?sl; yx¦Ù ¹)ćŸGbÿ³0ÒáÄo‹øÂ%ÇY÷}äuÅ㟄t³ýøö·¿ýÊÕW_½!ŸÏÂ!ü÷3 'ñwŽëßðahäŒ@€Ç;ßús!Hç-¨‰"f˜žågP¼·€y+üD¬Ä§“æ'Á˜;‚xD#ÙàÑÏ¿3ñX``ÌŸ‰–{¼™;3Z9ÇõHM˜Lfæo'Ú)À…sG~ÈÍ@ÅÙ«ºçСCé§Ÿ~š{ü1Rq*éz‹€ç|ìc{xéÒ¥+.¼ðÂËc„€‚¶˜AîºúÌâu?}Þüݶ± cg[0§÷œÞ«­Å®5‚Z@ó³0Ò‡`ÌŽ„&÷D¼áØ>ö®8)0´—ƒÂòù¼ýùÏ~ó~ðƒp¬ü!8¤çäã~Ïõo6ù&äLÓì´mÛiã‚ÎI`ü1‚ÄDˆuTÜ~µŸ’Õ…×?úTO€¹®¾gý™°gß|:¤:Ž'Àû´=o@Ô°€¯Õy˜ &N\ÒÉvú“ór—û©§ž:7CÙ¨WPô,wßY8.ìä•W^ù³§žzêw”R[ !¬§ÍÄÝ<³ø÷o¥ŒñÁ`¤G‘8¸É=O!>ºÆì!;ü…¯µæg›Ü‰ä¾§‘Ø¿æä®²ä_ÔÇWÿòDëgמU,EþéééÂûÞ÷¾g~ðƒl…oõ÷»Ÿƒp€Sð³þMûE4Ú ±X¬C,ä" ›M–ç©?ÆÜl¿oСñ ¸-¤úîFü ¸@àV^ÐnõáŸ1ÇÊ‹äåî<߯/·ÁàOb øƒ„w~Å{à0Û}šNÆ»_¯I¬ì‘G9€à\òõΈà¡@NƒN\tÑE?xüñÇ»O9å”Ó]°cÔYfäoß´Ê>ç˜^öÿþôEc÷x:L @¬Œ™ƒ0f °°S}°]`fÌH8ï(fƒfAs3 ùàùçõ\šaÕaXÑ›byã ýW¯[në2ü€/›6mš¼îºëþ°eË>ȇgûyÌ/&ýøýa˜'ë4Aâñx [ÿlÁí%×{óˆ~»¨¯ÙöërVË£|‡° §ê1Àéº#Ìëô\}µ®àæ÷™¿BzÈO†”‚éñ婘]f=Nõ«_íƒÓ°Òð]˺¿QvíÚµìšk®üA98ÖlÒ²¬øE]ô½Ç{ìSkÖ¬9Öòíh¯ÓWv³‡>qNñ+m3î}f?ÍÊ‘‘æ¦AsÓrc¥&˜‘3î5·Ûv¿-€Y víÆuÍ‚vv݃ög. Îuà‚?“ÉXßúÖ·¶ÝvÛm/۶͇÷Š]}£ðôÉ EÈ4~V`B ƒ€9“èJVÑõ» WY†àÛqbq//"Oµíí—0×zûG–÷%4ÑŠKËLZÇs^ž€/ 9›Ÿ?sþO“ˆxd¸…„Ù ãCPqÉk—Ø])ÿròøðÃï›åsÈñùäÅA%u… <ÈÀðezz:öñwÜsÏ=:í´ÓNÀó?”‹@GÒÀÍ—Ÿ`Ýpá±Ö=öÒ?µ—îÈTÕñ»bµoÜ©”œµª›½ÿÜ•öŧ-¶©ÎetÁ¯ý³Ï>;þñüù—_~yŽ'4‡ð<ë/>äÃï‹ç•Í'ùÆ €w妧§-\¸PZ™ˆXÒ•d¦²<7 … ìD»SIpë¹õ_¬¡Š€çß‹ìÝi%¿<—Ÿÿæî=?ŽW ‘ ©ûðFñIÞ€<¦! ¼prŸ6+þžs–kÝÿïÿû¯ÀŸMVôò2 Þè@8 û÷ï7Î?ÿüoßzë­¿ÿýï¿R‡þ¸5cŒô´™øÛ7®²?tþ ýðæú“§÷Ò§^™ ºW¾7 ”œ½ª‡]|ê"û¢SÛ‹»/?’À‰?;;[üú׿þòí·ß¾ŽeŸ„?®Ÿ»ûãNïÕ2ä'FFFösÌ1 ¯YÔÎLe Ïpú„ãí’i½þâHæºöb6Ÿp ì50a7D`È Æõ"™%B3K^ϱîþ˜´N$¸²TJì¢ðàŒ7¿€¾2Øöâ‹/N®_¿þüIp n]€:^Üãä $àÓŸþôƒ<òÈ®o~ó›ïZ¼xq¿BH8$üóSÙ~Ê";]°°î•qòè–1úØÖ1²k,çœsÔb¶fQ;{bÛ˜PÂ\wn¡`Ùåd S ¢q4ßÜßÞk)‚ND!°¸ ‘ø’'àžs_jÇ‹= Þ)y9ÉòB@Çw:³è „àïß~¬îUR¸çž{v·þü£Z›†@ T0졇*ž{î¹#?üáßñÆ7¾ñ4±;XôøFm1o>a!{ó -M“Ç¶Ž’M{“ýSYrp*‡ƒSYR>wà`YOм¬ƒ´´§,ëd'/ëd+úôY|øu.‹öo~ó›_ûÚ×¶½øâ‹#púðùDœôü©¾Ã𭾘‹i «/¢‘ÀØ?üðî÷½ï}»…cD|£ s]x’Ÿñ=~Ž“û^PÍ™¯Ëö »Ô JË!Ľϰ¹82Ã0oh«p.â~¥ çÜE! ™IÉàk¤¯o?øàƒû¾úÕ¯nÛ¾};¹Ç­þ¸û§ós0-çò«hd`°ÿã?þcü®»îšÐ%^XÝ*š³,À0dwÇø‚ï ‚"ÞF¢+Èë¥êLˆÝ…]Ë" ¬wEÀ惄Cº”„èÉ„À.Â8ôÇÀÉ¥bnxëí”RwÜqÇËÙl–“ þÈ21þox£ ?I˜ùÉO~’þÉO~òò9çœsÌÇ?þñ׿ùÍo>.‹ÅT!ôb ¢·-†Þ¶;yYýþ±}ÎÌÌxàý·ÝvÛÖ;wò§õøœýœü|O>ï‚åן_–$?ÐÎl²û:;;;ÿ"Ÿ±²›u§LLeœ®.Ç’Ú0Ò#°:–H!1Û¯’šA~¼”À ˜zY´ÙL*SBwSÊa3/9Éü CÊKòºª7ÀAÀ`Œ¼¬MüÝpáK}¶†††ç;ßy>ù¹Àãÿ¦Ì(áïþÞœ0»nݺ™uëÖí^¾|ù¢ë¯¿þ¬K/½ô¤þþþä—œ@™¹‡/@œöË-ò¿uýí0eAtÛ%!¾?L8x0¢YíMRÏ‹NÁß8ÇsŽéeÿvíÙEq{>Öþ#ùȆŸÿüç›ì0ä~€c™¼i¥šÝ•¹ 18í  @€.=§›RÚuÁ ^xá…«Ï9çœ'œpÂÓ4Å7‡ÞÊJ„A%ºˆéééüï~÷»‘ûï¿ÿƒ>x ŸÏóÁTœü\X'á{‡á_Œó«/¢‘€7Üý÷ßÿÈg>ó™w©³Ç¼ó쥖*$3áXB3)gû¹ u‰çô÷Ë÷Þ ·û›ïÁ2i;¦®c²‹â $Ýr.@~ß…ï è"€> %WÒÄ7ÞyŠvb7Žÿüç?ß y.yÞÝÔðä_)(…x">@”…O¬I]¶mwýö·¿ûío»@Gwww×¥—^:xÁ,?ûì³—,_¾Ü{žD8”s¹K[+ öÐÐÐì¶mÛ¦7oÞ<õÜsÏM<þøã#ù|žŸ—ç¥@¶ü‡!“ž¿µ—Ï»À‰DX}ò¸HÀQýÃÃÃ÷´··‹E“O €œ÷•ßÇÔ®«}‘ó"P—4<6ô=ø¿Á-ìÿßÞÕÇ6qÞáçÎgÇNâ|4‰ó4 •@ù¨ZQѪëÚ.¨ °!D+Ê(+Z5&ÊG§õj“Úè˜& ”¢hêĤnmQ%* •l4Ѧ6UÁ¥% I+'“;þ¸{÷Çùç{ýúÒ'޹Gzs—»óűïyÞßûõü¸áBq'Eû?ñ[bIBŠø|„ Â< I<@¿É?”kŸ J¢ãÀº{Õ5&YdGGGÕ•+W6z½ÞèµþW±íUèbO(1™¢à EÑ€ý™Èà‚äpsûy±s.ÎÊÊJwMMMQuuuÁ´iÓò«ªªòÊËËsËÊÊrKKK€n‡ µÑÑÑh0T© †[[[‡ZZZúÏž=;3M%âÒÒé ŒZŸFTøaU"=ß¹—D| s†÷Æ‹t÷“l¤µµõ?Ë–-{ZTìú%•ÚþS—&vÛFzuOsÆÚ×\Ê¿š:Ú?ÄŽøBõÉâ?„É=¦—$†ú±·úv¸(DŠÿ5£Y»‡mä”ëæŽ²¿x¸Z3#?ìß¿¿Õëõ^ƒÑóL“MøL²“þ„h€ïÁ ›+Vˆø´Íàìééqöôô8P±CvèÂBNïúÿitü9„1}™Þ…ü¼¸cAîzÞdeJŸ–HîزeË}hûúGÂX±¯ÉAÍ‘PÕRÄ[Ô’Q›¦²cæfJˆ„§³Ñ€oŠT}Jl_™¾fÍâ íOëj“Bÿ˜³Ìõ§žzê ôÚÞ£öï…ÞˆwfÒ)D|D@}Dl>:pr…Žó@…î# /d”Bµ?"95è8`ðÎJYA|Bº'Åÿ7Þèxå•W.×hšFóÂYqžCÚñÄlõ·'Ú¢9< e°Ñ‚iI†ýbõê­øc ¡æç£ƒÄ?ó­A÷‰÷ h*×/@Žyâ‰X1§„ýѤÝ/Ioݺõ,Œ)3/ùŒ¨ýEÑONž˜ Wx¢çÀ »ƒ;ÏGãŠÂÜ–/|ó@å^G÷ÊâÒÝ f@@ðôéÓï¬]»v·,Ë4/œ1Ƥg–ß­ÿ¸[þ²g(áÑ·÷_‚fwAsÝ¥ßPüÈ…Å>úi)©æåßßÑ—´wHo}ƒ£÷<¤°ùâ•ÅÕ…ìÈ3æ‰$TUe{öìùÜçó‘…4M9¥é¦ 3ÿ2õáL!<Ñ$„¦>ÚŠû|øoÖàIKµ7ÕäQ“}š8E×ò¹éžYC|Bº#ú¢F7nÜxꡇZU^^~/ŸPÂ&IÒïVרõ‡[q…`Îõ/ª¸šn,¿iâN ±™ßÕ-.¹}`P}°÷w"Õ:ô/*×þðÓª˜é‡>£½{÷¶¾ýöÛ0¦’PÛ?-«þÒA€Ä%Ë*Œ¦‚Íd+sÅÆ]k&b_€X(bâÃú$Òóï9Û¶> Þö³AÙò”¼ð ìÝ»÷5MÓì\š0vþãKå¸0,Ìæ@¨r1˜âJÛ{Mäðì}íÃC¦ç% øõã³Õ›eJ^I’ØÑ£G;vïÞ텾¬zÛßcÌFøš±µÿ­ zIrÛñ<‰ù}žàfnÉYOz!ôHà@ESSÓÎE‹=®ªªMUUÍþ GUéé7?Sþ{ùFÒÊl„KçÅ› ¦Â>Р妩âŒ\‡ ¯ýlZWë1u”€'NtoÞ¼¹:ѯè‚A~?ôŽ¿¸£l¶<°‚&ý½H‰T0#¶øÝQ„‘Vâ£ÔÛ› ´¶¶vNccãA»Ý^ FƒÁˆT¨Ei½:dúÅF ïF¤hæ·ëòO74Êp7”›>Hª¹<L+r±£ª÷V$=pDþ“'OölÚ´éSUUý0 %}0|å`ÌBËÈ•f·&¢ŒM~¦ŸK6^ãÅD©µzP ¼¡¡a}}}ýf¤‰AŒ1©ç樴æ`‹­{ÀÜ%FË)DÇ—7U¶IDAT¤d4G¾Ùé ‡¤F  uÁ6è3MM% ˜®íúÑ=*ïì¿OŒü /½ô’—1F޲=\áM%'ÕQÖÂÔÇD¤'ð‹BŸ}öÙçÎkýä%Ib•…Nöן/VËòæo:t9Ý-ȹz¶€ßôš‰€ À~㜾ÿAè“üó+Üì_.‹þ~ͼ”ä…BÚÎ;ÏïØ±ãc쌚¿zÍ?©i¤,dÒI}NèÓ>Ksssg455½<{öìZ±)À“z‡Bxñïç•æKÉ}<˜=Ñü h®h޼´þ/rx¶‘>Øãó‘Ïuذý‡³ÔçVTi.é÷ûÃ[¶lùìÌ™3]Ð{ûù,2D~Ê ;ŠØp•E~ ßiw@‹B‚†@_]]ÝŸSUU5“&úrP;GúÛsK¢iì_;uŦjæÏº ÀÞ迦8¡ºJ åÞÕY Ãdô[€1ÈѤðäÐ l>HãÌ`#KVÖz´—ëæh©h(äokkܰaç”.ª:é¯!9‡Ü¤{É[ÈLH$Dü°à]ÊçÎ;÷ƒ>ØSRRâáûÄW€µtöK¿:þ…­+E¿€)$š=W÷’Wœº…tlõqy¦éüL˜ )†ÖI èÇ¿ŠŒú%UÚÖ‡«µ™e¹)I*IÓ4½ûî»]Û·o?È^Š’G^ƒ‘?.ãì¤-d&L€”M>øà‚ãÇo+***aŒIf"Œhøç§]ò±fŸ|©w8£†òslx`ºöÜŠ»Õ±œe©ÖïììÙµk×ù?üÐcY/‘Ÿ\eÉ‚*ãì¤-d&Kd£q˜9sæì††† .œŸJ]ôKo6}mklëKN16A°Éº¥ôÊ­~I•fÖ¹G âG"íØ±c¯¾úê…P(ÄÛK‘—<Íòãýå2Þ[ÎÂÔÄ„ Ô (P À jß¾}OlÚ´éq›Íf犚 ÁWþ ô¯/{¥Ó­}òÇRDMïŒX»MÆò{ŠÙÊí‰ï—k%ùö[¾†Oµ}ûv¯×ë¥Õ{¼4ŸÌ=È_Žæ©ù-ÜfL¸IM;ôußÐ#2åO>ùdíÖz<ž’[‰a$¤¢é’_nlõKÿn÷K©æ|ºÌ«t³yåùliu!ûÁ¼²1kzDüîîîÀáÇ/>|ø’¦iC0B~?WDsI~íyV.D±0ù˜’DÀ£9P =(/..®yòäÕp8L¾rD|"?_(}o0O«Ö·0˜t ˜øÉ“-9Ǻ¡‹Aa¬ÅŽå?òÈ#Óëêê¾·|ùòi555¥Š¢Hc Âwëéé 677÷¾÷Þ{]§NêUU•7–$òóþñ¢¼Hü¬ò˜³0µ1$ˆ /¹Æòbà†a' ×ãñ¬^½ºúþûﯨ¨¨p{<žÜ²²2WAÁ-ò> ƒÑŽŽŽ‘‹/¶µµ z½ÞO>ùä†ßï§é¸¼¡$O~ªýiŸw™eiÌÒªõ-L 2JS?yr¦ˆ€·&AÈG¢4ï*kàp»ÝÎ9sæ¸gÍš•?cÆŒÙG›íáùÚ>ŠDß;+Ü·ÈX’¢ 1"-¤s„B~ò©€7”’­¤y·X^F¹ý½æÃHv™µˆo!c‘Ñ@Cø¼ ØSÞNšš¢Ð°¤(Ô sûf–ÒÔ©—õ–Ò¦>¦„L„€9Aô–ç‹H~¢u4On>-”™¼Ez S SJxŒ!¢(ˆÁŸç_$6€dró¿‹×ÒëXÄ·050e€Çžò´5óO5? •Ÿ¼˜l‚¿Ö"¼…)‰¬ãð”OuŒG*2[„·UÈ:0C OùqÃ"»…lÅ!,X0ÇDæ°`ÁB†Á î`X`ÁÂŒÿ óPgelaIEND®B`‚musique/data/22x22/0000775000175000017500000000000011715011710013554 5ustar flavioflaviomusique/data/22x22/musique.png0000664000175000017500000000207211715011710015753 0ustar flavioflavio‰PNG  IHDRÄ´l;sBIT|dˆ pHYs˜˜¢È‚˜tEXtSoftwarewww.inkscape.org›î<·IDAT8••Mh\UÇÿç¾™7ùì@6‰AÒ$-­1PlECV.³\¸JZ¬‹µHED²Ð@°X¨ „,ߦèB¡vQ‚ ±€ÔZ Æ/ÐѦ&Ú|L>gÞ›÷Þ=ç¸ÈÌtšOú_Þ{Îïžó?.yž‡GU&“iñ}ÿˆµöÙB)îùã¿NfÖÂܯçóùüHìz&‚ÅÒñ?‹¹å¸}v=nÉ\þ¹®(&¹ªY‹ ­Ä J‚‘í9ÒÛ„|÷¾àÁÁÁÃ×îLÞó“õ1’Pƒ‘d#Ø$2#€ DŒØQ@³«÷?Îfçy²'xmmíå»…dƒ¶t™¤c`D1£ @"€¨œ@€€½ÁÖZ—g+›˜`*h‹W%‹ˆ¶Bö33U*1H"l`i)j;±ºn,¿DÍŽOdYMå­ýÀF@fyFZÝØ&l`ÓNt¶Å+­uü¯” '[úíïã^‚ev[kIU¤©-]ýðõ‰‰‰©R©tßó<¡×ÖÒ1YÉÑwö«*– S/h•r¹Üñññ™íqÂL%+ذ‚Èåêù¾V° üH2“ªÒnq–Ù¬ùŒBBšŠÍnÁe+ŒŠÂ²BEv…–[# ò¨Ty{‚™Ùˆ±D•xk0;T^±ZØþ‹DË ¨¢ÖŠL&“˜žž>7—÷ÏÜ\ ^®\©¼n[]*bVÀy؉¯¦¾›úàõÏ–Ò´¬ˆ’©¥–µÜ××÷âüÒú·ôdÈ Ë!­Þ·wûüÂm§&ÑMÔLhbA ‚(FºÁÞî:Öóé;׋§sþ!ZG𨭇# Åð—9<ÿ;“kŽbD)ë£-±}âÉ÷.Ü’Ó?D&UïÂ% ²[“æççc¨C$¥0F$U ²‚ˆýÍyÕ~›ògôέ:,+’ÆQÖ%ˆà R@ ‡17е–e¹,F¨F tJ@ @ @”JTÛ UŽãP7”SFƒX’M°¹Že¦iår`#˹;>,z ÆDm!‘RÚ‹*Ö0þèûí³=ƒÇº[ºùxË徃QM#PsôšŒ1š/s8 à |*‹Åb±ýb…“lI€3®»Ö#àR‡K0ƪp¡ $À¹XŸ@*.Qe033ãÁ™Q3)%R @©•áP(ùltfN?ž›L=¤’t•A<׃;¯¾ÍÒë“Rþ­{ž¤½oîçÚ¶,µ ¯Æà÷hlÕ ×î¾MLoîšG€(êB+É))%‰Ä¾ÑÒÞF] ˜TØ¿IÊB6óÑçó­ì‡/ÞùÕÒUtm!uÜPPðêÉdò§mÛ_‚Ú_X²-Ø‘¬ê­Ÿ- \ù÷B¥Tjª0ËÈ•9ÊÏ‚344tÏ0ŒLÛÔÃçGœôŽdûðìé3G;MÓÌ1MétÚ[Þºûë»åÖfªQ„µLÉ5ñüR$²ëæÚ×J€`0hõ÷ÙFßàððkÓ4ÿ· p-Q¯íº£IEND®B`‚musique/data/128x128/0000775000175000017500000000000011715011710013732 5ustar flavioflaviomusique/data/128x128/musique.png0000664000175000017500000002636611715011710016145 0ustar flavioflavio‰PNG  IHDR€€Ã>aËsBIT|dˆ pHYsvv}Õ‚ÌtEXtSoftwarewww.inkscape.org›î< IDATxœí}{|]Å}çwfι/ùZ–ä·dÉlæé„à@>$ ÁMCYIh»»YªMwC? YLBº) @B³lÓ„´”5êàÚ<ì€ØÆÆo,Y²–tõðÕ}ž™Ù?æÌ9s®î•î•dsQùùs|Î=:Ïù~ùÍœÒÖÖ†÷¤º¤µµ•Ùmî“ÐÖÖ&§{/òÞ)21Özè!{Æ Ë.\¸Â²¬ùÙlvhdd¤÷Á<üØcåpL“ ïàÉëm€üêW¿ª¿ä’KšcË#‘H c¬…1¶ŒRÚÌ[€€”Ò;_‘H&“ÏíÛ·ï©o¼ñ(ÄTHð¦!eh1ùË¿üKû3ŸùLS}}}K8^Îk¶,«™1ÖL)]F™.µ¸!RJ™9uêԿ袋žÀÛÚÚD%ïð&éh1!¤Ù²¬e”ÒÅ„Z.ÀúwÏHšu¦hÇÀëJ±á±<¹`A ¿¼y¿¬©>g1EBˆ0ÆÚÇX×àëLdhÏHŠvghw"C3ŽSTó ²ä—>raæ®­H3F%!DlÙ²ån¾ùæÍRP– ,w`•sлYÊÕâG}4ö›¿ù›-¶m¯‡Ã+,ËjaŒµX–ÕL)]ZJ‹…Eè;›¡íg’VG"ź)Ú=œ¦§‡Ò´g8M’Y*+ñØ”‚R9‡<ôË#Ñ}IöÀí—%)¥týúõß\»vížýû÷;P– ¬«Ï PŽ/@~ñ‹_Ì»òÊ+WÔÔÔ´„B¡Œ±Û¶[Ü€kA1€Ki0 €8ÙŸ´N ¦igbŒu eh÷PŠvdhw"M³/©Åã„0†´ÃV`H; Á¢V Äɀ撰F:Aœ4à‘ß½rì#ke)¥rÓ¦M_½í¶ÛžpÊLJ‚w0À. ò믿¾hñâÅ+b±ØrÆØ Û¶µ&/#„Ôêë‚Í9·zGRVÇ@ŠžH±®¡íL±îá éNÑÁdŽVôðV°"€´"v‚…+NmLf¤·"á8½{Á±ù­3öï[˜B ‰,ëP†x×Àž|ùË_¶¿ò•¯,‹ÇãË-ËZaÛör˲Z(¥-–e-Õç˜Z,¥„»æB®¡ëècƒ)z*‘f§‡RôôPšv¦i:_ÚBAíh( Ø[ ÛRJõP p)!Y¦Í Y‚…AE éœã½£" ·êXŽT=4ðëjkkÿ„Rz5«ÐD»s |tž Ò1bƒ ä®Dšu%RôôpšœJ³”E@gïÏš¾år¢ÀH) c,>ŻٸÚOëêê¾$¥dBúíM‡æ<ùÊɰŽÀŽÄ`‡cGcEÀáH (ÿjZS%$È84MMömµ¼aª‹j½iÖ}ò§Ð:ž_®H×Íç?Á³Qø@•Ù±cG“mÛB7Ú! ¾e‡°xåˆÌ­%LQÿb8¿Â"pKWÈ(p|”ˆ ƒt¯#]2h࡯[ÄeCð•Æï¬Të窓ÍÖ²,mÞõ1¹øâ‹OJiqÎéÏwu)Í'K×¼áh¶w‚_›ì‚÷—DÁ¤Q3}¹wŒ»Ck­ ÙxsŒµÀ]” òJ[‡J‚@×páÅ”R“eIe‰Œó Úü‡B¡èhó>bµóŠÖ¸GzHƒ¸pû™!ט‹þçY âžë_‹ŠÍø 1÷áSv©—ŸY˜àã-ÀT\@ÕÀB™/¥$\z6›'™3×ýk3Ð ëÝÞŸŠ¢W dÿ@B09°%m‰³f|ÒµyÇÏ}X–¥ Pöª•Œ1Ö „ ÂÌѸ/0ýZû ð=W 4ö­ àÇk4÷Ñw ø=îøÒV"¸.tX制~Ò‹Rj£ÿT'ô „•ªõþ@ˆW`æ*p¦»&ÿ<«AŒâ¬‚L(¨è–|üoT†”ïF\8~Ôàº/PŽT#Bˆ$8Üln%ã· ŸÐr½mÄféúAdÐ (þ«"-žÔLUƧ‚ÝZÀ»Þòù|¸Y#¤$â›kì›`š1€I ÿ þA“™ór.E”m÷ÒâŒ1 4ULBJI «I(ñ›˜ÿ‰QÔç“ÀïÒW.½kB™àø =~…ºË…¯!³%˜PŠi£R@†à>ðã®a^)h9ÆÇå>dy‡MlaJììp©SÁÚÿ—M‚wRÊg»àúÿ@Ü0û%ʪŒ"¬ ĉ/8UW¡-€ë f @énÑÁ£ŠøÝqfŸxûË¿{…R©¥˜a‘:w= à½@YÍøã^· € HÁo±“Þ¬¬G›†a˜T ”¤"L«•eÉ8à öëm2N'Î7ˆçǸ=¢f…˜@Ê ÇÕ&>{ê÷ÎUfˆE\eYW®ÖÖ@¿¯ß¸ö1ÝžVžÌ`/œRW™Âe½Sx$—r)! kæCÒДžËí7+ú˜<G…‚…Û3Ò³b‘<‘KCfÓ¹d>™Kù4¨,èê¤!ê.œÎí*²)UM ŒZŒþvÄ×,büÍ $ϤÙ18Ù4xv Â[äÒ<_öuˆ“­üÞRõ.˜J- Z @Ê€Ñc#¸S‚3Å~T <—A.“ϤώÁɦ 2)ð|¦¬+0J°¸6"Zb²©.*Zb¢¥!&¾û«ãác}É™ˆÉf‡ º.6Vã´^º=pà÷Á÷õ»…MrožÏ!›C>=†lz N&…|&'—‚å}CÐP’-óc¢©.&šb¢¹!"/˜?G´4D…EÇcôw[Ù´Œ“þø³Ä7ý„øæ½H,ü›„”ĈÏtïYu¬à2é$²©².йôr™„SžÉŽ…,ÙR•MõQ±¬!&Zêcâ‚5bùü¨œ¶Î{Àá–YEV¤j PR àý~v®Þë>vn¯_L&…l*‰Lj ™T ÙtÙÔò¹òL¶Å–ÕEES]L,«Ê憘XÞ.¬óç„*Ùqgpp0ÑÓÓ“èêêJ¬^½zñªU«V6zMUd0kö®®}xi˜pR¸ånHŒ&Ðýö!dSÉÂB)~3,ˆ‡esCL,«‹Šæú˜\Þ-óc²¹>&ŠXlR3)¥íííMtwwvvvö>|¸×®]½»wïBääðM›6}jõêÕËÖ®ì\uéשäàj%à‚¢h0høzõÓ+7)Þö£ÈŒwÖ܈-›ë£r™o²åò1±b~LD¬‰-g!àÉd2ÕßߟèééIttt ?~üÌ›o¾Ù÷ꫯö&“É,Ô-9¨oõ³ÆZ/dÁ‚7RJU³wÁ8•ˆ®L%XÍ'…U<³ ¿·n½¢!&~÷ƒÍùåó£rÅüQ³Ë²´ì\.—ïïïîííMtvvœÚ¿+31ïùÔ-UKI=-t®ûWb„ƒR[bSÚaúø<Þ9 §ß=¡@ fö¸!Ʋb!õ¨:çïûÓ"(CÒ( Ïw¿ÓÚ=½ Ðìå “a^[€¹žPª•J¿ÝMçq6“MsXy d¡"Ý4 ´èF·ŠT±y<2îy*%BÖ.ðdÖ¹€€H©>…Næ%H°¨„ÍÂŒ Ì$,JP€?(%^-ÀÝU$`æñ'~<)%òÈä8äXY‡YP ̢Ơ€ðĵþ\Âr\" €Q‰%°srŽ@*ë瀦¢çA¼wä%Ú,!‘ç@^Hä¸úP°2vÞÜr¨JJ5@AoiŒµQÐ ˆK Ã%À cYd’ÙÀà S©#ŸOMç‘Êq8”c,-à GTæfµ ˆßì7 »%EJ ¹Yv£ó+^ϧ<IåÀá ç”{Á!³­CHéT°çèôŸ$‘»&¨T Î)g‡(V8:ïj†tÒp ü?ë^U Ô×*:¾„̶o1¾§Œô4\ð¨ŽóORÕDR8×ÀÔÅ/¾ã¤×¯Vø ’À°î¾0A‡ñ»TØT.@Ë »‚Ùñm )Ù5ÊpòÅH`æ‹Í³ª4Ôî8ÓH0X–-UK€’At˜<0H€’n ª«3!³´9ØØ†‘ç7ª‚*ø3š„ý“½DK5ºb˜¹r3ÉTÞ±Z-@‰—0Ô\}ðM¿i åFŒ %&¸î»]ï8+F J¤‚MÐMÀØWLªÑ`†Ÿ§À”uíj&@ ðeILàÿ«1 ¾ÛtNÖטECÄx@§Í|€ADw*l (œþf:b\cv´-éã¯Æûw{›éAIJ©SU_(3œ ,[ªÖ”ÊÈ‚Å$E‰€Tk-@J9¾ü+|B·˜Je'•j´ãÛÿÍMÝ\¨õ¤ð Âa pªŠ3%³É£úV,¦ݽF PLª0 æf𲨀äÕh&”q­^þİEÏ«º °h{Gù¢­œw*‘S$ªÕ Xt\´õÁX`ü¨bžTø€j ôg$Ÿ‰(нn%W½m:1b¢»ë´0 ÒǪSè;j &¼&PCºÛBˆ" XÙ㩲P_gS[@‰ðÛ< ‰;/—,}pþ3zæSø€³çž{®eåÊ•WÛ¶½Ìqœ¥µµµWÍTÀYcJ¶èò2-ßhÿh\a†¿Ã/* [Ï>ûì²uëÖ}2‰| ‰\nY–š‹sê®™ã8̃éɬïª3„ÃÀyÙALXŒçºÐÚÚJÐ'žx¢î£ýè­µµµÿ!‹]-¥dœs*„ ™L†jw?V¡S~®M•^¦ê ƒA@ ÀËúþó%zžÃx`Þ]wÝõùºººVó8ç4›Í2 rßHš½|lëKÒSƒ)Ò‘H“ÎD„R`$=á8çLªžA‘ž¯÷zG‹8oN^›û;î¸#üð÷Ö××ÿ!¥t¾ã8Œs΄tOÇõüþ^kë‘AúVÏ()‡ ’ž_Hª–ÅRÁ~Ò‡x`û.ε!pÁg¯¼òÊ…W\qÅ#¡PèJÇqX6›µry‡=·¯Ç~üåvöFÇHÑ(_ZaH; aE¡æBtóØÌ†o¬èYÌbšJ j PL1À¸ô¯A„s(®¯·:::>»hÑ¢oJ)çær9æ8ŽõÓ×;Cþò¸uz8m†Ÿ@$k€ŒÕƒÛqHB ÅD]X§-ïúj '…¬Ö1€&ÆÇšêtÄßüñxüsŽã0Çq¬Žþ³öWv ´íè ¯ñÌ™×ÌkXR¨gfR½“ð¾\Ö''ìÏ0^Æeõ„IÕ ²°O`Aú÷­­­´©©)¼gÏžoÇãñÏær9ÛqëÇÛ;Bõ/‡íTN}¨I¬è‚ AâKÔü¾RMGϨpáPj?ñ2™f/§s-ÕL€qpJ£#ˆ•ÒÕÂsÁÖÖVº|ùòЮ]»ŠÇãwär9+—ËÛõÜ¡ð£ÛÚ |1×¶`%@-Ý@«\•$uÁw×Ä}ÚÀ'‚8,¨I—=F¨—ù3rþÏ™+9÷¹¬íÛ·ßÇïÈçóV:“³ï}zoäŸ÷öR ¡(¬%k@jê}tê©ÿÉ0G1‘~Ì" A€€–A‚"Aà»'ddÎÕ0EØ"BÊCáP±…ýÌBÏÑó±;w~¸¾¾þÞ|>oåryû÷ŸÜÙ|¨Ÿ‚,2ö²+ í0ˆ”Õ3’zæ R(B0˜ºÖA[ wŸ T(èâÏ•œw S¸9ò|pÑÕW_½ª¾¾~eMMÍ…¶m¯ ‡Ãõœó’­JÉ|‡j~:“më?þøâ5kÖ<Ì99ŽcmÜ|,䫇Ýt9³@%øžEò]‚€R£ã>£t#W!êB- ’[Ú¢M–à2 ¨ª«ðÖ?þã?6¯_¿þ¶9sæ|, ]@)­Õ$uæL'SÌkxQ²Žù¤KEûÿôJ#dmúo¿ýö(¥‹s¹œµåÐû¡=a,<vóå Ôò̼º%Q–ÀÛéGt:”º C‚Pá›} e%”ñ(aÜñ-æ¿·ã8昆eÉ9'€N•ÞtÓM‘Çü¶yóæ}&®ãœ[BÊ9'ù|žj॔d8•'g3”¤o4kª’м¡aá7ëÔ°»o„nÙ²åÊššš›³Ù¬Õ3œ²îùßûBBJPˆÝt(±ŒYÉ3î®ÿ—€7s¥ë§ñ«BJP—DÂ0úê$b¼g@\m£œg³ÙÂ!k'•sF­ñüàÃO=õÔí÷Z–µÜ͘1!BÐŽ1ºåÈÛ~l€H“Ρ49›)7{$ƒÌ˜pžÝºüòËïsÇ✳‡7·‡RyBZò>Ðð×DàS?‚Õs x®‰¨ªƒ›@ €"Ñf_ú×)Œuµ×„˜?ÕL>Ÿ7‡´-«(Î Ü„ ;zôè‡ÿʶí•xÎ9;Ò{–ýèÕûßÐŽÁTÙQ+ EÓ¿!žLøîå ݺuëUñxüÆl6˺)ö^?ÍXM=ÈÜEî¹¾ZÏÛøSÕ€ª uo«M¿á»ÇI)ǃ<›5 ËåG@ô]g”Zëïºë®šoûÛÿmîܹ¿Ï9·²Ù¬Å9gÿvøŒýض“Ö¶£ƒt\¼b…AÂs@ì(H( b‡á™A4R©-ZýS«bD˜ò;°Õ«Wÿ'­ýýë1;çB`-¼@ÝøZªŸ‡PW{©² þ æ:‰% ý†¬ 66‹G¸šòf~ÜŸd2›ÍS?©Ì´¯ß¾}ûšµk×þ­mÛkòùØ&¡ÉIý‹Q_á\cí'„ –bO-hV͈rÕ²ZÞzkþèæçZköìÙ³nÍš5OI)ës¹œ5–ÉYÿó…c¡¿ÛvÒr¸«©”AÌ]Ìkµ£ TU4È:z&ZE\´uyº H2;þLч~¸1‰,Ëd2ôµ·Vž °ÚF?¨§jCúX„‘?QCØP @2®Nüª î:øw_h.é¹€«[æzÞºuk7üqË §M þÞ½{¯_½zõBˆZÇq¬#=#öþážðÉ1…+¥µÍàuË@,T›Q"Añ@¨ofˆª_u| €îTN'®­Øúõë߯»m½ööëÂ)H´ÎW|ý8ž-÷-pw©†^ÝTí?›pëþÂYÞgîByšñ¶¯Y^'`dd$·{÷îI(ˆrÆBž4øû÷ï_¿jÕª !æäóyû×ÇBŸ{rOhØš™ gþ*ðPJøTGÐô¶aU©, ¢j¡É U¨˜ÙŸXíË ! u•´wDUC‰d¶ë¿% ˆFØ5÷Ú/¹#—Â{6í„A)\ ¥Î(bH­ý²xõ–ÕE墹aBä¡C‡†Ý%‹ódÈ“O>Ù´råÊhð7íïýáOö…²y J)xÝrðyÍ®ÆOóu0@©Pé.Þn êvÔ5¦¹…¿ üŒ(ºôÇ¡e½&„ˆidòªJ*©ŸÔñ‚Má>„›µ‘n€"A\x¡1|¼þŒ†5€ÚŸÍŽ>uõä}ûöõB̓05,~Y2e´¶¶Òµk×Fo½õÖïX”ÏçíWõ‡¾øÔÞeÎüÕñE`F4¬À÷Bufª%ª%‰R(­ ®7;„¼íäfѲ¼Ðš»­1RpéGö|éFý*áO` ˆ¢ýÍÑL„º)4\ QìÙF;›âs×5 @eô£€"ÀYTNéË (yá…îÅb׿óyûtbÌúÒSûl¾gÑeñÅ`D™{FˆÚ&Jë™ÞçšJuLàVûˆë ˆtã£á‡¸ù2ïêŬ_™> Q~ãêèèhBo_ÚèYùŒš î=‰PVB*ML .\ Ý5jÂü»ôã2À§ù1°ÔàSW-õ56`óæÍ§;Ö`*àåÎ…0ÕOÃÈóÏ?Q]]Ýäóy+ͳßÿÑ¡±¡”Âi¸2V¯š÷\­¦îBüÈŸ*_ψƒº™QÓÓCRå$©^Ý~¦‰à™g7B¶Y IRrîC$yøðáãzÇõ+<3+S‰€€òã‚+³Î…á›K n®…„\ÂÛÖÄ(|H»ÿà–Óç¯oñ¿ûÝïÐ5!Vv‚÷'@kÿºuëî“R†8çì‘O„öuRJÄÜFÈø’ øîšyþ_Ì\ÍW‰¥á”ÕAI¤ªÁ¡iNu¼­öÏ’¥Óim'+þ÷ÿ÷G !œ"/mš+çE•¦ÉdBìÞ—»€qáÎ'$)| õâ‚ì“"ø×)Ýô<ªª¾ü‘â‚1 ;vìèßµk× ¨ ±tàÜÙ¶mÛ%µµµŸäœ³Ñ´õèKí%2¯»Ð3óÔ5Û (ñ¬#Ê (k êΊ®%ð»kû‰Ð¸_õúUýwMßd³Y“äÈ]³)^}õաÄÉ‘×]¨ªZH% ‡tÁîÚÒ5÷Ž6éÀÒ%Hp¿Æùú…Šˆu¶,Ù ¸~eƒü£]Àåû¿óïìÐE€³œJ¦Â©ˆZû/½ôÒ¯pÎ-Î9ûî‹'ìT–ƒPQ·„ù-b„€ï¯öù®@×ÌŽ¸Ÿ81#c^í1~»;C† Èd2º¡d²Ù:€ìÁƒ_ ” BˆüÈû(è?î™z.…K:—×d(0ýÏèjaq‘°‡Ûa,©ÈGî¼ÌQŠEä÷¾÷½#/½ôÒ'¡\@Ö*µäÖ[oÅb±9ç¬g8e=µ£“B õÑ:• ×> ¶áGýÚßS¢S¾Ú¿ ýncŸ€róÊ_ƒ¹”Wu¯0†‡‡Í ÙD…$ä7nÜø<€,!D~ꪥ⪖yŠ’#]@²p£xGJ8\‚ Áá¢Ð˜ O<@xáÞý°†ÛHDlŠüÞe\~[¶léÿë¿þëׇ²#ò•N„U)èý÷ß-€9œsöË}VÎQˆçë–^gXs x9êºÓꀗ~Z· ‰€ß׿Կ$ SÃÞõ®iQyrÇqÄË/¿ÜU?æÀ¤3†9›7oîÞ¿ÿ Œ1n1"ÿöÎ˸ŽØ™C@>ã[ƒ žfšÏŒÀ I gIDAThß5lrfáî] ™!Àókä?߽ιªY‘°³³3õÅ/~q;€cŽBiSÈ€”M&mjjºA÷ÜyùÈ€ªi±d¸Öï¼`¾`aêðFtð$ÝÈÚKƒºš­«PBk9¤·­+užÅ×DH+ÌXXµ(.àĉg‡‡‡Ïº…¤c¢âüçž{þW*•JPJES}T„Ö»ȧýg(¸N9Ñf¡áÀ>‰pï>®r9·^±Xlº÷Κ¥ª::::šû¾°chhè0€· ´ú~-•Z‰DVéÞ;»O‘Zõ×b·7¢vÀ×`.¥q4~û©Qá¦LáU—„o `,®l©•n¢Iîß¿þ|Áå|…)döîÝÛþÌ3Ï<Îã„qóe‹øq“/$7†Ðé g»!§ðA†)4;‚ÐÀaD:·Ãî€6ùó©÷ñïÝy¯ 3À[o½5ºaÆ­»vízÀ~( 0 ÛÖÖ6¥‡¨„¥”ÎÑŸ4ŸÍä•Ûfaÿˆ"$ðsÝj[û@E{Q²Ö~íß¹[BY e-´öûþš ™ —|pEW ;wîìÊ‘'Q +0zÏ=÷übÛ¶mÏSJùŸ\Å¿pC‹êÙ%8ì#ˆtí€=t43âG¥“¦p`žF¸{'Â=o¨(ß­¾¾oq\þ˾߹óýM^]ÿé§ŸîúøÇ?þâÑ£G÷Ø ¥ý½˜BàgJ¥©`J©‘R.Iç¹êÑBCug _+¥êýâšq* 8ñƒ=³aÇ3󂨦_paáÎ&¤áeÌšÃ`;ÕOîÓë– àœË_|ñ$ü,Y¹iR å2ÎÜrË-ß}þù箽öÚë,€üÙ'Vñ]T/¾þÌ!Ö3’!„çatÂ騩…´bV’Ú <³ Ž»ð Ï`7_²PüÞšÄuÕ{Ï—L&óßøÆ7þô§?=¥ñ dýŠI¥ zpC‚¨ÍÎ |6P/W<ÕÝ™¨Ž*™HÕ{¾[-:Px»$Œa|¨Ƚgn dL¥Iï¸z©˜?Gµ’½òÊ+=]Pyò² ¬­­M¶¶¶r(ÒtÞrË->õÔSÿõãÿø Ø/ Û¿Ñ 7íï¥Oýú4ÝÝ1L¸*>H Bñmriœ•w~`©¸s]£Xû­ZøFZ[[w9rä8T´ªÊ7¥ùÓ˜BcP2™ìF£—\³|ž|ùØ !™!#H#^;8qÛLtgG¿· É⻯=ÜUPæ¶ùQ|"ÐD;€Q‚/Þ Ò¤RJ<ôÐCû¡´eFÊ. rÇ9ú;¿ó;ïºë®ú§ú™ÚÚÚ¸Å(n¹b‰¸åŠ%b(•ÇKGè¿ ožN’ž‘ IWÎXX:/*—Ì £±6"ë"ò’¥qyêIB!„ÈãÇ'ö³Ÿûþ÷¿¿;›Ížð6Ô´÷=PÕ½ &¯É”%•@ u.X°ð¡‹êÅKGɧ'iE 'pÒÈîAçÆW~%àeöühÞçÓºs…ßO^W¥|"г= É>À†KŠ–ù^štàÕW_=5eü0*L“@[[›hmmÍ8€?ñÄÙ-[¶½ï¾û>¹aÆ«êêêjúš~ûÊ%â·¯\â;šv0˜Ì‘ñ°œaÞ'ŸÏó-[¶ôÿøÇ?>ºyóæ#NA~ ŠÀCRPÑþô¢NC*%ïëë;vñÅ BˆüÐEõ“R‚¤‡ âKÔ'Mº‡ûI´N™½fÀü6Îo/^ßׯ ›€In´ÿ .fãO6¬TQ:!ò‘G9  ª+N“šO erûäÚÛÛGî½÷ÞŽh4ºâK_úÒú߸ߏlíÚµK£ÑhÆÎZdnÔw?sÀªžžžÔÏþóS=öرžžž(²v¸‹ |eöò©D*!€Àxà­×_}–b¯iT %Ãé<èÙ^ð9‹Ý¯[Üf]âš}÷ìÂY=i\3£g…žé Hx¬÷ %øÁï®ušê£~ýë_÷oÞ¼ù ”Á%€W+­­­Y (2$ÒétçÆmܸqI(Z²aÆK>üá_´téÒº Ì™?~´¶¶6”ÍfE&“á™L†'‰ì±cdž<8°wïÞž;wv !FÜëöAÀ>‡s¼ÒÖÖVÖºÀüƒ¶566~Øqë«?;hÿÃÎÓòõ‚×.óšqÍŽžÅ’_¦öëuÉæP¯E²IØýAÜdÌŸ}b%ÿ Ëôõõ¥oºé¦ÿ×ÝÝý €N8ÛÖÖ6Y;@¹å Ë"  @=€ùÜßsÄ„àW·9 )(_®»pËY5~ÆÌ}1)ÛQqêµ×^û¿wÜqLJ8çìÏ~k•óò±„}z8Mì¡“‘y¡¸×±PV@mÔUF#ЛŒâº†avÂ:é1ç¶«– ~6›åŸÿüçwvww…Šœ{¡ tF Ò°ºûu ¸3P€×¸ë€0T3À iòPmö)cÉBÃ_M‘ o2)ÛûÃ9ò“… ®åœ³]'‡Øív ™¥W¤ èq/‘+*ïay¡þC •í³Å×o¾þúåBgý¾öµ¯½ùÄOlð€=:¤Î•&|âÎ ýÉ»ùÚú£ ó3.m™Î è¦TDhmmµÌ»ûî»?ö­o}ëBˆ°”’~ïÅ·Ùƒ/g Âs‘[°FÕ fB¤;;qD¨ÊŠù5òûw^Â/kR >„ùÃþðä׿þõmހʖ€ÒÎi×—Ë‘‚A.L)Å{ xVå‘©€B™·¥›6mú‹õë×ßæ8Ž%„¤ÿñ‰=ÖKGUÌG-ð¹MpâK!Yhâ‹–šK‚%{Á’}ððékÅ7oYíåÈs¹ÿÎw¾sdãÆ¯xŠÇáöy' ¸Úe*½‚%”¿J|âŸøÞÖ­[›.¿üòœ<ù¹+œ6c?|õ%Â5Ükäx´<Ö­Ÿ „çAx4; –ìñ>Ò²0Â_üÖ*~Ë~wè“'OŽÝ}÷Ý»wíÚõT~üM¨Äɦ^íûw#[À3u6€ùµµµ—¾ð ³jÕªÕB&¥$[ oÿò;Ð=:.ø—VD ”ÈÔÇŸ^Žœg½ÆS%¸aUƒ¼s]£øØš‚¹]} !ò™gž9}ß}÷½>66ö6€CP©Ò¸IŸsAÏ™€€+XÇ/{ì±Ç¾|ÓM7]ç¶)%Ùq"AþaçiºõÈ Jå'¹bP–ÕEå§×-Ÿ¾z©\2/Ðâd2™ûó?ÿó}?ùÉOöBùù£PZß?áóøeÈt¾ Ò­eýgÏž=xçw>t÷ÝwÿÚ×¾ö©x<>½î¢ùÁ 륒¿qj„¼|,AÚÓäôpštg‹kCXËEñ0׆墹a47Då•ËæÉÂáÞûúú²Ï>ûlç£>º¯££ãTë˜Ù#6ƒ÷Ì~E2e ø½„ ’! Zâñøêûï¿Ãm·Ývmcccn=œê°èœs±}ûöÄÓO?ÝþOÿôOÇ9çÝPÙ½·¡òäýP-vy¼Õ¨w»L‹@ °@#€–Ûo¿ýýýèG×^sÍ5-Ë—/ŸG¼É¥»»;õÜsÏu=þøãÇÚÛÛû €îr—Óð¿ƒËâ Copyright (C) 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 Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. , 1 April 1990 Ty Coon, President of Vice That's all there is to it! musique/INSTALL0000664000175000017500000000262111715011710013116 0ustar flavioflavio# Build instructions ## Prerequisites To compile Minitunes you need: - Qt4: http://qt.nokia.com. The following Qt modules are needed: network, xml, phonon, sql - TagLib: http://developer.kde.org/~wheeler/taglib.html On a Debian or Ubuntu system type: sudo apt-get install build-essential qt4-dev-tools libphonon-dev libtag1-dev libqt4-sql-sqlite ## Compiling Run: $ qmake and then: $ make ## Running ./build/target/minitunes ## A word about Phonon on Linux To be able to actually listen to music you need a working Phonon setup. Please don't contact me about this, ask for help on your distribution support channels. ## Installing on Linux Run: $ sudo make install This is for packagers. End users should not install applications in this way. ## Legal Stuff Copyright (C) 2010 Flavio Tordini This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . musique/COPYING0000664000175000017500000010451311715011710013123 0ustar flavioflavio GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . musique/CHANGES0000664000175000017500000000177411715011710013070 0ustar flavioflavio1.1 - Last.fm scrobbling - Album covers from image files or embedded in audio files - Lyrics are now read from inside MP3 files when not available online - Faster music collection scanning - Album covers and artist photos are downloaded in the background - Album release year inside tags has now precedence over Last.fm often incorrect release year - Fixed duplicate tracks after rescan on Windows - Lots of minor UI enhancements Musique 1.0 - Renamed to Musique - Added disk-based cache for HTTP requests - Mac OS X Lion full-screen mode - View crossfade on Mac and Windows - Fixed crash when quitting app while scanning music collection - Fixed missing application icon in Linux packages 1.0 - Search - Playlist is persisted across sessions (Thanks to Daniele S.) - Drag'n'drop tip when the playlist is empty (Thanks to Daniele S.) - Fullscreen support on the Mac - Many new translations 0.1.1 - Fixed stack overflow issues on library scanning - AAC support on the Mac - 32bit build on the Mac 0.1 - First release musique/.gitignore0000664000175000017500000000013311715011710014051 0ustar flavioflaviobuild/ Makefile* *.pro.user .settings/ .DS_Store .cproject .project stuff *.sh local/ .tx/