Implementation of a filters

The discrete-time transfer function H(z) is often obtained from its counterpart, the continuous-time transfer function H(s) via discretization. A discrete-time transfer function has the following form:

(1)   \begin{equation*}H(z) = \frac{Y(z)}{X(z)} = \frac{\sum_{i = 0}^{N} b_i z^i}{\sum_{j = 0}^{M} a_j z^j}\end{equation*}

Herein, X(z) is the input and Y(z) is the output of the system, N and M are the degree of the numerator and denominator, respectively. Where N \leq M, meaning we are dealing with a proper transfer function. While (1) is valid for any order it is not recommended to directly use transfer functions of high order. These can namely introduce numerical problems very quickly. Rather factorize the numerator and denominator of (1) into a cascade of first and second order polynomials.

    \begin{equation*}H(z) = K \frac{\displaystyle \prod_{i = 0}^V \left( z + b_{0i} \right)}{\displaystyle \prod_{i = 0} ^W\left( z + a_{0i} \right)} \frac{\displaystyle \prod _{i = 0}^N \left( z^2 + b_{1i} z + b_{2i} \right)}{\displaystyle\prod_{i = 0}^M \left( z^2 + a_{1i} z + a_{2i} \right)}\end{equation*}

Now let us look at the simple discrete-time transfer function of order two:

    \begin{equation*}H(z) = \frac{b_0 z^2 + b_1 z + b_2}{z^2 + a_1 z + a_2}\end{equation*}

This function is non-causal, because it depends on future inputs. Therefor, both the numerator and denominator are multiplied by reciprocal of the highest order of z occuring in the denominator, in this case z^{-2}, to make the system causal. Hence, we obtain:

    \begin{equation*}H(z) = \frac{b_0 + b_1 z^{-1} + b_2 z^{-2}}{1 + a_1 z^{-1} + a_2 z^{-2}}\end{equation*}

Followingly, using the linearity and time-shifting properties of the \mathcal{Z}-transform, i.e., \mathcal{Z}(a_1 x_1[n] + a_2 x_2[n]) = a_1 X_1(z) + a_2 X_2(z) and \mathcal{Z}(q^{-k}x[n]) = z^{-k}X(z), we obtain the difference equation. Remark that the shift operator q is defined as q^kx[n] = x[n+k], the forward shift operation and q^{-k}x[n] = x[n-k], the backward shift (delay) operator. As a result we obtain,

(2)   \begin{equation*}y[n] = \frac{b_0 + b_1 q^{-1} + b_2 q^{-2}}{1 + a_1 q^{-1} + a_2 q^{-2}} x[n]\end{equation*}

Rewriting (2) gives us:

    \begin{gather*}\left( 1 + a_1 q^{-1} + a_2 q^{-2} \right) y[n] = \left( b_0 + b_1 q^{-1} + b_2 q^{-2} \right) x[n] \\\Leftrightarrow y[n] + a_1 y[n-1] + a_2 y[n-2] = b_0 x[n] + b_1 x[n-1] + b_2 x[n-2] \\\Leftrightarrow y[n] = b_0 x[n] + b_1 x[n-1] + b_2 x[n-2] - a_1 y[n-1] - a_2 y[n-2]\end{gather*}

This last equation is the difference equation which we can easily implement on our digital platform. Numerous methods exists on how to implement a filter. Four of these methods are closely related to each other. These are:

  • Direct form I
  • Direct form II
  • Transposed direct form I
  • Transposed direct form II

Direct form I

The direct form I is an FIR filter followed by an IIR filter. That is to say, it implements Y(z) followed by \frac{1}{X(z)}

(3)   \begin{equation*}y[n] = b_0 x[n] + b_1 x[n-1] + b_2 x[n - 2] - a_1 y[n-1] - a_2 y[n-2]\end{equation*}

In an algorithm you can implement it as:

yk = b0 * xn + b1 * x1 + b2 * x2 - a1 * y1 - a2 * y2
x2 = x1
x1 = xn
y2 = y1
y1 = yn

Where, x1, y1, x2 and y2 are the four state variables.

Direct form II

The direct form I is an IIR filter followed by an FIR filter. Which implements \frac{1}{X(z)} followed by Y(z).

Signal flow diagram of direct form II. Where s[n] a state variable

(4)   \begin{align*}s[n] &= x[n] - a_1 s[n-1] - a_2 s[n-2] \\y[n] &= b_0 s[n] + b_1 s[n-1] + b_2 s[n-2]\end{align*}

In an algorithm you can implement it as:

s0 =      xn - a1 * s1 - a2 * s2
yn = b0 * s0 + b1 * s1 + b2 * s2
s2 = s1
s1 = s0

Where, s0, s1, s2 are the three state variables.

Direct form I transposed

Both direct forms can be converted to an equivalent transposed form via:

  • Reverse direction of each interconnection
  • Reverse direction of each multiplier
  • Change junctions to adders and vice-versa
  • Interchange the input and output signals
Signal flow diagram of direct form I transposed.

(5)   \begin{align*}y[n] &= b_0 v[n] + b_1 v[n-1] + b_2 v[n-2] \\v[n] &= x[n] - a_1 v[n-1] - a_2 v[n-2] \\\end{align*}



In an algorithm you can implement it as:

vn = xn + s2
yn = s4 + b0 * vn
s4 = s3 + b1 * vn
s3 = b2 * vn
s2 = s1 - a1 * vn
s1 = - a2 * vn

Note that this form is very inefficient. You can easily shift the delays to the center, obtaining the direct form II.

Direct form II transposed

Signal flow diagram of direct form II transposed.

(6)   \begin{align*}s_1[n] &= b_2 x[n-1] - a_2 y[n-1] \\s_2[n] &= b_1 x[n-1]  - a_1 y[n-1] + s_1[n-1] \\y[n] &= b_0 x[n] + s_2[n]\end{align*}

In an algorithm you can implement it as:

yn = s2 + b0 * xn
s2 = s1 + b1 * xn - a1 * yn
s1 = b2 * xn - a2 * yn

Symbol to represent Emergency Response Team (ERT) Bedrijfshulpverlening (BHV)

Emergency response officers (ERT), or in Dutch Bedrijfshulpverlening (BHV), within companies are trained in providing both first aid and limiting and combating (small) fires. All to limit the consequences of accidents. Various icons are used to resemble these organisations. One symbol which I have seen quiet often is the combination of first aid and a fire symbol.

However, since there was not yet a vector format available, I created one. Using the established first aid and fire sign from ISO 7010.

Emergency Response Team (ERT), or in Dutch Bedrijfshulpverlening (BHV), icon.

On the left the fire symbol with the red color. On the right half of the first aid cross with the green color. The red and green color form a gradient in the middle.

You can download the vector file here.

Filters in Control Systems

In this blog I want to elaborate on the various types of filters that are being used in Control Systems. These filters are often used in combination with a PI, PD or PID controller to obtain a robust controller. The filters which we will discuss are:

  • Low-Pass filter
  • High-Pass filter
  • Lead-Lag filter
  • Notch filter

Using these four filters we can create other filter types, such as a Band-Stop or Band-Pass filter. The behavior of each filter can be captured by a transfer function in the continuous-time using the Laplace domain s of either first and/or second order. We use the transfer functions to describes the filter H(s) = Y(s) / U(s) and as such the relation between the input U(s) and the output Y(s). Throughout this blog we will write the equations in the form of their angular frequency \omega in [rad/s], also known as radian frequency. However, we will specify filters using their frequency f in [Hz]. Using the radial frequency notation results in a more visual compact formula. Additionally, it is also possible to specify the filters in form of their time constant \tau in [s]. The following relation holds between the angular frequency, frequency and time constant.

    \begin{equation*} \omega \triangleq 2\pi f \triangleq \frac{1}{\tau} \end{equation*}

Many forms are used within literature, one book will use angular frequencies, the other will use time-constants. Finally, for second order filters, the only filter with possibly complex poles or zeros, can be written in various ways. We will specify second order filters in terms of the damping \beta of the corresponding frequency. It is also possible to describe these formulas using the Quality factor Q. Whereas \beta describes how oscillations decay in a system after a disturbance, Q describes how underdamped the system is. The following relation holds between \beta and Q

    \begin{equation*} \beta \triangleq \frac{1}{2Q} \end{equation*}

Low-pass filter

A low-pass filter is used to pass signals with a frequency lower than a certain cut-off frequency f_\text{lp}. Below the formulas for both the first- and second-order low-pass filter is given.

    \begin{equation*} H(s) = K\cdot\frac{\omega_{\text{lp}}}{s + \omega_{\text{lp}}} \quad\quad H(s) = K\cdot\frac{\omega_{\text{lp}}^2}{s^2 + 2\beta\omega_{\text{lp}}s + \omega_{\text{lp}}^2} \end{equation*}

Herein, K denotes the gain, f_\text{lp} denotes the low-pass cut-off frequency and \beta_\text{lp} denotes the damping. Whereas the first-order supresses with 20 [dB/dec], the second-order supresses with 40 [dB/dec]. Low frequent the filter gain is K.

High-pass filter

The complement of a low-pass filter is a high-pass filter. This filter is used to pass signals with a frequency higher than a certain cut-off frequency f_\text{hp}. Below the formulas for both the first- and second-order high-pass filter is given.

    \begin{equation*} H(s) = K\cdot\frac{s}{s + \omega_{\text{hp}}} \quad\quad H(s) = K\cdot\frac{s^2}{s^2 + 2\beta\omega_{\text{hp}}s + \omega_{\text{hp}}^2} \end{equation*}

Herein, K denotes the gain, f_\text{hp} denotes the high-pass cut-off frequency and \beta_\text{hp} denotes the damping. Likewise as the low-pass filter the first-order supresses frequencies with 20 [dB/dec] and the second-order with 40 [dB/dec].

Lead-lag filter

A lead-lag filter, also known as a lead-lag compensator, is often mainly used for phase compensation rather then magnitude. Below the formula for a lead or lag filter is shown.

    \begin{equation*} H(s) = K\cdot\frac{\omega_\text{p}}{\omega_\text{z}}\cdot\frac{s + \omega_\text{z}}{s + \omega_\text{p}} \end{equation*}

Herein, f_\text{p} and f_\text{z} denote the frequency of the pole and zero, respectively. The filter functions as a lead filter if f_\text{p} > f_\text{z}  and otherwise as a lag filter. The filter has its maximum or minimum phase at \sqrt{f_\text{p}f_\text{z}}. Finally, at f = \infty the filter has a gain of Kf_\text{p} / f_\text{z} or Kf_\text{z} / f_\text{p} in case of a lead or lag filter, respectively. Naturally, the filter can be cascaded with itself by which a the filter can be a lead and lag filter simultaneously.

Notch filter

A notch filter is often used to filter undesired resonance peaks. Below the formula for a notch filter is shown.

    \begin{equation*} H(s) = K\cdot\frac{\omega_\text{p}}{\omega_\text{z}}\cdot\frac{s^2 + 2\beta_\text{z}\omega_\text{z}s + \omega_\text{z}^2}{s^2 + 2\beta_\text{p}\omega_\text{p}s + \omega_\text{p}^2} \end{equation*}

Herein, f_\text{p} and f_\text{z} denote the frequency of the pole and zero, respectively. Likewise, \beta_\text{p} and \beta_\text{z} denote the damping of the pole and zero and K is as usual the gain. When f_\text{z} = f_\text{z} the notch will target one specific frequency. The gain at that frequency is given by \beta_\text{z} / \beta_\text{p}. When f_1 \neq f_2 the notch filter is also referred as a skewed notch and the difference between gain at low and high frequencies is given by (f_\text{p} / f_\text{z})^2.

Getting things done

A while ago I read the book Getting Things Done (GTD) written by David Allan. In my own personal workflow I was already applying GTD. However, after reading the book I further refined my personal workflow. My fellow colleagues were interested and also in need of GTD. Therefore, I made a short presentation about my own personal workflow, with tips & tricks. Feel free to use the presentation for your own benefits.

Your own Happy Salmon game

Recently we had a game night with some friends of mine. At the start of the night we played the game “Happy Salmon“. It is a very simple game but really energetic. Every player gets a set of cards. Each card resembles an action. The goal is to get rid of your cards as fast as possible.  You will have to find another player with the same action and perform it. To find another player you simply shout your action out loud in the open. The actions are either:

  1. High five, players high five each other
  2. Pound it, players fist bumb each other
  3. Switcheroo, players switch places
  4. Happy Salmon, players flip there hands against each other very fast, like two fish splashing.

The following video describes the chaos in my living room when we played the game.

