#include <stdio.h>
#include "svg.h"

int main(void) {
    int i;

    start();
    fill(rgb255(148,189,94));
    guideBars(3);
 
    stroke(bw1(0));
    line(0, 45, 297, 45);g
                             fill(rgb255(255, 0, 0));
    noStroke();
    for(i=0; i<=20; i++){
        fillOpacity(i*0.05);
        rect(i*297.0/21, 40, 297.0/21, 10);
    }
    fill(rgb255(0, 255, 0));
    rect(0, 60, 297, 10);
    stroke(rgb255(0, 0, 255));
    for(i=0; i<=20; i++){
        strokeOpacity(i*0.05);
        line(i*297.0/21, 65, (i+1)*297.0/21, 65);
    }
  
    finish();
    return 0;
}