Chaos!

As you can see the game is very energetic. However since we simply threw our cards in the air these would most likely do not hold that long. Therefor, I created my own “Happy Salmon” such that I could simply print out, cut it in pieces, and would not have to worry about cards being destroyed. In the process of creating these cards I also added some more actions. These new actions will make the game more challenging when playing with a large crowd. 

The game cards, shout out to Freepik for his icons: https://www.flaticon.com/authors/freepik

The cards background are transparent, meaning that if you simply use colored paper you will nice colored cards. Most pictures are self explaining but nevertheless, the following new actions are defined:

  1. Bro Bump, more or less the same as pound it but only with the knuckles and on shoulder height as in the picture. 
  2. Bro Shake, handshake in the air
  3. Pinky Swear, pinky swear with one another
  4. Hug, bit more intimate but should be fun nonetheless
  5. Handshake, seems obvious
  6. Teamspirit, for this action you need three people instead of two. You put each other hands on each other and cheer afterwards, something like, https://www.youtube.com/watch?v=jGmp3zdRLyY
  7. Teamwork, for this action you will need four people instead of the regular two. Simply hold each others arms as shown on the picture.

The cards are simply created in office. Below you can either download the source file or download the original card set or the card set with the new actions. Both files are for one player.

Have fun and good luck!

Which tripod to buy?

In August I went on holiday to Sri Lanka. During this trip I wanted to do some landscape and long exposure photographing. A tripod is really necessary for the latter. Furthermore, it was also a good excuse to myself to justify the reason to buy a tripod. However, as with any product, there are various on the market and sometimes it is difficult to find the best buy. Each one of them have different features and specifications, such as, expensive versus cheap, light versus heavy, small versus big, et cetera. As with most of the products which I buy I tried to minimize the price but maximize the features. The two most important requirements which I wanted to optimize, besides the cost, were

  1. Minimize the weight of the tripod but ensuring the stability and endurance of the tripod
  2. Maximize the unfolded height of the tripod but minimize the folded height

Based on those criteria you are quickly directed to the tripods which are branded in the market as travel tripods. Below a table with the tripods which I took into consideration.

Manfrotto
BeFree
MeFoto Roadtrip
travel
Sirui
T-025X
Oben
CT-3535
Minimal height [cm] 34 0 10.5 21.8
Maximal height [cm] 144 162.5 147.5 131
Folded height [cm] 40 39 31 30.5
Weight [kg] 1.4 1.6 0.9 1.1
Maximum load [kg] 4 8 6 4
Material Aluminium Aluminium Carbon Carbon
Head mount? Y Y Y Y
Quick release? Y Y Y Y
Monopod? N Y N N

After balancing the advantages and disadvantages I decided to go for the MeFoto Roadtrip. For several reasons:

  1. For one it had good reviews on the internet, one particular which I liked was the review by Jason in the YouTube video below, which I also recommend too you to watch.
  2. The tripod was not too expensive compared to other tripods.
  3. It had the highest unfolded height
  4. Of all the tripods in the table above it is the heaviest, however, I considered 1.6 [kg] still as lightweight.
  5. Because I wasn’t planning to use the tripod on a daily bases I decided that an tripod of aluminium, instead of a carbon fiber one, would be durable enough
  6. The bar to which the camera is attached has a hook on the bottom to which extra weight can be added to increase the stability of the tripod. Along with the feature that the bar could be mounted upside down, which added to possibility to take photo’s directly at ground level. Were two features which I particularly liked.

Apart from the reasons above the MeFoto Roadtrip had also most of the features which other tripods featured, therefor the decision was made.

If you are ever looking for a reason to buy a tripod consider the following reasons:

  1. a tripod helps when using long exposures, for instance, you will need this when doing astrophotography.
  2. taking time lapses, panoramas, panning and videos become a lot easier since you have great support for your camera.
  3. when using a tripod you actually think a lot more about the framing of your shot, this is because everything takes a bit longer, setting up the tripod, adjusting, et cetera.
  4. self portraits are of a higher quality then when using a selfie stick.

Digital Control Systems 1.02

In the previous blog we introduced the various types of signals present in a digital control system and highlighted the pros and cons. In this blog we take a a closer look at the digital control system.

A digital control system, can only cope with digital signals. That is because it is inherently discrete in time and space. This is caused by the processors clock rate and due to the finite word length of a digital system. For instance, a 32 [bit] computer which runs at 4 [GHz] has a time resolution of 0.25 [ns] and the value of an unsigned integer can only range from 0 to 232 − 1.

Figure 1. Digital control system in its most elementary form. Continuous-time signals are in solid and discrete-time signals are dashed.

Figure 1 shows the digital control system in its most elementary form. Herein $\mathcal{S}$ is the sampler. The sampler converts the analog output signal of the plant $y(t)$ at time $t \in \mathbb{R}$ to a digital measurement signal $y[k]$ at discrete-time $k \in \mathbb{N}$. As mentioned in the previous blog, the digital signal is obtained by sampling and quantization of the analog signal. In final, $\mathcal{H}$ denotes the recronstructor, also known as a digital-analog convertor (DAC), it converts the digital control signal $u[k]$ provided by the controller to an analog control signal $u(t)$.

Sampler

Figure 2 shows that the sampler exists out of two devices namely; i) a sample and hold (SH) device and ii) a analog-digtal convertor (ADC).

Figure 2. The sampler and its sub systems.

The SH device knows two different states. The first state is called the track state at which the analog input signal is tracked by the SH device. The track state is also refereed to as sample state. However because of the ambiguous meaning of the word sample we will use the track, which is also commonly used in literature. The second state is called the hold state at which the analog input signal is being kept constant for a short period of time. The hold state is activated when the hold command is given. During the hold state the ADC is able to process and digitize the signal. The hold command can be triggered by any logic device. While there are many more aspects and subtleties to be considered with a SH device this gives a summarized overview of its functionality.

Figure 3. The track and hold of a SH. Dashed red shows the original signal, solid blue shows the SH signal.

Various different strategies exists at what time instance $t_k$ the hold command is triggered. These are called sampling strategies.

  1. Periodic sampling; the sampling instances $t_k$ are equally spaced, that is to say $t_k = kh$ with $k \in \mathbb{N}$ and $h$, given in [s], being the sampling period. See also Figure 2(a). The sampling period $h$ is often also denoted as the sampling rate or sampling frequency $f_s$, given in [Hz]. It is related to the sampling period by $h = \frac{1}{f_s}$.
  2. Multi-order sampling; a pattern of sampling instances $\{t_k\}$ are repeated periodically, as a result $t_{k+r} = t_k$. See Figure 2(b).
  3. Event-based sampling; the sampling instances $t_k$ are generated based on a event in the system. For instance, when a certain measurement threshold has been crossed. See Figure 2(c) in which the signal is sampled at every $\pm0.4x \pm 0.2$ value.
  4. Random sampling; the sampling time instances $t_k$ are chosen at random, see Figure 2(d).

Figure 2. Visualization of different sampling techniques. Red line resembles the original analog signal, blue the sampled signal. Matlab code.

Periodic sampling is the most common in industry. That is because of several reason; i) most deterministic behavior, ii) extensively been researched, iii) easiest to model and iv) easiest to obtain key performance indicators, for instance, in time- and frequency domain. Finally, proofing stability for the other sampling strategies is much harder then for periodic sampling.

All State of Trance episodes on Spotify

I am a staunch fan of A State of Trance of Armin van Buuren. Therefor, I made a list of all the State of Trance episodes available on spotify.

  1. https://open.spotify.com/album/65rxkH0MLVAUfvGJU2HPk4
  2. https://open.spotify.com/album/5jtGUCgpoqvSNZH8WcQf8F
  3. https://open.spotify.com/album/2RLKYKweji0JBAi2OtxOCt
  4. https://open.spotify.com/album/51MG0dQ7aAON9YSeVQuESN
  5. https://open.spotify.com/album/3VlEbY9dHahYMVDur5W5JP
  6. https://open.spotify.com/album/2jh0ZxkDItwwlXlR28IymD
  7. https://open.spotify.com/album/46QhHtpLmgtlu9OiloGtac
  8. https://open.spotify.com/album/4WEIgZligoc0lqNQZH1BHU
  9. https://open.spotify.com/album/6KEof7LPZLLHVzkrqLdMAT
  10. https://open.spotify.com/album/2tMcgPF3PAliylcaKdmchi
  11. https://open.spotify.com/album/6QRawIT0hMoRIbBoVTE7aF
  12. https://open.spotify.com/album/7fG3Ojc9gcaWlDiEK0Khn3
  13. https://open.spotify.com/album/0rlYWWv1cqZ0dVTrIMwsdl
  14. https://open.spotify.com/album/78Jg3VsL3s6MQbvKCJO4Kk
  15. https://open.spotify.com/album/3LHyRc4hqhN1Ux6Ank35oH
  16. https://open.spotify.com/album/2B4fA79h4wcqhOfr9FHLa0
  17. https://open.spotify.com/album/4LdnyKph8K1Tfndu2gm4Ww
  18. https://open.spotify.com/album/0v7140z14LzlPUkBkZajsO
  19. https://open.spotify.com/album/2hjnBKdWMaxqzcNZsjvLo2
  20. https://open.spotify.com/album/0lLQFUfcGewYHzb7eNk2sU
  21. https://open.spotify.com/album/4DVm0heIq4WhnZCrvRgUcQ
  22. https://open.spotify.com/album/2aZSfgIuepJlGYDkExl3pk
  23. https://open.spotify.com/album/4ErwCMdhHH8Is6XcUnrgGZ
  24. https://open.spotify.com/album/55IIabrevVvjs1eMhYd48G
  25. https://open.spotify.com/album/5Ro8x51oqQ68yIj4Bk3MGC
  26. https://open.spotify.com/album/0vef8t0hukoNUgLB7hfbCh
  27. https://open.spotify.com/album/3Q0L1bOSN4l62aZb7jEb1q
  28. https://open.spotify.com/album/6IgdDmdw6gzLgI29zkFV5B
  29. https://open.spotify.com/album/68t45JtpzzFCF4a20fMr2e
  30. https://open.spotify.com/album/7drFmJQdsZJMlljBTYuB3J
  31. https://open.spotify.com/album/403W3zS9MhVD4hs3kg9Ylu
  32. https://open.spotify.com/album/4kMis3hXbMYU36seBGd8ds
  33. https://open.spotify.com/album/3u81K6jJ2BfgfJzu24RLWd
  34. https://open.spotify.com/album/2wtvQZtq6NBrOUoteDRbCH
  35. https://open.spotify.com/album/5o2pRlTv4dN7lLaBbGfikP
  36. https://open.spotify.com/album/4CeGI6njkAhaNf1NJO4Wbv
  37. https://open.spotify.com/album/5Up7R0jZYZUPUebZiQPzNt
  38. https://open.spotify.com/album/2lAD34Mk4U6NTbQaKk1uJi
  39. https://open.spotify.com/album/1fPPuhpzMEESzVXd40g7iJ
  40. https://open.spotify.com/album/3xIPtxGDbKlkHRjV6UgJVA
  41. https://open.spotify.com/album/3FxDAo5EDK125dNr8x6pah
  42. https://open.spotify.com/album/2fpveoRx9KpQ7FY1AzQkS8
  43. https://open.spotify.com/album/5eRQRAh2yCc8b8g7DbcSqf
  44. https://open.spotify.com/album/0I6fTQtxHssnaHhqyS1Z4n
  45. https://open.spotify.com/album/1EbNowqGV0ipSyIaHVpMqi
  46. https://open.spotify.com/album/6J36U4sw4wvM9PFld9wzQd
  47. https://open.spotify.com/album/3mzzoSUGh1XNdYdILlwTRi
  48. https://open.spotify.com/album/515DdJsne3J4PsGzErOEVK
  49. https://open.spotify.com/album/0c1mtJ3Oxt8K5eakvEUJWk
  50. https://open.spotify.com/album/0pG5saa87HINV2s8AUYgK9
  51. https://open.spotify.com/album/0YnmoFlO88JfnfxyKKxzhn
  52. https://open.spotify.com/album/4nksoSyt6ExdV1IFdxfX7K
  53. https://open.spotify.com/album/2KH2xVEbQlqCqNkme5c13W
  54. https://open.spotify.com/album/6rkZGXPlsm8O8H3AqLug4T
  55. https://open.spotify.com/album/3PAzlLPZ5yTCdhsMMqH0Kn
  56. https://open.spotify.com/album/4TsmmpCSwWpOwI6y8pK07E
  57. https://open.spotify.com/album/56qM5Y21wbvCW9l5GiAiaV
  58. https://open.spotify.com/album/2uiOpUMUYXU5n2BVgZ9Szf
  59. https://open.spotify.com/album/24GG2tFabhxy4r14tTTpbI
  60. https://open.spotify.com/album/4dikoEqBQ1roY7A6GpRkRc
  61. https://open.spotify.com/album/3GJsL1YDH1Z6t2xGaqWeHj
  62. https://open.spotify.com/album/2bnH26lvzzSkn6woQoio1s
  63. https://open.spotify.com/album/03HQobgAcTq9CZYeBu4k3O
  64. https://open.spotify.com/album/5xIi1BprJZq2VT0I5DR0xp
  65. https://open.spotify.com/album/0YeK921tnqamtQBorA32fr
  66. https://open.spotify.com/album/782OEROtN3DNWU05XULa2U
  67. https://open.spotify.com/album/50djmhc833RhARJOElKkWl
  68. https://open.spotify.com/album/0UIDCagWalM6i8NUTmeS7M
  69. https://open.spotify.com/album/386FGiY8B3PHtxsMBxiaAl
  70. https://open.spotify.com/album/5wzN0F4fpK8VwrKI7LFH5q
  71. https://open.spotify.com/album/2FV0OJCXqNVnhhNRgmpuKl
  72. https://open.spotify.com/album/7KxAfazFtRoPCpjQ6MBvfw
  73. https://open.spotify.com/album/1Y2U6lrw97kVIxb0cxHmzK
  74. https://open.spotify.com/album/3KVnbsmcKNrLs6oxrkgtFp
  75. https://open.spotify.com/album/7HHXN0woRAC4ecryagbCdd
  76. https://open.spotify.com/album/2OWxE2dfCb2LuZo5D3Dr2H
  77. https://open.spotify.com/album/3C5cg0ccswwrh5uMt9eTXu
  78. https://open.spotify.com/album/2ALmfvR1xM6aXALVZ4oux1
  79. https://open.spotify.com/album/70BQoVEPDxGC3Gb4fv9MCm
  80. https://open.spotify.com/album/4wWL8huSLAkQKOFEgptbRi
  81. https://open.spotify.com/album/3w1H3OXlktGj16qwaX5Sil
  82. https://open.spotify.com/album/709gu1b01VLMAmlj5qQeGS
  83. https://open.spotify.com/album/1lt7MXbzekZZT6nb2Z4UD3
  84. https://open.spotify.com/album/14mVnyJ1VLyzwdMBd3FzL7
  85. https://open.spotify.com/album/1QvofnlBEHhXkb9FAETAdC
  86. https://open.spotify.com/album/1liA6hIa9WD1ReVpIbb4Gr
  87. https://open.spotify.com/album/5i9W2LSga5v0vrzpzu66Fd
  88. https://open.spotify.com/album/5g0MvYFCVXTyMmAeROVd4H
  89. https://open.spotify.com/album/2iY0l7UBxUZqvTZUr0dXX4
  90. https://open.spotify.com/album/4sowBJxlo7V9wYNi3hadNf
  91. https://open.spotify.com/album/40fwtgaDpx3sEr5acgS71C
  92. https://open.spotify.com/album/6omTsqV2Qb0zQKHrDDqjdf
  93. https://open.spotify.com/album/5ADITh6041I7ceGrCc8Sgd
  94. https://open.spotify.com/album/2bYMMPHgBNRjlPWYKRz57e
  95. https://open.spotify.com/album/5OdDH0zcJ7kSTVsF900GQo
  96. https://open.spotify.com/album/2890ZyCCyedTDIZV4OAEJF
  97. https://open.spotify.com/album/1bZUwZci1QYBTfngCUHDfD
  98. https://open.spotify.com/album/0aCSNwaVxBsnCykheOsrfE
  99. https://open.spotify.com/album/1hRDIYdEBWbDJK2xN611AP
  100. https://open.spotify.com/album/2I3lQt9veNSDw7LknRzaji
  101. https://open.spotify.com/album/6IRNXHsIctPaOmGaT3aIOQ
  102. https://open.spotify.com/album/4B9s5i4u1EQCBcHMF130ai
  103. https://open.spotify.com/album/5XP5qfGUaUuvFycBfjWTLC
  104. https://open.spotify.com/album/5KKKEwcBjOj1R2FFPhAAtS
  105. https://open.spotify.com/album/6fHuprfapu6W4C4wUCAaee
  106. https://open.spotify.com/album/2nsIFD2cXPkdXslOPZP61r
  107. https://open.spotify.com/album/1s5NL9yr8yT33oPcAoGiqu
  108. https://open.spotify.com/album/1jsImIi3MIBmMh36cguMoJ
  109. https://open.spotify.com/album/4VHpgpURE6DHhHEWz6mTDE
  110. https://open.spotify.com/album/5coGuXVsHbVjZ4yUG49rmk
  111. https://open.spotify.com/album/7zchhV4YivxoTTTWgz1PpV
  112. https://open.spotify.com/album/7EXl4dzp9cG7a9gYU3JXJJ
  113. https://open.spotify.com/album/7rzDHsRcoHWZejvhonZzfD
  114. https://open.spotify.com/album/6ZKDhLih8cO2fnYz3V1oRy
  115. https://open.spotify.com/album/0fGRm8c8p0ehFTxfY6fhjY
  116. https://open.spotify.com/album/6VKCEw0CBqmA8gbq6lPVbJ
  117. https://open.spotify.com/album/7uIIedI8pHtalzpj5TAKjH
  118. https://open.spotify.com/album/15kakQ3Psf5TjQAYRdkm08
  119. https://open.spotify.com/album/61iVMAFH25HzJ5CSKUcRGo
  120. https://open.spotify.com/album/6VEEBclHX7tfOgj6hZ4IZH
  121. https://open.spotify.com/album/5pt9XNu5xVeLdsIAoW4Tzh
  122. https://open.spotify.com/album/5kWc6YxKeRvjWfV2cfQ3AZ
  123. https://open.spotify.com/album/6nlwIC0KVQdD4MW6mhp0aw
  124. https://open.spotify.com/album/4dGibs037LXTFhGFsr80JL
  125. https://open.spotify.com/album/1ixayckKODoYT1r3Sdq0tp
  126. https://open.spotify.com/album/5iLFct6fhawyQEmIecEoDC
  127. https://open.spotify.com/album/0pLc2hbMrI9WHr9StUOBPl
  128. https://open.spotify.com/album/7s9TL1n2T0Q10xDpu5OsPr
  129. https://open.spotify.com/album/1ZedL2Ys7rN2thimKnish7
  130. https://open.spotify.com/album/6Fvyy7F0kQysVvrU08a9rp
  131. https://open.spotify.com/album/3BeGpIoZSZxLWUX0IkwUsq
  132. https://open.spotify.com/album/1Nb0Zldgl8OB7MGf5quH8g
  133. https://open.spotify.com/album/0jz55IRy9DHWPFmWLaOW3Z
  134. https://open.spotify.com/album/6f2sf3yf9pYO38aSSVVydN
  135. https://open.spotify.com/album/23JyGPDJboU4jIel8Csc49
  136. https://open.spotify.com/album/1vVXIEq3Sf87ikHAltFdtT
  137. https://open.spotify.com/album/3aEcTsCCg1F8htx2RbiEZM
  138. https://open.spotify.com/album/5tOqrxbxw32hm0F1xMEOFM
  139. https://open.spotify.com/album/5EyRJaQ6r1sVin3y5eK3GD
  140. https://open.spotify.com/album/1lGLuCjmixoDlqwjBbMmhL
  141. https://open.spotify.com/album/3Q6gt061MMIqbALlnfUe1k
  142. https://open.spotify.com/album/1EnOsqGnTEQJpe2Crh78xe
  143. https://open.spotify.com/album/3sUYh0Tn7LssTFVaILZ98B
  144. https://open.spotify.com/album/26vdO58iKWvXAYwFSQQyZt
  145. https://open.spotify.com/album/3b9erLWsy3XmmrXxGwNWFi
  146. https://open.spotify.com/album/1dtkhfJbPr3ED7JPi6g3QC
  147. https://open.spotify.com/album/21rdvfTywvXcFfi3Z8MkEQ
  148. https://open.spotify.com/album/5dQO7AXOdouHYvmKPUPG9f
  149. https://open.spotify.com/album/7yclNCY9yJefUJXYDF2h0b
  150. https://open.spotify.com/album/7HJVRdwWncm1RmyLfA8CLw
  151. https://open.spotify.com/album/2quUFEbFQ6USEvNO9UijIU
  152. https://open.spotify.com/album/0fZVtQN4sUiQnXB0sTaSjf
  153. https://open.spotify.com/album/1Fv8xFAq1tWeSzcIcWDB9O
  154. https://open.spotify.com/album/4T8R34v2dMzaXpxpHQrudF
  155. https://open.spotify.com/album/6TVyadS59SQoKHE0hslEmC
  156. https://open.spotify.com/album/7gP7DrXkQ4dZl4cmdHFQY2
  157. https://open.spotify.com/album/3D37Lt0FJNeO0aNFcR3ocS
  158. https://open.spotify.com/album/69wlmRuFx3oOmCnk6WEw2e
  159. https://open.spotify.com/album/06aFTP1QGxt1xRCUoszXOW
  160. https://open.spotify.com/album/6UyjZ6t9X68p61LGD3LlJN
  161. https://open.spotify.com/album/4rZKDFeqipHigXrvFoMEKH
  162. https://open.spotify.com/album/0QieI8V1y2TujVJj5e3vBL
  163. https://open.spotify.com/album/5jwunXSF3xwEPq3YNAHFb8
  164. https://open.spotify.com/album/4F4wCvKYEsNrjoD0RKSN6K
  165. https://open.spotify.com/album/0Z1LvHwQ8hRALGHTRmrGVi
  166. https://open.spotify.com/album/7C5iFTn1WB9Sk4YLb2rZpZ
  167. https://open.spotify.com/album/1sC5UGYucW46U4ldDg5gY0
  168. https://open.spotify.com/album/5mGitHy7rHaEx4jb0zyEEd
  169. https://open.spotify.com/album/3cgv3y8gvGo8NVOSECZEQk
  170. https://open.spotify.com/album/3koIzB19oierUgIoiAKXrk
  171. https://open.spotify.com/album/1IinfrUT9b7QyCdZJU1G31
  172. https://open.spotify.com/album/3SBTzOAB8yP8HxBZus9mlK
  173. https://open.spotify.com/album/0u1H56qt5mXJ6z2blasWo1
  174. https://open.spotify.com/album/1mBtULzvQfMczUdFPZGfEa
  175. https://open.spotify.com/album/0hC6KcOUA3Mow0rJfvYbxj
  176. https://open.spotify.com/album/7IQMEbCCUXjGR46bF7BpBa
  177. https://open.spotify.com/album/5CMRbv1bpGubJiCUGr3xiD
  178. https://open.spotify.com/album/3gb50BX7kL1vQU97sN4xVe
  179. https://open.spotify.com/album/3I9JzeeQv7mBceprbStev7
  180. https://open.spotify.com/album/5Fx9NnZmHtkCybsbrF8Qit
  181. https://open.spotify.com/album/3UBA9mZvudrTVlRGd45s6q
  182. https://open.spotify.com/album/2jy86suo9ipki4xgoIJjd2
  183. https://open.spotify.com/album/3peCqfZsEYeBJxRCsjONjm
  184. https://open.spotify.com/album/1MLsHqKIy44GYH03OT15OL
  185. https://open.spotify.com/album/5Xab4RSAwAry1UGQBVxS1K
  186. https://open.spotify.com/album/5HXSB31bBUrNFWJw8ZYxhi
  187. https://open.spotify.com/album/3b0ShTBpO3FT5xFmIRh3cg
  188. https://open.spotify.com/album/2QMfJGTZE1g3Hky54Qncck
  189. https://open.spotify.com/album/0mHcBQs9VWocj7W9I2GlWt
  190. https://open.spotify.com/album/6ZMNIBZcaI4ffI4MplUL36
  191. https://open.spotify.com/album/4HRQJeEdnx7v4lb2aZNtli
  192. https://open.spotify.com/album/2cKh9RwQG0sxHkjg62RnVz
  193. https://open.spotify.com/album/2fk7m4Up4z3Iw1czG2mpmo
  194. https://open.spotify.com/album/2MbiRpXVuQAuRAO1RODSkb
  195. https://open.spotify.com/album/28QijJiALYLtjlHbCGi9XD
  196. https://open.spotify.com/album/2kaBh3AhSfhrJ4QNrV7j9w
  197. https://open.spotify.com/album/3zBHAQ9YOkQcgeOOyy0Ws7
  198. https://open.spotify.com/album/02tAIWhWYWXNIBdhbbbJuO
  199. https://open.spotify.com/album/4kpACBLqlUHzifUJL2kaRU
  200. https://open.spotify.com/album/3w2UMEgusbv1ZXPmYZyLDr
  201. https://open.spotify.com/album/3bqJFFB7ZW2q0RCGYAdZPr
  202. https://open.spotify.com/album/03D1ASAQQN8PsVBTarp1Ge
  203. https://open.spotify.com/album/0uERnFWXhVwYn9mMjzFdJJ
  204. https://open.spotify.com/album/5qVS4H1kgHJFZF7AlobUop
  205. https://open.spotify.com/album/1u79sBJ3teBVpA9xslBHU4
  206. https://open.spotify.com/album/7fq5L3TwK6zfxv1YqsiJ7Z
  207. https://open.spotify.com/album/61f0dvBSAQJtSrQdhLOFCn
  208. https://open.spotify.com/album/0BPwfedVT41a9dx9FxCBlJ
  209. https://open.spotify.com/album/0DwSNXjQ6Dh2n29SZXNotl
  210. https://open.spotify.com/album/7KQTW3U9lWPfw3P1jWoFXZ
  211. https://open.spotify.com/album/04re2cXpAuOuAe68q6akmH
  212. https://open.spotify.com/album/65WHlW329O4CEJwBSaCZmj
  213. https://open.spotify.com/album/21ax3FrvhlFZLWPzTHY2YR
  214. https://open.spotify.com/album/3eUE56iWH9L8WKVoYtzuqk
  215. https://open.spotify.com/album/1JhT08VIMjkrG1VOj40iYP
  216. https://open.spotify.com/album/4A0gGFGOKLuI987AcalJKz
  217. https://open.spotify.com/album/5CGY5q0BREESySHbx3kXon
  218. https://open.spotify.com/album/3W458CBMFMvDfhWDb4jinX
  219. https://open.spotify.com/album/5QpY8TeA57loMtDN8Qfj5x
  220. https://open.spotify.com/album/6kQUW99WNEqAWSdSAHIZHP
  221. https://open.spotify.com/album/4fpmWqXgqd7noFmghZxdsO
  222. https://open.spotify.com/album/0FzUuSX2lzPK2LbXt4ZnfX
  223. https://open.spotify.com/album/1bkhBl1H9Zve2qTIkERW94
  224. https://open.spotify.com/album/487YVJ4P4ki9JpdrtiNPMC
  225. https://open.spotify.com/album/25fTr2nvMRDX4ChIwnBr9n
  226. https://open.spotify.com/album/0jASzmKbW8GkdYzuhzGapZ
  227. https://open.spotify.com/album/4npcoJlonuj5WL0XNEPMqT
  228. https://open.spotify.com/album/3nolOcG2Pkics6DkPfVi5g
  229. https://open.spotify.com/album/2RGlHYf44UCyLpUMcpIrY1
  230. https://open.spotify.com/album/6brK1hncuqN7XdurovXfLJ
  231. https://open.spotify.com/album/6necCgZUOPU24xZKiUZe9h
  232. https://open.spotify.com/album/0DjnBO0QpGxSNPge1eqhL6
  233. https://open.spotify.com/album/48wUYBiZqZjL6V3sUjN22J
  234. https://open.spotify.com/album/4iqRsZ5BdHc5aip2ZP1b6j
  235. https://open.spotify.com/album/7jJUsdXAxdAfo1ezdt9ToZ
  236. https://open.spotify.com/album/1D59r42oHGkTRgMvAOjjR6
  237. https://open.spotify.com/album/0wTyEyAezfB4uRlNRsPX8n
  238. https://open.spotify.com/album/2X78ZS2poOKObff1qbhhER
  239. https://open.spotify.com/album/2hz2BXQraTwC561cw11obQ
  240. https://open.spotify.com/album/4yHnc3hUSmIOz0O1EnW6zU
  241. https://open.spotify.com/album/4AcmVXSjWga3tfB5tBQFYV
  242. https://open.spotify.com/album/1J7f8h7eWXogdX20GE5x28
  243. https://open.spotify.com/album/53IkzioXornMMJwotuK1Vg
  244. https://open.spotify.com/album/5e7eJaavAXQm2aGHj99EYN
  245. https://open.spotify.com/album/0aZRqznJIG3cSlt4L5QXOD
  246. https://open.spotify.com/album/5dH1Kf3Gap7dT4p0Eofo8U
  247. https://open.spotify.com/album/14ja9JPPvJhqM3cgJeynWs
  248. https://open.spotify.com/album/4bdCxkc8oP7ajgQVQZ8MIk
  249. https://open.spotify.com/album/7dl9lGdqzg1qNmZFxsqM5u
  250. Not available
  251. https://open.spotify.com/album/19uvOiLk22qhfI6RZX0gZr
  252. https://open.spotify.com/album/251PtGny53ZbCBpDncoikr
  253. https://open.spotify.com/album/5Uih9luDe8j4yfmetiJxca
  254. https://open.spotify.com/album/1Iby5Evu25SOPbMzlos6eI
  255. https://open.spotify.com/album/3OZihDW9Pkl7yzxjTHcQIt
  256. https://open.spotify.com/album/1qXfvbTXOVYgVS1QaigPLw
  257. https://open.spotify.com/album/0yxnJcvspI1aN9NVpZ8SI5
  258. https://open.spotify.com/album/1RZZ24A5Cvy7prjoaSq99L
  259. https://open.spotify.com/album/2cqSuyxJi8CPoE4WfA0kIB
  260. https://open.spotify.com/album/5RMP1VB32BueFfE1jvIhAa
  261. https://open.spotify.com/album/3eG7P4R4GTx4sL6W89XV8I
  262. https://open.spotify.com/album/3sICZj6IszU6rCjOjEddjn
  263. https://open.spotify.com/album/7n99eDSKgi7s8Usbit5bnB
  264. https://open.spotify.com/album/3d0UFiKUU2JdCpPjqBcua2
  265. https://open.spotify.com/album/2ELR1zMCnNM6GXXA0bC7pN
  266. https://open.spotify.com/album/65SpmQM5E7mHi0ztauljza
  267. https://open.spotify.com/album/1Pq7W3BfOFQlnc13IEE12e
  268. https://open.spotify.com/album/6Wk9xo4tPl4kFNnHIgtrVB
  269. https://open.spotify.com/album/7BArHqYzWRqwzHeaBWJPWQ
  270. https://open.spotify.com/album/4S4gAYJ0RJYHqC06yJWAta
  271. https://open.spotify.com/album/7mUzbyDusQAIhOA4fG9JQl
  272. https://open.spotify.com/album/2GY9FQSmd3k5le2qqlzRYu
  273. https://open.spotify.com/album/5ypVmB7zLBEnhKYFla4126
  274. https://open.spotify.com/album/7KMlWMww6UU97ZLciAWyuw
  275. https://open.spotify.com/album/4EJW8A0E7YfxL6sDTbk4xg
  276. https://open.spotify.com/album/4wHNfSPKHzas9UELglpNBx
  277. https://open.spotify.com/album/4jLIe1dne1smPVMVBfxGNx
  278. https://open.spotify.com/album/1vnQ2ccBdyVZVq9kVRnns0
  279. https://open.spotify.com/album/0TziQAyCvdvaKBow3NZiln
  280. https://open.spotify.com/album/0rttU2VExE9QVYa2pX3KDc
  281. https://open.spotify.com/album/6rYoFLcTiKr56VKKwJIL8a
  282. https://open.spotify.com/album/1C3vIUT6comkRQnHjukUys
  283. https://open.spotify.com/album/2wyzZW3JG4Ip7H6dSxmzpt
  284. https://open.spotify.com/album/1i2zNbtXA2H6nBtTHj4RQn
  285. https://open.spotify.com/album/0uHAmXEjv3qSLYlbC4UGqZ
  286. https://open.spotify.com/album/11zhBH36TGDatul6LMjqQs
  287. https://open.spotify.com/album/6qPEyNXvdfBssLDOfCQ63P
  288. https://open.spotify.com/album/23bgsWz1MrZQ9f7bAj0T2D
  289. https://open.spotify.com/album/6vaC6NbQJAiJe0qVcWhXL2
  290. https://open.spotify.com/album/33EtUq9QqYmkSaaJbN9NQn
  291. https://open.spotify.com/album/49cHpPnOBRV22lzZ06rB6R
  292. https://open.spotify.com/album/7lHZouIxhwB2MfDgRbaGzE
  293. https://open.spotify.com/album/3KrHF1AsSX201ufrYdqHpH
  294. https://open.spotify.com/album/6VEsK7aMPGI0tYpKTJPANw
  295. https://open.spotify.com/album/4o1DLkUjKF3T9ENswOwwUY
  296. https://open.spotify.com/album/4trtfhGthMLacXtfkiLZJT
  297. https://open.spotify.com/album/3BM77fWBWRZpbsNjqb2pTl
  298. https://open.spotify.com/album/0YWqU2aGViPMwBNBhLLDmp
  299. https://open.spotify.com/album/3r3xGi8QgK01DPI5jLpp8s
  300. https://open.spotify.com/album/5Qo4GQjt4Xh61NGdHAxL2C
  301. https://open.spotify.com/album/1NckDbBGGWyRGbq7AFgBcK
  302. https://open.spotify.com/album/2iXYF9TdfWs5vLc519vEdU
  303. https://open.spotify.com/album/6WWYy8LSERkrH20SumW52i
  304. https://open.spotify.com/album/2ottkxYJNWMvmRFI5fZH8q
  305. https://open.spotify.com/album/0IYyX64QC94iuYj2TWrmgT
  306. https://open.spotify.com/album/3aFboa7PIm35Fv5WnguIn1
  307. https://open.spotify.com/album/4ExCnhPOsVoTwR8Csg2vf5
  308. https://open.spotify.com/album/5ttQZCRFeQSltAKk0xdkh4
  309. https://open.spotify.com/album/07t7nQb6Vb5wrXHD32JGYJ
  310. https://open.spotify.com/album/1XS8HbIjqGj3xzBXPagAhQ
  311. https://open.spotify.com/album/1ryYd25YlYveJeHD1usFs6
  312. https://open.spotify.com/album/5bhtERwG0OI4BscnPcrxFO
  313. https://open.spotify.com/album/5GLcsEuZG56pan1qRgS4X9
  314. https://open.spotify.com/album/4DFWzK0l52ZQSISud4ylPs
  315. https://open.spotify.com/album/0UnCPZfVOPdmWa4qMZnahg
  316. https://open.spotify.com/album/0DCH70pVzU2MLyt1j8q8Bc
  317. https://open.spotify.com/album/2ThTg7HL7OgrYoGEm6LiA6
  318. https://open.spotify.com/album/0oguLmCS756gW7EacQZukd
  319. https://open.spotify.com/album/1usmDHHHvLwrGgjHOMsTGY
  320. https://open.spotify.com/album/4yITrTy0UuYP4As4xFax0O
  321. https://open.spotify.com/album/4DkPZWWZMhpZskXV6sXNJS
  322. https://open.spotify.com/album/0ZpGq2bmCKexXTauMi9Kzx
  323. https://open.spotify.com/album/03uu3oQZFRbfdMsrBFT6Wk
  324. https://open.spotify.com/album/1XQV8nUnslhzbYlwFVC2YK
  325. https://open.spotify.com/album/3xyzgVkSc3ZI7nH1U1RFDB
  326. https://open.spotify.com/album/0luFNc0sgj4FPsRMZQK3WJ
  327. https://open.spotify.com/album/5covNKQQSWsugHEUcEg1iU
  328. https://open.spotify.com/album/1Vqq2D0kwUk7vS9O00UT3p
  329. https://open.spotify.com/album/23NbsNtzAsFAJ3Ctpu5Eew
  330. https://open.spotify.com/album/2clGe884K3KI5zoXC3mzUN
  331. https://open.spotify.com/album/07u21oPaAShKRWpQO5Wx44
  332. https://open.spotify.com/album/5RUyg33hktRikOnYzl8OhB
  333. https://open.spotify.com/album/31COlo33CR3P3SDsmgPzyk
  334. https://open.spotify.com/album/431tH2I9puNFs5EX2ovVjI
  335. https://open.spotify.com/album/69u6HAke3ul93T8vS8gc4r
  336. https://open.spotify.com/album/6XWy2R7NE8o5TxGzaAIVSo
  337. https://open.spotify.com/album/1QgY1IOylVMTYPcJZAjh0d
  338. https://open.spotify.com/album/5W6TsNmmMWDORH17nshZre
  339. https://open.spotify.com/album/4YOSqEPcDSsKKCbumsxtdQ
  340. https://open.spotify.com/album/0Dpd61OC04DVc3CF5jCGqh
  341. https://open.spotify.com/album/4dCnJ0YJP61pHx74MYxSZB
  342. https://open.spotify.com/album/1zgYX62ZFDhyoAlTKmhVd6
  343. https://open.spotify.com/album/0s22qNtg3xorUlynaqVr4N
  344. https://open.spotify.com/album/5tVmQO1G4rzTZnCsI4fYvS
  345. https://open.spotify.com/album/39XJVV0zDRycawSgSkVpBY
  346. https://open.spotify.com/album/1zVRbVns5ufHFiR6exQb5H
  347. https://open.spotify.com/album/0J0p4IzBhgUHRTnHuM2E9g
  348. https://open.spotify.com/album/7jTzJKkxVedwXjPLWjQIaH
  349. https://open.spotify.com/album/5MJy4W03bOWFoNoOg5ad3J
  350. Not available
  351. https://open.spotify.com/album/7iQxOsR3g5jZPlFNvbTJvv
  352. https://open.spotify.com/album/1fT9W98nyG8khvCcbKrqja
  353. https://open.spotify.com/album/543lgtXYvEcF6eOg1jbSIc
  354. https://open.spotify.com/album/3OFn7k5K7nA3mshR4r7j35
  355. https://open.spotify.com/album/0U37xol5P4Y4m4QPWFpIaO
  356. https://open.spotify.com/album/2SNKFzuTsoDNnS1T2LRZGf
  357. https://open.spotify.com/album/6an5eUTHOmtgE4wMJcTMGX
  358. https://open.spotify.com/album/5aB0ne3beoktulN3XAKZSh
  359. https://open.spotify.com/album/6Ri0KqInIYns7CYWTw39SS
  360. https://open.spotify.com/album/28t2HmtpwQlvz0tGwJJflU
  361. https://open.spotify.com/album/1fJfeNhtClvLg5eVWTsNZp
  362. https://open.spotify.com/album/3o5ScIM0RZE9W7e752qAWW
  363. https://open.spotify.com/album/6ZQS86JQRGaGWNql6g7xmr
  364. https://open.spotify.com/album/28dcboZF4Fy9fAJKf20yDk
  365. https://open.spotify.com/album/7ahirE3EBdNGY4zzXUtXeT
  366. https://open.spotify.com/album/4XXgjZoV1hu2kNHlfNXpxM
  367. https://open.spotify.com/album/2gHnMVzeohwndjIp6rN52A
  368. https://open.spotify.com/album/4hYL5TdR4iczZj53Kx2a8R
  369. https://open.spotify.com/album/7MoJJ5y52HdxGGAypuYR7V
  370. https://open.spotify.com/album/5Wx2iz3rcUPvjD4WFvIFnm
  371. https://open.spotify.com/album/0aIW2pUVTMIxkLTcmjQuKd
  372. https://open.spotify.com/album/1Pkf0Cdd4ZmQZ9miU1QGRB
  373. https://open.spotify.com/album/6M4TZdvjKkEZhxcPAXn8pL
  374. https://open.spotify.com/album/7C1qRaTHPlrim813qa257o
  375. https://open.spotify.com/album/1mCnWGW0C8uXkFv8MmAhm5
  376. https://open.spotify.com/album/10ALht0p4lkEwkiby0exLN
  377. https://open.spotify.com/album/3nIpwgri9qPh0IWRLoxTnY
  378. https://open.spotify.com/album/4Wi5wXOcq3Z6g19Hukq1jT
  379. https://open.spotify.com/album/2B4eyR5OJCLYGj9qqpFLMP
  380. https://open.spotify.com/album/2FdWlTETQWrcZcIUyyLbwa
  381. https://open.spotify.com/album/39sXyNXpPvFcrKSHdhL1vm
  382. https://open.spotify.com/album/2WC780Qs4rJF3DnUUfdYrF
  383. https://open.spotify.com/album/7tkwzmxdcgVJnJqMA9IAuS
  384. https://open.spotify.com/album/3JLgZ2QvmVIdKvKG4dQ26u
  385. https://open.spotify.com/album/5wCYO3el0SIVG1A7Ktm81z
  386. https://open.spotify.com/album/1QDJKE82JXO0yGnl6bbZ1C
  387. https://open.spotify.com/album/0meO6vAHWoqXvWSXpxOJ2O
  388. https://open.spotify.com/album/55i5Bua2otTtAPqvLdfpru
  389. https://open.spotify.com/album/2DtshzSiIEoAyIrDWXNdRK
  390. https://open.spotify.com/album/5pViHiFuHyp96AJh8EGJXr
  391. https://open.spotify.com/album/4g8DTlncFNDDGq97yHQrfZ
  392. https://open.spotify.com/album/3BMdKiY9FviTu9hmQnjck5
  393. https://open.spotify.com/album/4KTdtueOaloJJQCcRcwLgn
  394. https://open.spotify.com/album/5ItYDrjWUbIeh9V2kiZ2QH
  395. https://open.spotify.com/album/1GBtBHrW5hLKYnLdJ5aoyk
  396. https://open.spotify.com/album/1BAODpgURuBCxvBpvZKc4Z
  397. https://open.spotify.com/album/1lcLaz1pNefForsW8G4xe1
  398. https://open.spotify.com/album/0k4U5hKcT7eMCfyqVvUZD1
  399. https://open.spotify.com/album/3k5wvpIVQZU52thquXusyS
  400. https://open.spotify.com/album/2805227DhkIKafIZK5c7Mr
  401. https://open.spotify.com/album/2eQfQnFIA0bythJFR1Hk0h
  402. https://open.spotify.com/album/4UvJSW4emPEC2xu2iS342V
  403. https://open.spotify.com/album/2cjeTLa0bipTBR03AyZVic
  404. https://open.spotify.com/album/4U8tnonqeMOrQHffHzFeJJ
  405. https://open.spotify.com/album/0wgQ8mM6ITPmIpv3FjBoTZ
  406. https://open.spotify.com/album/3s4OdAZedIGlCyRWrf4zSB
  407. https://open.spotify.com/album/0u6U7SN96MSKm4X1pzomw5
  408. https://open.spotify.com/album/3ot7D41CRCZZBIwuVOEgrj
  409. https://open.spotify.com/album/2Tr3vOQGC9Dnn7EBdctmAA
  410. https://open.spotify.com/album/0altFRsg1biTd7vf60fCRl
  411. https://open.spotify.com/album/4onkTJsORwjkWibI2FjiE2
  412. https://open.spotify.com/album/384EVRX2Vb92RRv09wuMZk
  413. https://open.spotify.com/album/1ZetT28sSfCyL5ao7gAhG1
  414. https://open.spotify.com/album/4Hc2HPKLBsr5aYXwG0l5Xc
  415. https://open.spotify.com/album/5JbflkoLbe8oUzQZzVYQxG
  416. https://open.spotify.com/album/5u9KfrvxQxE9aUvxldv69d
  417. https://open.spotify.com/album/0paGswEcAH915VOtb6LYQB
  418. https://open.spotify.com/album/4hGahWdeGRORIhS4PrIzUt
  419. https://open.spotify.com/album/11vSn1jSBaVG5SvW8EhnNv
  420. https://open.spotify.com/album/2vnPbg1xuxlgU2LuLV3p9F
  421. https://open.spotify.com/album/2XGASm0Chjun7eCg9OqrCN
  422. https://open.spotify.com/album/2lZkkIr3ZlTZYABSGj48Sp
  423. https://open.spotify.com/album/1OPtLe9ZHWwCvwYjYwINv0
  424. https://open.spotify.com/album/0pAttOI0AYVhauyI4OFaQO
  425. https://open.spotify.com/album/7KMOq7APYdd8Mo8A2ViJNa
  426. https://open.spotify.com/album/479NaQxwZOvrgMtVRuoOdo
  427. https://open.spotify.com/album/0MHMgjQfvPH69JH0dF0ijH
  428. https://open.spotify.com/album/5GigSNZMzkszx0DJz01Zi7
  429. https://open.spotify.com/album/63zV9RdTL3teNiUsdDmDMn
  430. https://open.spotify.com/album/6LAJEQGtt3K1DKPDuDMYOP
  431. https://open.spotify.com/album/6dIFuyJ2pO5FIYV2LdhoQb
  432. https://open.spotify.com/album/7rViTpTN1yhmE78NnKzQh9
  433. https://open.spotify.com/album/0fB5FsptKkjBFMXh1eZRNI
  434. https://open.spotify.com/album/7iAYxyAVVzY60ZCcZqTN9a
  435. https://open.spotify.com/album/2OB2P2NhdJDbMzI9Gf0I0S
  436. https://open.spotify.com/album/3aerQCXOxulNYBd0sHhU79
  437. https://open.spotify.com/album/3OuEEdqHlbBxWoebdTPaG6
  438. https://open.spotify.com/album/4cUEIR2LBT89rdiO8DIp9O
  439. https://open.spotify.com/album/4g5Iaj54dSVLFRQwgHJADZ
  440. https://open.spotify.com/album/3P39IhTK1KwuJbVA2VYhdL
  441. https://open.spotify.com/album/0A5ejs5nCt8BqonF0hULX3
  442. https://open.spotify.com/album/7cxpF7TleTjfkDTfIfi0kM
  443. https://open.spotify.com/album/53TeeYX1DAHOT8j27xSMQO
  444. https://open.spotify.com/album/4GxfZjOChPxs9ZR7BDmb5T
  445. https://open.spotify.com/album/78BLxycnqP8VvtfewCm6FY
  446. https://open.spotify.com/album/26lkxXl6JaiPOVoPDTG0Eo
  447. https://open.spotify.com/album/2omT0mp4AHjFPt8b2SBV6s
  448. https://open.spotify.com/album/43b27D28tjoLpyAeKX2Spp
  449. https://open.spotify.com/album/4HJlHBMxIqHuB5q5gU8LG7
  450. https://open.spotify.com/album/4DJLYSqjXSdCZYnLB5lpzn
  451. https://open.spotify.com/album/2BE7X2j6bUrV74VIspWWdk
  452. https://open.spotify.com/album/6Iy2i4cnLE7w4KIw05HNaq
  453. https://open.spotify.com/album/3jCPN1PIXRY4V6BBga9oCO
  454. https://open.spotify.com/album/48whXFFd1Aqj8dqUZiO3wJ
  455. https://open.spotify.com/album/23IiAyVU04NAI5qhBsUHXH
  456. https://open.spotify.com/album/5Ne1bwZhdVYhigSWnROj3z
  457. https://open.spotify.com/album/5hd2eiHOoTRO9qmyxdvMI4
  458. https://open.spotify.com/album/4aoai8pla0Gn42u3BZhgKC
  459. https://open.spotify.com/album/16QWA4Hf10ZmOvTTou0rIe
  460. https://open.spotify.com/album/2nlqLr7Cd7FYHpdpCZjvHQ
  461. https://open.spotify.com/album/2KzK2rLAB1O5OlO5BPnGMz
  462. https://open.spotify.com/album/3UIjcaeoF9tuJxxYFNMPTu
  463. https://open.spotify.com/album/0NW9aROjUlAtZEy90B0fW4
  464. https://open.spotify.com/album/4nf8G9ZO5aE0vbhiZgIx4G
  465. https://open.spotify.com/album/6zrNd9VIVpqwMDjUPEzpaA
  466. https://open.spotify.com/album/0WvOfbVE8WrWrPxZRxoqBj
  467. https://open.spotify.com/album/6N0GeKBIGmnct95qfyPT3k
  468. https://open.spotify.com/album/6as6jKx5nOi3MLWXojz7Gu
  469. https://open.spotify.com/album/584SvpcI6AxUzqWYdKhMtS
  470. https://open.spotify.com/album/6wTKkrEVt7PNr9Ac4fYYwH
  471. https://open.spotify.com/album/2RWq5Uvq8qmup3VnIQeMmj
  472. https://open.spotify.com/album/2zrDy3BrORu0KYungn8fIs
  473. https://open.spotify.com/album/4xPmvE4wSemp0rkrStZL1e
  474. https://open.spotify.com/album/59gsirCjCvXwMubydohgIw
  475. https://open.spotify.com/album/7nTgzdOQxBXVqmgA8PwMA1
  476. https://open.spotify.com/album/7ByHDG353ZCVVWmCLGMFiA
  477. https://open.spotify.com/album/0mG1tSbDU3HnILuGhriPiZ
  478. https://open.spotify.com/album/2WCdPz1w4HZBOxpkC7KlAz
  479. https://open.spotify.com/album/6S1fx1AqdqRbwsczcTK3wI
  480. https://open.spotify.com/album/0K0EOJkvZNvR7yURahFbeY
  481. https://open.spotify.com/album/4iCKzjq4pqHlMjIiT3FI5w
  482. https://open.spotify.com/album/5z6fKh8D1BR394hkOtK9nr
  483. https://open.spotify.com/album/5ZbY9yA1UNNkX7x4CI7hHm
  484. https://open.spotify.com/album/5sK2W5DWvWr8LlOAjx2yQx
  485. https://open.spotify.com/album/2SyxSGJmOwI45Ycx1AylMh
  486. https://open.spotify.com/album/6oL8BLMe74veR0f0GQcL5j
  487. https://open.spotify.com/album/7vVS6Cqab8jupzkhQaOT6I
  488. https://open.spotify.com/album/4yVKHhQCqy3KmYDRusatWn
  489. https://open.spotify.com/album/7uEcBEYwCWsDakCZDswSMR
  490. https://open.spotify.com/album/4XAHIbggA8FD6QOIpZTCDW
  491. https://open.spotify.com/album/47RzLoK9E70y3K1av3AmM3
  492. https://open.spotify.com/album/2OyTJLzFyjIZWprUXucJFk
  493. https://open.spotify.com/album/398IBFmbp55htjG8z4nsg0
  494. https://open.spotify.com/album/1rWzzBYkFHXvAnOuRgidII
  495. https://open.spotify.com/album/1jZRmGFaM1WgiTUGijzjlM
  496. https://open.spotify.com/album/0O9lyJp0VEnduWtROOivqc
  497. https://open.spotify.com/album/5ikUKXsaXl1HQ1RAyLttdM
  498. https://open.spotify.com/album/0VKTdprVML2wTVVkwI1SEU
  499. https://open.spotify.com/album/0y7v8tbVLzDHoPzltxz5RC
  500. https://open.spotify.com/album/3FXNiVRycRLea5yzzVm8ge
  501. https://open.spotify.com/album/62MaQucDSOnEjTwwBjQgpm
  502. https://open.spotify.com/album/3FXNiVRycRLea5yzzVm8ge
  503. https://open.spotify.com/album/3h6i49HVOKbrZmuHzwuLVa
  504. https://open.spotify.com/album/1h3M5xSuaccxA5IefEbbIi
  505. https://open.spotify.com/album/3T0maCrA1HsBdWSOIN4vUU
  506. https://open.spotify.com/album/0WCT5t9LATLGtLVr8fiXca
  507. https://open.spotify.com/album/4cqghg4Bjcf7FoTzK5064n
  508. https://open.spotify.com/album/7GaXTM57Zw27ceYORvWXii
  509. https://open.spotify.com/album/4dyflNPX2wMxCMX5Q942Tm
  510. https://open.spotify.com/album/4TEuiaeouapFq6vCcAeNuB
  511. https://open.spotify.com/album/6Ey0sfhhHJpBXCaI3gOLa9
  512. https://open.spotify.com/album/35v8jfW0BTfN4N2qGB4iVD
  513. https://open.spotify.com/album/41XcxwlgeYRLdw84NSAZxm
  514. https://open.spotify.com/album/32cO8eaZLDi6j0Rac57HIz
  515. https://open.spotify.com/album/66iTWTj4eJq5qtpo9jPe30
  516. https://open.spotify.com/album/6W4dVcedHsE4cvi23KqimG
  517. https://open.spotify.com/album/4lwFVXTYGDQcRcSrdLFW5e
  518. https://open.spotify.com/album/1elNVs180SBoER05LK1Tzc
  519. https://open.spotify.com/album/6NlNHqO4EiziwSefeSWixC
  520. https://open.spotify.com/album/26fYcDSf1yzpgyPkFRbx4R
  521. https://open.spotify.com/album/5QHmTY0OAQSjWnW8eANg6g
  522. https://open.spotify.com/album/41LNRAW4mpHRRxkeuzMuJ4
  523. https://open.spotify.com/album/7cpsPeKY6c17kHCZDwnvHw
  524. https://open.spotify.com/album/33qehL2Xio8nnpja577Mu2
  525. https://open.spotify.com/album/4ywV9YulcX9w0CqfX5eUrY
  526. https://open.spotify.com/album/3fHlQoZAKc3rmiP8I0IZgu
  527. https://open.spotify.com/album/0aZiwZmRfvtpEOtoZRJZvm
  528. https://open.spotify.com/album/0zrCGMHXj4EdavPuhTjLkq
  529. https://open.spotify.com/album/1rdzBS85MS2b1dFcvPVO6z
  530. https://open.spotify.com/album/50qMwUOlkTrXubPeRC4QIH
  531. https://open.spotify.com/album/0R43Q93s1kvD8Zk21J9gqD
  532. https://open.spotify.com/album/0Y25I0MDdCoLlt2VdFJSGE
  533. https://open.spotify.com/album/11o6ZSnTO5xp5iQuY0ZsPv
  534. https://open.spotify.com/album/013leHHUdELccCC7MQp1WU
  535. https://open.spotify.com/album/5uPcCxamRBhmKLQL3rxvxZ
  536. https://open.spotify.com/album/5BULobs2dpJNhd7hWTClK9
  537. https://open.spotify.com/album/5cLM3M3lJjJ592BzxDggpR
  538. https://open.spotify.com/album/48mrrNrShdcj9CyoVYKyvJ
  539. https://open.spotify.com/album/2v2pP5NFSaj4YwaokjsQaZ
  540. https://open.spotify.com/album/71Ep10UeiRPQbRmBqTOCgV
  541. https://open.spotify.com/album/6eTD11XlG9MORyhrUrmuwf
  542. https://open.spotify.com/album/6c8W35s2YSPaIioHHM3X5s
  543. https://open.spotify.com/album/6C6FUZ5RUv3eU0fkomc1eC
  544. https://open.spotify.com/album/1QdmpVAVby2cFbq9K84Ymv
  545. https://open.spotify.com/album/6RNpH4MdtLqt6osXCjMviY
  546. https://open.spotify.com/album/20IiJk3Le3lWySaWa7NWMW
  547. https://open.spotify.com/album/00dQPmQ7ATLrqwKxI4blYe
  548. https://open.spotify.com/album/0iG51iyrGlxRFzNqCpBzGZ
  549. https://open.spotify.com/album/6exZCwBRBbAzDrGMLddQws
  550. Not available
  551. https://open.spotify.com/album/7wFAG2zc7T1nhhfgIuQqg2
  552. https://open.spotify.com/album/0Odlq5JQlo5ls8Hw024Yau
  553. https://open.spotify.com/album/1hJEZUbaVmbfGpruqcMXig
  554. https://open.spotify.com/album/0aKqUmdIOV4aLijM2Nz59C
  555. https://open.spotify.com/album/6VpBzcFWH4lkpDTpyBbzqF
  556. https://open.spotify.com/album/0wVhEst23T5zzU9GN95VEm
  557. https://open.spotify.com/album/6cw8wqGfzz0WzsbYPyVnQW
  558. https://open.spotify.com/album/5oTuXKO1uoHbZ14v9j1TtD
  559. https://open.spotify.com/album/70lBPrJC9gwgF5WC2wNTUA
  560. https://open.spotify.com/album/3mrVDupNV7HChZ8OI0VXb2
  561. https://open.spotify.com/album/2Tm9UCaA7EJ9uhxC8IO0ef
  562. https://open.spotify.com/album/1RIXvfljQYznufLwpDfpoZ
  563. https://open.spotify.com/album/6cW24HDgWTVusBDVhhw30l
  564. https://open.spotify.com/album/7h7AAN2DIrXERvf1jtWPp2
  565. https://open.spotify.com/album/5U6oqSHQCVAQNxz6ezJJJ9
  566. https://open.spotify.com/album/53vqUf7MPDPdRF9Nq3YKFU
  567. https://open.spotify.com/album/1SIWKP05RCy38umLUs6iQZ
  568. https://open.spotify.com/album/5z77RW62j1Q9vpGzyhNGv6
  569. https://open.spotify.com/album/03KHdAHJDXg1bfs0sF8tgh
  570. https://open.spotify.com/album/2BYM0uJrU6xcBQ1qb9a3Nl
  571. https://open.spotify.com/album/3DuNqY0zM3P7TWF8nls40o
  572. https://open.spotify.com/album/395P27x9H0p5CgjFh4qISC
  573. https://open.spotify.com/album/1qlYkmtHD8AyuO0NgY5A5D
  574. https://open.spotify.com/album/6LrvmLa6ibh7FKkiPFGMGg
  575. https://open.spotify.com/album/0A2T4xxj48Ds7UVbJiAb6T
  576. https://open.spotify.com/album/4yWredJXuZyy8FGJwFU24L
  577. https://open.spotify.com/album/2yWahqzklLegAGfUWfUdjl
  578. https://open.spotify.com/album/5bfmLYptdXCYSFCzP24pxJ
  579. https://open.spotify.com/album/65hyZNfHVis70kS0Zc4TB9
  580. https://open.spotify.com/album/6RLtLId01fPZfASTSdyobp
  581. https://open.spotify.com/album/45pz1VrHD4hK5NqX7aFt94
  582. https://open.spotify.com/album/4KQAtRz7H53uz27YIQEQoS
  583. https://open.spotify.com/album/2Y2FahTxGjM7lLwooN1ADG
  584. https://open.spotify.com/album/0E4VGDbltfQKqAzUfNHtkk
  585. https://open.spotify.com/album/3uyYG0idyW3v95VDo1fkmG
  586. https://open.spotify.com/album/7LLLBGVa2JfMFjROdQQkko
  587. https://open.spotify.com/album/465LGiCXDnU4QjZKCcpJ55
  588. https://open.spotify.com/album/6ZfNL42nUaH5a3eaIfHTTe
  589. https://open.spotify.com/album/643TERY7RytFeoC0g5lKHS
  590. https://open.spotify.com/album/4UUIecQdPaHXHXhxrw18pt
  591. https://open.spotify.com/album/6IjVferEoO4PNj3i6oMLAr
  592. https://open.spotify.com/album/1TOkhuLGiMqfH1T7oOPlw4
  593. https://open.spotify.com/album/5S5aE7bk80g0UmQFoA3Ggu
  594. https://open.spotify.com/album/0fVtXaEsklW8JP2hkQqgir
  595. https://open.spotify.com/album/39lccp6vg5ITWapnaEsEQO
  596. https://open.spotify.com/album/5O6INWLCILBUFciNVgpsDb
  597. https://open.spotify.com/album/0FWsnF3wC5JNIoF1bavCQU
  598. https://open.spotify.com/album/7B0P60wuZvGA3u6OTz415V
  599. https://open.spotify.com/album/1t2rjynibMuDZ2EffSjwSo
  600. https://open.spotify.com/album/66wqtm7QBg5ivkvt8NN3uI
  601. https://open.spotify.com/album/6U09ed4psTeEZQvUUPqZTv
  602. https://open.spotify.com/album/5vkDF4LokO0vrqepqYZxVD
  603. https://open.spotify.com/album/60JyztJzWr4x6qGDxvgeyx
  604. https://open.spotify.com/album/7syyZwq5FxzTf9ys0RP9Nh
  605. https://open.spotify.com/album/0lRcZ0whtOLKOpcT1ftEtt
  606. https://open.spotify.com/album/0l15buO0CV0ijGMssKf7aw
  607. https://open.spotify.com/album/6oHw3EdN6WSBVDj3QJz0qI
  608. https://open.spotify.com/album/5mBvqC3GJOoyMkLPbQ3x57
  609. https://open.spotify.com/album/1phs4P1pFHVK5yvPi6ya2t
  610. https://open.spotify.com/album/7sKDtUi4CHeEiymB1gQARm
  611. https://open.spotify.com/album/0fBARYj7HN8owr6ghRgZ1W
  612. https://open.spotify.com/album/2nIMioMyrzPgGfwmhTYwaH
  613. https://open.spotify.com/album/76TVILcMcgvPdtbokcrrQH
  614. https://open.spotify.com/album/4O0k1zpEEzeKs7L40D014N
  615. https://open.spotify.com/album/4A8IWsaoXvI2CIQZUMbCVK
  616. https://open.spotify.com/album/6bYmsewuAjapZMmMZ7AnWB
  617. https://open.spotify.com/album/4SRfexvVf8m7sYqlBEiDvM
  618. https://open.spotify.com/album/41mMr26pNt3JgSydyQMXGL
  619. https://open.spotify.com/album/72XQHIuKzB87Yrv5QoVift
  620. https://open.spotify.com/album/0KhG6czT32cBx7c40RKIIb
  621. https://open.spotify.com/album/4su2JLPn41r75TnzCBMBJL
  622. https://open.spotify.com/album/1iqbwg2KTvqRVCyAPgcU9Z
  623. https://open.spotify.com/album/38VU6qZaKO2G3UT2SDql8V
  624. https://open.spotify.com/album/3flPvSGXyijrVyRUhbSeC0
  625. https://open.spotify.com/album/3bgmQo0Q3uCY3ggFAE9hwQ
  626. https://open.spotify.com/album/5wzkwj8zUJY2eMp4HIbE21
  627. https://open.spotify.com/album/7atbwQ8sd3FKxM3fv7r4CZ
  628. https://open.spotify.com/album/0EC11F4TFcc0PyBAsvufdl
  629. https://open.spotify.com/album/6p6SlHFlvqvxMpr5hNLJ1c
  630. https://open.spotify.com/album/0dzKr9KJMECLytifGBz7zn
  631. https://open.spotify.com/album/2G6DAn7ii3ms1oCc0CCQgl
  632. https://open.spotify.com/album/1DEjFkRmUmunzbTp7Zo3IK
  633. https://open.spotify.com/album/72WlqOX4HyIoeMVjDJQlKL
  634. https://open.spotify.com/album/7rKGqTsB9rIL4eZgXMVAiL
  635. https://open.spotify.com/album/7kzknb22gYuFpUNLgwQn4z
  636. https://open.spotify.com/album/5v7PzpdoGbcr9oyS5OOeIL
  637. https://open.spotify.com/album/0xo13AN9n5r6ie5bNmrK8u
  638. https://open.spotify.com/album/1SjGehD5HoDDaICquaTbm6
  639. https://open.spotify.com/album/5T5B6mJ2UrE6U0TnYSP30k
  640. https://open.spotify.com/album/55sq2YMAZO5vQFTs4hBQMr
  641. https://open.spotify.com/album/4VC1MtZnDh2526riqCny6B
  642. https://open.spotify.com/album/6G02OEs7wAGS3B8t1sW7tv
  643. https://open.spotify.com/album/7DsDZ4VEyQDYx2ByfFMGcO
  644. https://open.spotify.com/album/07knW8ZBWk4bxXstwaVeQF
  645. Not available
  646. https://open.spotify.com/album/3CRyTUToJeE1pf1zzWJPuv
  647. https://open.spotify.com/album/2rMUSPg1H1QcsU2rvslbtG
  648. https://open.spotify.com/album/3GNPgR3EMGPrfR1ZMQvuRe
  649. https://open.spotify.com/album/7t86Hr8bvS4l9GMFsTmsLH
  650. https://open.spotify.com/album/2t1G5wTIbFL82Yzn1UOsZS
  651. https://open.spotify.com/album/7dBtSFa7O9O8FiqKE0OAVO
  652. https://open.spotify.com/album/1Wva7NGz6tedQOkKnp7UeE
  653. https://open.spotify.com/album/2Wv3rXs2IOhRe0qXg0OEQf
  654. https://open.spotify.com/album/67BtKh0pUaF6UGUDAkOs4Q
  655. https://open.spotify.com/album/1ZDGhE8dMUmbSbQM8Iq3l4
  656. https://open.spotify.com/album/5svL3ecRMZY0OnLhDU92m6
  657. https://open.spotify.com/album/3ZixKOkIuoeoQFlebeLkYW
  658. https://open.spotify.com/album/5hIpZeCmrJgdJE6dsLP9Y4
  659. https://open.spotify.com/album/525Ha2MSJ5Dz5AgLttsIWZ
  660. https://open.spotify.com/album/1A7wdWEWad9RgSsDqTkh8F
  661. https://open.spotify.com/album/2mxTPrtNMUQ8CvYFWp3UrC
  662. https://open.spotify.com/album/09OJ3NVXLV9jIiZ7ucckIO
  663. https://open.spotify.com/album/27tTds4aIqJoxKsLWciaoF
  664. https://open.spotify.com/album/2NJLsC8C96jDEKfQruTj5j
  665. https://open.spotify.com/album/6KdCBWwhmv65q7dbTdGq6P
  666. https://open.spotify.com/album/2pJNDzURbc7XCs8abMVSWT
  667. https://open.spotify.com/album/1ID8HeQzVJpvhTXJ2sv1eT
  668. https://open.spotify.com/album/09HCDSCHJyk7qyeOO4rhG3
  669. https://open.spotify.com/album/6wiblAC0MlkoNTz6b0VkbN
  670. https://open.spotify.com/album/50ZkNGFpAsSZ5iyGDo9xtN
  671. https://open.spotify.com/album/2308kdXki23zw983eJgsZg
  672. https://open.spotify.com/album/3i9DUBnVrZOFzISk13YoGS
  673. https://open.spotify.com/album/1gi7g5xP9nziUOKBwIWk6p
  674. https://open.spotify.com/album/6gRSEZvRiKZdcwp4pClnnP
  675. https://open.spotify.com/album/4WV9gQ8ey5grbSzVqrPjWj
  676. https://open.spotify.com/album/75XM9Gr2DlzOuJNzpyc1Dh
  677. https://open.spotify.com/album/40wMhAptZwMbOsgu9E2VF5
  678. https://open.spotify.com/album/1Z0V1AermEQCiFAUamfqo3
  679. https://open.spotify.com/album/68Ai74QurGyth0CQTiiKL3
  680. https://open.spotify.com/album/4eYBvwszvlyPMeD5YMgNCA
  681. https://open.spotify.com/album/4VVTE8zw3MIfQ6I3vEHytf
  682. https://open.spotify.com/album/4fBzpLCbI78L5HB63FEYXv
  683. https://open.spotify.com/album/33BzAiXOLvXQLHVltWhE3z
  684. https://open.spotify.com/album/00du1moeklAMg3BEEOBJ76
  685. https://open.spotify.com/album/7puoqiR3WL4Zf7wEgS4twn
  686. https://open.spotify.com/album/3TlXgkZ0LCLr5YDV2HgEPp
  687. https://open.spotify.com/album/5yV2UN2EvJaQqOYiaSmbBJ
  688. https://open.spotify.com/album/1jzydTo9jmmEJN4pap77Me
  689. https://open.spotify.com/album/5b4DztImOrZuYgIBfEaSRZ
  690. https://open.spotify.com/album/7hHRELEhR8juc2OlxPXURZ
  691. https://open.spotify.com/album/4H37Sjw6Kg2qBFIppulF8E
  692. https://open.spotify.com/album/76dNX3Z81XYSE9Zawn0GzH
  693. https://open.spotify.com/album/4ZgPUrTv71rdkjR1ts2Mcy
  694. https://open.spotify.com/album/32bf8XSafFhsbNlGCPgw2e
  695. https://open.spotify.com/album/72WlqOX4HyIoeMVjDJQlKL
  696. https://open.spotify.com/album/26hH46sxLchYhT2xf7P4R9
  697. https://open.spotify.com/album/0QiamfLcIbvrrnIlkNzVoA
  698. https://open.spotify.com/album/1tkd1ABbW3CXPUrqctbp7E
  699. https://open.spotify.com/album/1nI4kYYcd9vqp5aJfxTptw
  700. https://open.spotify.com/album/7BG52Hyc3vVGJvW6Owi1IK
  701. https://open.spotify.com/album/1lCebT4bHPFYwkw6BV0yQr
  702. https://open.spotify.com/album/7qje1oCecBX6kBvlB9Eu6k
  703. https://open.spotify.com/album/2GgnuYW944NusEHGvssULl
  704. https://open.spotify.com/album/2KJ4VKmcATRfjL0NhSzJ9P
  705. https://open.spotify.com/album/3NdFuALsQly0s2JX0dCBjN
  706. https://open.spotify.com/album/02o8YcpU4dsanr5MADOKyC
  707. https://open.spotify.com/album/4AywsW6L2xoFZrYQdWOBg2
  708. https://open.spotify.com/album/2U82T5ZIlksEa6Du2Df50C
  709. https://open.spotify.com/album/47RSWdpVucFJ3TRftdf3BF
  710. https://open.spotify.com/album/2rkfGVpNBPQAsWAP3L9x93
  711. https://open.spotify.com/album/6i8EmOarATYm8ySRzLyuK8
  712. https://open.spotify.com/album/5nsZ1F4WLA8zh0KkA8uVXd
  713. https://open.spotify.com/album/3YfePmVAThs3clMowMUXdh
  714. https://open.spotify.com/album/3g65MWBM8k7Rl5hqlEVRjM
  715. https://open.spotify.com/album/2GOCvOyopJbvmas6k3AD78
  716. https://open.spotify.com/album/0U0GS77qmbTTKTSkKmqvjo
  717. https://open.spotify.com/album/0zmHLQxgg1XRtSb21PKPV4
  718. https://open.spotify.com/album/6b0ipkFRwnrtJniaMRXGUV
  719. https://open.spotify.com/album/2b8Qzt6zZZWLajbFE6QlHX
  720. https://open.spotify.com/album/1ryZXi558HZWpmIIeg72r2
  721. https://open.spotify.com/album/6WL53nz0AsOpBG8vZKjBvW
  722. https://open.spotify.com/album/56hl3qKQIhnfnQdUomeuoB
  723. https://open.spotify.com/album/6izzXqa9WqOEAumgoBnl7q
  724. https://open.spotify.com/album/5V3VhcwL5wc1qHEFtu7BUs
  725. https://open.spotify.com/album/6IRv0cvWdu06CEfSYi27vL
  726. https://open.spotify.com/album/2v8SoYkc5wJSqFkE5Pbr8e
  727. https://open.spotify.com/album/6m9yMEqiE6uEhrRp68se0S
  728. https://open.spotify.com/album/5SD8Rdozct3RBCBmSPs89G
  729. https://open.spotify.com/album/1kWvX0tJWZQMV4ztvMmTO3
  730. https://open.spotify.com/album/7KjeWZkKmfPT0IbuGEAwHg
  731. https://open.spotify.com/album/5Mdgx8Sl0o1Z5S4yvxsk4s
  732. https://open.spotify.com/album/7z2wFRjEMx3e6TqNKa3MNd
  733. https://open.spotify.com/album/4fdm0qDYsL7ohg1KLrXqRM
  734. https://open.spotify.com/album/60N6qFFa42aKwD0AOkKgrl
  735. https://open.spotify.com/album/3ZHRUxp205uZ6h4Bxk8eRD
  736. https://open.spotify.com/album/72KQ0UvGyOg1drmEoETwsY
  737. https://open.spotify.com/album/6QzVbxXzPNEW1qQfR2y1nh
  738. https://open.spotify.com/album/1JsvK0bBbLQ3a3RUmqvhh5
  739. https://open.spotify.com/album/4YYekPlejBy5X5wotcDTLm
  740. https://open.spotify.com/album/67VfXNm7j2hVZAuNfzusND
  741. https://open.spotify.com/album/7gx0LHSSKb1zvhDsR1qlXj
  742. https://open.spotify.com/album/7wsjDzKqwlwxDJMNCr0GBc
  743. https://open.spotify.com/album/0Msj6QLuO1z7nEyzvN6Irb
  744. https://open.spotify.com/album/7JJm8HwliCfxne8IMG31l9
  745. https://open.spotify.com/album/1Z1GtIgbbzZdP8YRtBSMFQ
  746. Not available
  747. https://open.spotify.com/album/0HO5wjGn159W9tymooKuwS
  748. https://open.spotify.com/album/3vjKvq5sTB7M2o9t6lQWFW
  749. https://open.spotify.com/album/1Fe70vQ7EXYjynE7lGe5a8
  750. https://open.spotify.com/album/0mzW1Ok0eKZA1712LmEjwD
  751. https://open.spotify.com/album/2FOHuwfARdoSXytzbAuzky
  752. https://open.spotify.com/album/0O9bl7Kf2pnKZIE2UggXBU
  753. https://open.spotify.com/album/6fChr0wDnGVlbZo86pwBpL
  754. https://open.spotify.com/album/6rVtiDj4a6NTzA6cBhqzHr
  755. https://open.spotify.com/album/39e7F6yj5AkQBcMBgqx0xn
  756. https://open.spotify.com/album/4zPuW0rjBqWdW8WAOQea2C
  757. https://open.spotify.com/album/53LKezwD1gPUkbrjctewfn
  758. https://open.spotify.com/album/0jCSFZ33BJ4tIpZFSunGUS
  759. https://open.spotify.com/album/5WQawhjdyFldRPPfXzZlXB
  760. https://open.spotify.com/album/44FmS1arWXSF8msTTNLs1F
  761. https://open.spotify.com/album/6nbjor30rBuJkMDxVphr8t
  762. https://open.spotify.com/album/1j1cGp0SbDBXhDD4z9DNDE
  763. https://open.spotify.com/album/7nC8BaG7nZlVTA1oMD3d8i
  764. https://open.spotify.com/album/7It5yDcYuAwuharaGBulbp
  765. https://open.spotify.com/album/2Ab3m1wIJ7Og24AQcXqpDr
  766. https://open.spotify.com/album/1bx0cWK0nT7sszYa9y6o0X
  767. https://open.spotify.com/album/2G6fE5GqRvZAqKE7wJfuui
  768. https://open.spotify.com/album/1n8icO3BwuLa30R491S6PN
  769. https://open.spotify.com/album/3NMUXjLgqWGO6UP8L9GrbX
  770. https://open.spotify.com/album/1cSfHWplybRbrz3fQwJrlu
  771. https://open.spotify.com/album/2q478NAobUtiFplZk3irAf
  772. https://open.spotify.com/album/4GEZUQe63QHMUbVRm2qVIQ
  773. https://open.spotify.com/album/3BPKRLsFLCLsTsPNUc2HRV
  774. https://open.spotify.com/album/1s9YLn6PR4KuUOp8Vs4Xkf
  775. https://open.spotify.com/album/335jfcqrdWbZVwDfkqT0lU
  776. https://open.spotify.com/album/7ixugpsgmcFCjKfeUDL8ro
  777. https://open.spotify.com/album/1vWciNuhHcR1YuH4xXe4l4
  778. https://open.spotify.com/album/2D1GpZF8RqGlKSklBbgj6w
  779. https://open.spotify.com/album/483mk4BHBg2ma9iFzUz3M5
  780. https://open.spotify.com/album/4Th7mnq2a7uf5k2S9z7EQ1
  781. https://open.spotify.com/album/7lL2bQQPCDse2q8i3dMUjx
  782. https://open.spotify.com/album/7HhEcdNmiStc70DT0qzVxY
  783. https://open.spotify.com/album/4EjvvPim1wcnlNhNZjaP9k
  784. https://open.spotify.com/album/5aSra0kDmy7LlHe59nLcJh
  785. https://open.spotify.com/album/4vptJxkxzrfP1tXlc8m121
  786. https://open.spotify.com/album/61jYmljQv0lmucbuKEiHzC
  787. https://open.spotify.com/album/4RTghptkwIbIq160pe3jZM
  788. https://open.spotify.com/album/76TidMxZbTVogBOoM0ulA8
  789. https://open.spotify.com/album/2ac6XqWYgPrL0jYjtJHUb8
  790. https://open.spotify.com/album/4YA82is6EknJnoJSklUx4v
  791. https://open.spotify.com/album/2QweMWdHvDYUCozExzBHmM
  792. https://open.spotify.com/album/3OJP8vSzNpEw7HVzi2rTOi
  793. https://open.spotify.com/album/0aIAiBK8UkUpA6eYb1mUdW
  794. https://open.spotify.com/album/2WbGX8vWla3GiQ5PThmJZF
  795. https://open.spotify.com/album/3cw0ijH8cLdIKrCoAh1Lul
  796. Not available
  797. https://open.spotify.com/album/57bfCFzrv7MgiUhpe9oVo8
  798. https://open.spotify.com/album/1g2NpgmdW9ZJEtnYo4AAEa
  799. https://open.spotify.com/album/1WmnnvWIyZ1ESt5BQpGZ6T
  800. https://open.spotify.com/album/5bcr898rqwVdJTZta6SFo0
  801. https://open.spotify.com/album/2XsBduMp5RdZOTsWMqKJtv
  802. https://open.spotify.com/album/3ci4Yh7hNhAecGf4UqfEl8
  803. https://open.spotify.com/album/2QalqDoSKRt8Xo1RW8Xj3V
  804. https://open.spotify.com/album/1ZNocPzhsKlUjBwgWWZWuq
  805. https://open.spotify.com/album/4NR9t5I0TVUi1Yc3pLYHsx
  806. https://open.spotify.com/album/6oYSflckfXRUmL1MHnkOAQ
  807. https://open.spotify.com/album/655Ly71N60JXaE4A3bkXQt
  808. https://open.spotify.com/album/0FDRIgmEv6n2sERggnDQzy
  809. https://open.spotify.com/album/6179RIIF3vXkAaMqB1N3YV
  810. https://open.spotify.com/album/5PUYJ30eHIvzquoEaYhl8V
  811. https://open.spotify.com/album/4fOnrjQFQ2asr2asX2940u
  812. https://open.spotify.com/album/0qgsuBeCvrhEfJRboNRPxE
  813. https://open.spotify.com/album/4J0g0v4rAINnkvem7e5Fcu
  814. https://open.spotify.com/album/73rRnHjmwZbj9vFoD0tcGZ
  815. https://open.spotify.com/album/1fjWSIa9zzBMmO8OlPSW8m

Digital Control Systems 1.01

Digital control systems never did get enough attention during my Master System & Control in my opinion. In the various courses which I was taught, continuous-time control systems were always examined, but almost never digital control systems. For most courses this is also perfectly fine. However, you would expect that there would be also a more in-depth course about digital control systems into the curriculum. Especially, since almost all control systems are a digital control system.

I remember a course in which each group had to program a robot to convey pizza’s from one cabinet to another. A group mentioned, during their presentation, that they used a PID controller to control the various axis of the robot. I knew all the groups had designed their control algorithms in the continuous-time domain, therefore I asked; i) what discretization method(s) they had used, ii) if they had check the stability and iii) if they had checked the robustness (phase, gain and modulus margin) of their digital control system with respect to the continuous-time domain controller. Unfortunately none of my questions were answered. This disappointed me and was an acknowledgement of my opinion that not enough attention was given to digital control systems. Since this was one of the last courses given before one started their internship and graduation.

For the above reason, I will do a couple of blogs about digital control systems. I will try to focus on a single topic each blog and keep it clear and easy to understand; “If you can’t explain it simply, you don’t understand it well enough.”. In this first blog I will briefly go into the pros and cons of digital control systems and its analog counterpart. Followed by the introduction of the various type of signals that are present in a digital control system.

Pros and cons of digital control systems

Below is a list of pros and cons for both digital as well as analog control systems. Remark that there might be many more and that some pros or cons are subject to opinion, experience or interpretation.

Analog control Digital control
Pros
  • Robust; do not (often) break down
  • Continuous processing; no inherent bandwidth limits
  • Hard to modify; time-consuming, hardware needs to be rebuilt
  • Flexible; ability to create complicated controllers, easy to modify and fast to develop, less susceptible to aging and environmental variations
  • Robust; performance or safety can be monitored, errors can be dealt with appropriately
  • Diagnostics; on-the-fly testing, parameters can be adjusted, measurement signals can be stored
  • Low cost
Cons
  • Slow development; difficult to develop accurate designs due to tolerances in components
  • Complex: difficult to create complicated controllers, also hard to modify, testing alternatives is difficult, hard to build in intelligence, difficult to do multi-input-multi-output control
  • Disruptive noise
  • High cost
  • Discrete; signal might be inaccurate due to finite word length, time delays in control loop, discrete controller, stability might be an issue
  • Complex; complicated controllers, difficult to obtain a high bandwidth

While analog control systems have considerable disadvantages the flexibility of digital control systems stands-out. The latter made sure that companies adopted digital over their counterpart because it opened multiply doors. For instance, the rapid development of a complex controllers which incorporated optimization algorithms to maximize performance and profit. All created at the tenth of the costs for the same analog control system.

Types of signals in a digital control systems

The main disadvantage of digital control systems is found in the fact that one has to deal with discrete variables instead of continuous ones. Consequently, let us define the different types of signals. A Continuous-time signal is a signal for which every point in the time domain, this can be infinitely, an amplitude is defined. Similarly, a discrete-time signal is a signal for which only a sequence of points in time an amplitude is defined. Note that these points in time do necessarily have to be equidistant. In case it is, the signal has an associated periodic interval. Likewise to the domain, signals may also be continuous or discrete with respect to their range, i.e., amplitude.

Summarized; in general signals can either be continuous or discrete with respect to their domain or range. Herein, the domain is in general time, in case of control systems and the range can be anything; Voltage, Amperes, Newtons, meter per second, et cetera. Figure 1 shows the four possible combinations.

Figure 1. The four possible combinations of signal types.
Figure 1. The four possible combinations of signal types. Matlab code.

In Figure 1(a) an analog signal is displayed, which is both continuous in time and amplitude. Figure 1(b) shows a sampled signal; continuous in amplitude and discrete in time; Figure 1(c) the quantized signal, discrete in amplitude and continuous in time. Finally Figure 1(d), the digital signal. This signal is both discrete in time and amplitude. Remark: the exact definition of a quantized signal and sampled signal are often ambiguous. Often it is implicitly assumed that a quantized signal is also sampled, e.g., discrete in time. Likewise, the sampled signal is sometimes in explicitly assumed to be quantized as well. Lastly, the digital signal can be obtained by sampling and quantization of the analog signal.

We have read about the pros and con, and defined the different signal types present in a digital control system. Conclusively, I want you to point to the books in the references below, these are the best literature references in this field. I also use them as a reference for these blogs, and will try to point or refer to a chapter or section from the book when addressing a certain topic. In the next blog we will focus on the different system components of a digital control system.

References

[1] Levine, William S., ed. “The Control Handbook: Control System Fundamentals”. CRC press, 2010.
[2] Åström, Karl J., and Björn Wittenmark. “Computer-controlled systems: theory and design”. Courier Corporation, 2013.
[3] Franklin, Gene F., et al. “Feedback control of dynamic systems”. Vol. 3. Reading, MA: Addison-Wesley, 1994.
[4] Wittenmark, Björn, Karl Johan Åström, and Karl-Erik Årzén. “Computer control: An overview”. IFAC Professional Brief, 2002.
[5] Ogata, K. “Discrete-Time Control Systems”. Pearson Education, 1995.

Maintaining an overview of your financial expenses

At some point one you will want to keep track of your expenses to gain insight where you can save money. There are many websites and programs which offer insight into your expenses, for instance, YouNeedABudget, MoneyDashboard, GNUCash. However, for following three main reasons I decided to simply create my own expenses spreadsheet using Microsoft Excel.

  1. The programs often have a learning curve and you have to adapt to their way of working.
  2. I wanted to use a tool of which I can be almost certain that it will still exist in +20 years.
  3. Sometimes you will find yourself in the spot in which you want to have insight into some details. But, unfortunately these are not (directly) provided by the tool. Therefor I wanted to be able to program myself to gain insight. However, this still should be fairly simple to do.

Now let me tell you what my spreadsheet provides. Since I wanted to categorize my expenses I created one sheet with categories and subcategories. To keep track of all the transactions, a table was created in which all main transactions details are logged. The table has the following fields: bank account, type of account (saving or payment?), date, type  (income or expense?), amount, currency, kind (variabel or fixed?), category, subcategory and remarks. While there is a currency field, it is not used yet. The with main reason for this is because fortunately I do not have to deal with money different currency types. To gain insight into the data from the table, three pivot tables and charts were created. Using the pivot tables and charts, which are semi-interactive, one is able to, for instance, zoom-in in a particular category or time stamp. To finalize, I created a kind of dashboard in which all income and expenses data is summarized per month. First details are displayed about my balance of my payment and savings account. Followed by all the expenses details, sorted by category. Using the outline group functionality one is able to open the category and list the subcategories for that month. For each category and subcategory I show its portion (in percentage) with respect to all expenses, the median per month and the average per month. Using conditional formatting this data is also visualized to give a overview, such that you are able to identify the ratios and relationships quickly. sparklines are being used to show the trend of the expenses through out the year. Concluding, the dashboard sheet makes sure that all the data and details are visible at one glance but still manages to dive into details.

You can download an example with dummy data of the Excel sheet over here: Financien (example)