diff --git a/docs/_modules/index.html b/docs/_modules/index.html index 056ef68a..cfd94396 100644 --- a/docs/_modules/index.html +++ b/docs/_modules/index.html @@ -34,7 +34,7 @@ - + diff --git a/docs/_modules/pabutools/rules/mes/mes_rule.html b/docs/_modules/pabutools/rules/mes/mes_rule.html index 23ddb8c2..2cde292f 100644 --- a/docs/_modules/pabutools/rules/mes/mes_rule.html +++ b/docs/_modules/pabutools/rules/mes/mes_rule.html @@ -34,7 +34,7 @@ - + @@ -680,6 +680,8 @@

Source code for pabutools.rules.mes.mes_rule

current_alloc.details.skipped_project_eff_support = max(
                 new_eff, current_alloc.details.skipped_project_eff_support
             )
+        if analytics:
+            current_alloc.details.iterations.append(current_iteration)
         if resoluteness:
             all_allocs.append(current_alloc)
         else:
diff --git a/docs/_modules/pabutools/visualisation/visualisation.html b/docs/_modules/pabutools/visualisation/visualisation.html
index a483f0c0..b7c0760c 100644
--- a/docs/_modules/pabutools/visualisation/visualisation.html
+++ b/docs/_modules/pabutools/visualisation/visualisation.html
@@ -34,7 +34,7 @@
   
 
 
-    
+    
     
     
     
@@ -294,7 +294,6 @@ 

Source code for pabutools.visualisation.visualisation

[docs] class Visualiser: - # TODO: A future base class which can be used to define the interface for all visualisers pass
@@ -309,40 +308,33 @@

Source code for pabutools.visualisation.visualisation

Parameters ---------- - profile : :py:class:`~pabutools.election.profile.profile.AbstractProfile` - The profile. - instance : :py:class:`~pabutools.election.instance.Instance` - The election instance. - mes_details : :py:class:`~pabutools.rules.mes.mes_details.MESAllocationDetails` - The details of the MES allocation. - verbose : bool, optional - Whether to print the results to the console. The default is False. + profile : :py:class:`~pabutools.election.profile.AbstractProfile` + The profile. + instance : Instance + The election instance. + outcome : :py:class:`~pabutools.rules.budgetallocation.AllocationDetails` + The outcome of the election. + verbose : bool, optional + Whether to print the results to the console. The default is False. Returns ------- None """ - # TODO make sure the variable name 'p' isn't used both in an outer loop and an inner loop at the same time. - template = ENV.get_template("./templates/mes_round_analysis_template.html") - page_summary_template = ENV.get_template( - "./templates/mes_page_summary_template.html" - ) - - def __init__( - self, - profile: AbstractProfile, - instance: Instance, - mes_details: MESAllocationDetails, - verbose: bool = False, - ): + template = ENV.get_template('./templates/mes_round_analysis_template.html') + page_summary_template = ENV.get_template('./templates/mes_page_summary_template.html') + + def __init__(self, profile, instance, outcome, verbose=False): self.profile = profile self.instance = instance self.verbose = verbose - self.details = mes_details - self.mes_iterations = mes_details.iterations + self.outcome = outcome + self.details = outcome.details + self.mes_iterations = [iteration for iteration in outcome.details.iterations if iteration.selected_project is not None] + self.were_projects_selected = True if not self.mes_iterations: - raise ValueError("No projects were selected in this election.") + self.were_projects_selected = False self.rounds = [] def _calculate_rounds_dictinary(self): @@ -361,19 +353,14 @@

Source code for pabutools.visualisation.visualisation

self.instance.meta["num_votes"] ) budgetSpent = 0 + last_iteration = self.mes_iterations[-1] for i in range(len(self.mes_iterations) - 1): - round = dict() current_iteration = self.mes_iterations[i] - next_iteration = self.mes_iterations[i + 1] - round[ - "_current_iteration" - ] = current_iteration # will be deleted before passed into the template + next_iteration = self.mes_iterations[i+1] + round = dict() + round["_current_iteration"] = current_iteration round["id"] = current_iteration.selected_project.name - round[ - "name" - ] = ( - current_iteration.selected_project.name - ) # TODO Remove this and keep round["id"] + round["name"] = current_iteration.selected_project.name data = { p.name: float(1 / p.affordability) for p in current_iteration.get_all_projects() @@ -387,52 +374,18 @@

Source code for pabutools.visualisation.visualisation

} # Statistics for Page Summary page - # Get cost of winning project round["cost"] = current_iteration.selected_project.cost - # Number of votes for winning project - round["totalvotes"] = len( - current_iteration.selected_project.supporter_indices - ) - # Initial voter funding - the funds the supporters could've had if they hadn't spent on previous selected projects - round["initial_voter_funding"] = initial_budget_per_voter * len( - current_iteration.selected_project.supporter_indices - ) - - # Funding lost per round (unsorted) - A list of the total funding lost by the selected project's supporters during the previous (i-1) rounds. + round["totalvotes"] = len(current_iteration.selected_project.supporter_indices) + round["initial_voter_funding"] = initial_budget_per_voter * len(current_iteration.selected_project.supporter_indices) unsorted_funding_lost_per_round = { r: ( - float( - sum( - self.mes_iterations[r].voters_budget[p] - for p in current_iteration.selected_project.supporter_indices - ) - ) # Sum of supporter funds for selected project at the start of round r - - float( - sum( - self.mes_iterations[r + 1].voters_budget[p] - for p in current_iteration.selected_project.supporter_indices - ) - ) - # Sum of supporter funds for selected project at the end of round r - ) - for r in range(0, i) + float(sum(self.mes_iterations[r].voters_budget[p] for p in current_iteration.selected_project.supporter_indices)) + - float(sum(self.mes_iterations[r+1].voters_budget[p] for p in current_iteration.selected_project.supporter_indices)) + ) for r in range(0, i) } - # Sort the funding lost by decreasing cost. - round["funding_lost_per_round"] = dict( - sorted( - unsorted_funding_lost_per_round.items(), - key=lambda x: x[1], - reverse=True, - ) - ) - - # Final voter funding - the funds the supporters actually have (or available budget) - round["final_voter_funding"] = float( - sum( - current_iteration.voters_budget[p] - for p in current_iteration.selected_project.supporter_indices - ) - ) + round["funding_lost_per_round"] = dict(sorted(unsorted_funding_lost_per_round.items(), key = lambda x: x[1], reverse = True)) + round["final_voter_funding"] = float(sum(current_iteration.voters_budget[p] for p in current_iteration.selected_project.supporter_indices)) + # Get dropped projects dropped_projects = [] for p in current_iteration: @@ -490,17 +443,13 @@

Source code for pabutools.visualisation.visualisation

float( sum( self.mes_iterations[r].voters_budget[p] - for p in self.mes_iterations[ - -1 - ].selected_project.supporter_indices + for p in last_iteration.selected_project.supporter_indices ) ) - float( sum( self.mes_iterations[r + 1].voters_budget[p] - for p in self.mes_iterations[ - -1 - ].selected_project.supporter_indices + for p in last_iteration.selected_project.supporter_indices ) ) ) @@ -508,7 +457,7 @@

Source code for pabutools.visualisation.visualisation

} dropped_projects = [] - for p in self.mes_iterations[-1]: + for p in last_iteration: if p.discarded: unsorted_funding_lost_per_round = { r: ( @@ -544,34 +493,34 @@

Source code for pabutools.visualisation.visualisation

), "final_voter_funding": float( sum( - self.mes_iterations[-1].voters_budget[p] + last_iteration.voters_budget[p] for p in p.project.supporter_indices ) ), } dropped_projects.append(rejected) - budgetSpent += self.mes_iterations[-1].selected_project.cost + budgetSpent += last_iteration.selected_project.cost data = { p.name: float(1 / p.affordability) - for p in self.mes_iterations[-1].get_all_projects() + for p in last_iteration.get_all_projects() } self.rounds.append( { - "name": self.mes_iterations[-1].selected_project.name, - "_current_iteration": self.mes_iterations[-1], + "name": last_iteration.selected_project.name, + "_current_iteration": last_iteration, "effective_vote_count": dict( sorted(data.items(), key=lambda item: item[1], reverse=True) ), "effective_vote_count_reduction": { - p.name: 0 for p in self.mes_iterations[-1].get_all_projects() + p.name: 0 for p in last_iteration.get_all_projects() }, - "cost": self.mes_iterations[-1].selected_project.cost, + "cost": last_iteration.selected_project.cost, "totalvotes": len( - self.mes_iterations[-1].selected_project.supporter_indices + last_iteration.selected_project.supporter_indices ), "initial_voter_funding": initial_budget_per_voter - * len(self.mes_iterations[-1].selected_project.supporter_indices), + * len(last_iteration.selected_project.supporter_indices), "funding_lost_per_round": dict( sorted( unsorted_funding_lost_per_round.items(), @@ -581,10 +530,8 @@

Source code for pabutools.visualisation.visualisation

), "final_voter_funding": float( sum( - self.mes_iterations[-1].voters_budget[p] - for p in self.mes_iterations[ - -1 - ].selected_project.supporter_indices + last_iteration.voters_budget[p] + for p in last_iteration.selected_project.supporter_indices ) ), "dropped_projects": dropped_projects, @@ -608,12 +555,13 @@

Source code for pabutools.visualisation.visualisation

winners = [] for round in self.rounds: pie_chart_items = [] - round["id"] = round[ - "name" - ] # TODO: Remove either 'id' or 'name' from the data structure + round["id"] = round["name"] selected = round["name"] winners.append(selected) + num_projects = 0 for project in projectVotes: + if num_projects > 9: + break if project.name not in winners: round_voters = round["voter_flow"][project.name][selected] non_round_voters = projectVotes[project.name] - round_voters @@ -631,6 +579,7 @@

Source code for pabutools.visualisation.visualisation

"reduction": reduction, } pie_chart_items.append(pie_chart_item) + num_projects += 1 pie_chart_items = sorted( pie_chart_items, key=lambda x: x["roundVoters"], reverse=True @@ -657,6 +606,8 @@

Source code for pabutools.visualisation.visualisation

The average budget of the supporters for the project. """ + if not supporters: + return 0 return sum(voters_budget[s] for s in supporters) / len(supporters) def _get_voters_for_project(self, project): @@ -694,15 +645,24 @@

Source code for pabutools.visualisation.visualisation

[docs] - def render(self, outcome, output_folder_path): + def render(self, output_folder_path, name=""): """ Render the visualisation. Parameters ---------- + output_folder_path : str + The path to the folder where the visualisation will be saved. + name : str, optional + The prefix of the output files. The default is "". - + Returns + ------- + None """ + if not self.were_projects_selected: + print("No projects were selected in this election - therefore no visualisation will be created.") + return self._calculate() for round in self.rounds: del round["_current_iteration"] @@ -711,46 +671,36 @@

Source code for pabutools.visualisation.visualisation

# Round by Round round_analysis_page_output = MESVisualiser.template.render( - # TODO: Some redudant data is being passed to the template that can be calculated within template directly - election_name=self.instance.meta["description"] - if "description" in self.instance.meta - else "No description provided.", - currency=self.instance.meta["currency"] - if "currency" in self.instance.meta - else "CUR", - rounds=self.rounds, + election_name=self.instance.meta["description"] if "description" in self.instance.meta else "No description provided.", + currency=self.instance.meta["currency"] if "currency" in self.instance.meta else "CUR", + rounds=self.rounds, projects=self.instance.project_meta, - number_of_elected_projects=len(outcome), - number_of_unelected_projects=len(self.instance) - len(outcome), - spent=total_cost(p for p in self.instance if p.name in outcome), + number_of_elected_projects=len(self.outcome), + number_of_unelected_projects=len(self.instance) - len(self.outcome), + spent=total_cost(p for p in self.instance if p.name in self.outcome), budget=self.instance.meta["budget"], total_votes=self.instance.meta["num_votes"], + name=name ) # Page Summary summary_page_output = MESVisualiser.page_summary_template.render( - # TODO: Some redudant data is being passed to the template that can be calculated within template directly - election_name=self.instance.meta["description"] - if "description" in self.instance.meta - else "No description provided.", - currency=self.instance.meta["currency"] - if "currency" in self.instance.meta - else "CUR", - rounds=self.rounds, + election_name=self.instance.meta["description"] if "description" in self.instance.meta else "No description provided.", + currency=self.instance.meta["currency"] if "currency" in self.instance.meta else "CUR", + rounds=self.rounds, projects=self.instance.project_meta, - number_of_elected_projects=len(outcome), - number_of_unelected_projects=len(self.instance) - len(outcome), - spent=total_cost(p for p in self.instance if p.name in outcome), + number_of_elected_projects=len(self.outcome), + number_of_unelected_projects=len(self.instance) - len(self.outcome), + spent=total_cost(p for p in self.instance if p.name in self.outcome), budget=self.instance.meta["budget"], total_votes=self.instance.meta["num_votes"], + name=name ) if not os.path.exists(output_folder_path): os.makedirs(output_folder_path) - with open( - f"{output_folder_path}/round_analysis.html", "w", encoding="utf-8" - ) as o: + with open(f"{output_folder_path}/{name}_round_analysis.html", "w", encoding="utf-8") as o: o.write(round_analysis_page_output) - with open(f"{output_folder_path}/summary.html", "w", encoding="utf-8") as o: + with open(f"{output_folder_path}/{name}_summary.html", "w", encoding="utf-8") as o: o.write(summary_page_output)
@@ -760,40 +710,40 @@

Source code for pabutools.visualisation.visualisation

[docs] class GreedyWelfareVisualiser(Visualiser): """ - Class used to visualise the results of a Greedy Welfare election. The visualisation result consits of a round by round analysis page called 'round_analysis.html'. + Class used to visualise the results of a Greedy Welfare election. The visualisation result + consits of a round by round analysis page called 'round_analysis.html'. Parameters ---------- - profile : :py:class:`~pabutools.election.profile.profile.AbstractProfile` - The profile. - instance : :py:class:`~pabutools.election.instance.Instance` - The election instance. - greedy_details : :py:class:`~pabutools.rules.greedywelfare.greedywelfare_details.GreedyWelfareAllocationDetails` - The details of the Greedy Welfare allocation. - verbose : bool, optional - Whether to print the results to the console. The default is False. + profile : :py:class:`~pabutools.election.profile.AbstractProfile` + The profile. + instance : :py:class:`~pabutools.election.instance.Instance` + The election instance. + outcome : :py:class:`~pabutools.rules.budgetallocation.AllocationDetails` + The outcome of the election. + verbose : bool, optional + Whether to print the results to the console. The default is False. + + Returns + ------- + None + """ template = ENV.get_template("./templates/greedy_round_analysis_template.html") - def __init__( - self, - profile: AbstractProfile, - instance: Instance, - greedy_details: GreedyWelfareAllocationDetails, - verbose: bool = False, - ): + def __init__(self, profile, instance, outcome, verbose=False): self.profile = profile self.instance = instance self.verbose = verbose - self.details = greedy_details + self.outcome = outcome + self.details = outcome.details self.rounds = [] - project_votes = votes_count_by_project(self.profile) - self.project_votes = { - str(k): project_votes[k] - for k in sorted(project_votes, key=project_votes.get, reverse=False) - } - + project_votes = outcome.details.projects + project_votes = {project_votes[k].project.name: float(project_votes[k].score) for k in range(len(project_votes))} + self.project_votes = {k: project_votes[k] for k in sorted(project_votes, key=project_votes.get, reverse=True)} + + def _calculate(self): """ Calculate the data necessary for the visualisation. @@ -802,11 +752,7 @@

Source code for pabutools.visualisation.visualisation

self.rounds = [] current_round = {} rejected_projects = [] - projects = sorted( - self.details.projects, - key=lambda x: self.project_votes[x.project.name], - reverse=True, - ) + projects = sorted(self.details.projects, key=lambda x: float(x.score), reverse=True) for project in projects: if project.discarded: rejected_projects.append( @@ -846,17 +792,16 @@

Source code for pabutools.visualisation.visualisation

[docs] - def render(self, outcome, output_folder_path): + def render(self, output_folder_path, output_filename="greedy_explanation.html"): """ Render the visualisation. Parameters ---------- - outcome : list [:py:class:`~pabutools.election.instance.Project`] - The list of elected projects. - output_folder_path : str - The path to the folder where the visualisation will be saved. - + output_folder_path : str + The path to the folder where the visualisation will be saved. + output_filename : str, optional + The name of the file. The default is "greedy_explanation.html". Returns ------- None @@ -868,30 +813,21 @@

Source code for pabutools.visualisation.visualisation

# Round by Round round_analysis_page_output = GreedyWelfareVisualiser.template.render( - # TODO: Some redudant data is being passed to the template that can be calculated within template directly - election_name=self.instance.meta["description"] - if "description" in self.instance.meta - else "No description provided.", - currency=self.instance.meta["currency"] - if "currency" in self.instance.meta - else "CUR", - projects_selected_or_rejected=json.dumps( - {int(str(p)): (p in outcome) for p in self.project_votes.keys()} - ), + election_name=self.instance.meta["description"] if "description" in self.instance.meta else "No description provided.", + currency=self.instance.meta["currency"] if "currency" in self.instance.meta else "CUR", + projects_selected_or_rejected = json.dumps({str(p): (p in self.outcome) for p in self.project_votes.keys()}), project_votes=self.project_votes, rounds=self.rounds, projects=self.instance.project_meta, - number_of_elected_projects=len(outcome), - number_of_unelected_projects=len(self.instance) - len(outcome), - spent=total_cost(p for p in self.instance if p.name in outcome), + number_of_elected_projects=len(self.outcome), + number_of_unelected_projects=len(self.instance) - len(self.outcome), + spent=total_cost(p for p in self.instance if p.name in self.outcome), budget=self.instance.meta["budget"], total_votes=self.instance.meta["num_votes"], ) if not os.path.exists(output_folder_path): os.makedirs(output_folder_path) - with open( - f"{output_folder_path}/round_analysis.html", "w", encoding="utf-8" - ) as o: + with open(f"{output_folder_path}/{output_filename}", "w", encoding="utf-8") as o: o.write(round_analysis_page_output)
diff --git a/docs/_sources/usage/outcomevisualisation.rst b/docs/_sources/usage/outcomevisualisation.rst index c33b4d9c..a5f3eb73 100644 --- a/docs/_sources/usage/outcomevisualisation.rst +++ b/docs/_sources/usage/outcomevisualisation.rst @@ -14,7 +14,10 @@ Greedy Utilitarian Welfare The visualisation for the Greedy Utilitarian Welfare currently works only on additive utility functions. -We provide a way to visualise the results using the class :py:class:`~pabutools.visualisation.visualisation.GreedyWelfareVisualiser`. Note the analytics flag in the function :py:func:`~pabutools.rules.greedywelfare.greedy_utilitarian_welfare` must be set to True to generate the visualisation. +We provide a way to visualise the results using the class +:py:class:`~pabutools.visualisation.GreedyWelfareVisualiser`. Note the analytics flag in the +function :py:func:`~pabutools.rules.greedywelfare.greedy_utilitarian_welfare` must be set to True to +generate the visualisation. .. code-block:: python @@ -36,10 +39,21 @@ The visualisation will be saved in the specified path as a standalone HTML file Note that the visualisation is only available for additive utility functions. +An example of the generated visualisation can be found +`here <../outcome_vis_ex_greedy.html>`__. + Method of Equal Shares ---------------------- -We provide a way to visualise the results using the class :py:class:`~pabutools.visualisation.visualisation.MESVisualiser`. Note the analytics flag in the function :py:func:`~pabutools.rules.mes.method_of_equal_shares` must be set to True to generate the visualisation. The visualisations for MES consist of two pages: one for the summary of the election, containing the allocation of the budget, information about all the elected projects, and summary statistics about the election as a whole. The second page contains the details of the election, giving statistics about each round of the election, including the selected project, and how each round impacts the effective vote count of others. This captures the essence of the method of equal shares, where the effective vote count of each project is updated after each round. +We provide a way to visualise the results using the class :py:class:`~pabutools.visualisation.MESVisualiser`. +Note the analytics flag in the function +:py:func:`~pabutools.rules.mes.method_of_equal_shares` must be set to True to generate the visualisation. +The visualisations for MES consist of two pages: one for the summary of the election, containing the +allocation of the budget, information about all the elected projects, and summary statistics about +the election as a whole. The second page contains the details of the election, giving statistics +about each round of the election, including the selected project, and how each round impacts +the effective vote count of others. This captures the essence of the method of equal shares, where +the effective vote count of each project is updated after each round. .. code-block:: python @@ -49,7 +63,7 @@ We provide a way to visualise the results using the class :py:class:`~pabutools. from pabutools.election import Cost_Sat instance, profile = election.parse_pabulib("./{path_to_election_file}.pb") - outcome = method_of_equal_shares(instance, profile, sat_class=Cost_Sat analytics=True) + outcome = method_of_equal_shares(instance, profile, sat_class=Cost_Sat, analytics=True) # The visualiser takes the profile, instance, and outcome as arguments visualiser = MESVisualiser(profile, instance, outcome) @@ -57,4 +71,9 @@ We provide a way to visualise the results using the class :py:class:`~pabutools. # name is optional and defaults to the empty string visualiser.render("./{path_to_output_file}/", name="{name}") -The visualisations will be saved with the filenames {name}_summary.html and {name}_round_analysis.html respectively in the specified path. These work as standalone HTML files, and must be stored in the same directory to ensure the links between different pages work correctly. \ No newline at end of file +The visualisations will be saved with the filenames {name}_summary.html and +{name}_round_analysis.html respectively in the specified path. These work as standalone HTML files, +and must be stored in the same directory to ensure the links between different pages work correctly. + +An example of the generated visualisation can be found +`here <../outcome_vis_ex_mes_summary.html>`__. \ No newline at end of file diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js index 775af29c..a353df57 100644 --- a/docs/_static/documentation_options.js +++ b/docs/_static/documentation_options.js @@ -1,5 +1,5 @@ const DOCUMENTATION_OPTIONS = { - VERSION: '1.1.6', + VERSION: '1.1.7', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/docs/genindex.html b/docs/genindex.html index 893f8e0b..78186abe 100644 --- a/docs/genindex.html +++ b/docs/genindex.html @@ -34,7 +34,7 @@ - + diff --git a/docs/index.html b/docs/index.html index 33294022..bcae5f02 100644 --- a/docs/index.html +++ b/docs/index.html @@ -35,7 +35,7 @@ - + diff --git a/docs/installation.html b/docs/installation.html index 60734b85..629ef20a 100644 --- a/docs/installation.html +++ b/docs/installation.html @@ -35,7 +35,7 @@ - + diff --git a/docs/objects.inv b/docs/objects.inv index 7c743bfa..0bcf162d 100644 Binary files a/docs/objects.inv and b/docs/objects.inv differ diff --git a/docs/outcome_vis_ex_greedy.html b/docs/outcome_vis_ex_greedy.html new file mode 100644 index 00000000..938911ed --- /dev/null +++ b/docs/outcome_vis_ex_greedy.html @@ -0,0 +1,3312 @@ + + + + + + + Municipal PB in Warsaw + + + + + + + + +
+ +
+ +
+ +
+ +
+
+
+ + +
+
+

+ Municipal PB in Warsaw +

+

+

+ This is the explanation for the outcome of the participatory budgeting election decided using the Greedy Utilitarian Welfare algorithm.
+ Some of the key features of the election are: The election has a total budget of 24,933,409 CUR of which 24,931,960 CUR was spent. The election had a + total of 86721 voters. Note that each participant can vote for multiple projects. Therefore, the total votes for all projects may be + higher than 86721
+ This page shows and explains the outcome of the election. The first graph shows the satisfaction scores for the projects and allows you to filter and examine the data in greater detail. + The bars show the budget at each stage of the election and the projects selected or rejected in each round. Finally, the final bar chart shows an overview of the selected and rejected projects. +

+

+ To view the list of the projects selected, click this: +

+

+
+
+
+
+
+
+ + + +
+
+
+ + + +
+ + +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+
+

+ The chart above shows the satisfaction measures for each project. To investigate further, you can filter the bar chart by selected or rejected projects, and sort by name, cost or satisfaction score. Use the dropdowns above to filter and sort the data. +

+
+
+
+ +
+
+
+
+
+
+
+ +

Round by Round Analysis

+
+

+ The following section of the visualisations allows you to click through 'round by round' of this section of the election. It shows at each point the remaining budget, and the projects with the highest satisfaction up to the selected project. The selected project is shown in green, and any rejected projects are shown in red. A project will be shown in red if it is the next most popular project however there is not enough budget remaining to purchase the project. This means, the next most popular project will be considered - and so on until a project is found that can be purchased with the remaining budget. Use the previous and next round buttons to move through the different rounds of the election. +

+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+
+
+ +
+
+
+ +
+
+
+
+

+ The chart above shows a colour coded bar chart, which shows the selected projects in order. Red for selected, green for rejected. This is a quick over-view visualisation showing that it is not always the most popular project which is selected, but the most popular projects within budget. +

+
+
+
+
+ +
+
+ +
+
+
+ + + + +
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/outcome_vis_ex_mes_rounds.html b/docs/outcome_vis_ex_mes_rounds.html new file mode 100644 index 00000000..feb2a1ee --- /dev/null +++ b/docs/outcome_vis_ex_mes_rounds.html @@ -0,0 +1,1695 @@ + + + + + + + Municipal PB in Warsaw + + + + + + + + + + +
+ +
+ +
+ +
+ +
+
+
+ +
+
+

+ Municipal PB in Warsaw +

+

+

+ This is the round-by-round explanations for the results of this participatory budgeting election decided by the Method of Equal Shares (MES). For each round, + we provide visualisations to help you understand why each particular project was selected or not. The visualisations include effective vote counts, voter flows, and pie charts. +

+
+
+
+
+
+
+
+ Loading... +
+
+
+ +
+

+ Round +

+

+ Winner - +

+

+ Description: +
+ Project Cost: CUR +
+ Election Budget Remaining: CUR +

+ + +

+ + Previous Round + Next Round + +

+
+ +
+ + + + +
+
+
+
+ +
+ + +
+
+

Effective Vote Count

+

'' has the highest effective vote count, as there is enough budget to support this project the project will recieve funding. + This project costs . + people voted for this project, at the time the project was elected it had an effective vote count of .

+
+
+
+
+
+
+ +
+
+
+ + +
+
Voter Flows
+

The following graphs demonstrate how voters of '' voted for other projects, highlighting where funding may be lost for certain projects in future rounds as voters funds have been allocated to ''.

+
+
+
+
+
+
+
+
+

+ The provided Sankey diagram offers a visual representation of voting patterns among a set of participants with the option to vote for multiple projects. The individual bands flowing from this singular left bar to various bars on the right-hand side illustrate the distribution of voters who have also voted for other projects. Each band's thickness corresponds to the number of voters who voted for both the project on the left and the project on the right. The graph is designed to show the overlap in voting behaviour, making it clear which projects share a common voter base with the project displayed on the right-hand side. +

+
+
+ +
+
+ +
+
+
+
+

+ The chord diagram shows the voter flows between the project selected this round. Due to the nature of MES, if a project is selected, the voters who voted for it will have a reduction in their budget. Therefore, showing how voters’ voted shows which other projects will have had their support cut. +

+
+
+ +
+
+
+
+
+
+
+
Proportion of voters from other projects
+

The pie charts represent how voters of other projects voted for '', highlighting how the average in voters budget is affected for each project.

+
+ + + + + +
+
+
+ + +
+
+

Reduced Effective Vote Count

+

This graph visualises the current effective vote count after some of the voters' budgets have already been allocated against original vote count for the project.

+
+
+
+
+
+
+

+ + Previous Round + Next Round + +

+
+
+ +
+
+
+ + + + +
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/outcome_vis_ex_mes_summary.html b/docs/outcome_vis_ex_mes_summary.html new file mode 100644 index 00000000..2f5b9bd2 --- /dev/null +++ b/docs/outcome_vis_ex_mes_summary.html @@ -0,0 +1,8846 @@ + + + + + + + + + Municipal PB in Warsaw + + + + + + + + +
+ +
+ +
+ +
+ +
+
+
+ +
+
+

+ Municipal PB in Warsaw +

+

+

+ This is the summary for the results of this participatory budgeting election decided by the Method of Equal Shares (MES).
+ With this method, the total budget is virtually divided equally among the voters.
+ The following web-page outlines the process of the election and the step by step process of how each project was chosen - Explanation.

+ Municipal PB in Warsaw had a total of 86721 voters participating.
+ Between these voters there was a total of 24,933,409 CUR available, of which 17,423,056 CUR was spent.
+ In total, there were 62 projects elected, and 39 projects not elected.
+ + Each of the voters had a budget of 287.51 CUR to allocate to the projects. +

+
+
+
+
+
+
+
+ + +

Results

+

The budget of 24,933,409 CUR was allocated across 62 projects:
+ Hover your mouse cursor over the bars to identify each project that got selected and how much was removed from the overall budget.

+
+
Budget allocation across selected projects.
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+ + +

Summary Table

+

This table displays at each round what project got selected in green as well as any rejected projects in white.
+ Further, this table features a chart in which you can hover your mouse over and compare the + project's final funding (blue bar) with the funding lost (red bar), where the initial funding represents the whole bar.
+ Finally, each row can be expanded on to reveal more details regarding the project and its round, including expalanation on why this project got selected/rejected and a + link to a more advanced view of how the specific round unfolded. +

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
RoundIDProject NameCostNumber of VotesEffective SupportChart
1
7742020 drzew dla Warszawy2,888,6004099040990 +
+
+
+ + ↓ 2,888,600 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 11,785,155.09 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + education
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 2,888,600 CUR - + using the total funding available to them at the start of round 1 (11,785,155.09 CUR).

+ Note that no funding was lost for this project in any of the previous rounds. + +
+
+

Funding spent in previous rounds.

+ None of the initial total funding was spent on previously selected projects. + +
+
2
2166Nasze miasto w szpalerach zieleni1,500,0003079130791 +
+
+
+ + ↓ 1,500,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 8,852,810.70 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 1,500,000 CUR - + using the total funding available to them at the start of round 2 (7,377,292.11 CUR).

+ Note that the supporters of this project initially had more funding available to them (8,852,810.70 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,475,518.59 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 1,475,518.59 CUR
+ +
+
3
1719Nie! - dla smogu – altana solarna w każdym parku Warszawy!369,8803022230222 +
+
+
+ + ↓ 369,880 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 8,689,215.84 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 369,880 CUR - + using the total funding available to them at the start of round 3 (6,747,544.03 CUR).

+ Note that the supporters of this project initially had more funding available to them (8,689,215.84 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,941,671.81 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 1,244,162.80 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 697,509.01 CUR
+ +
+
4
888Nowe drogi rowerowe - chcemy spójnej sieci2,502,4002957029570 +
+
+
+ + ↓ 2,502,400 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 8,501,757.41 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public transit and roads
+ + public space
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 2,502,400 CUR - + using the total funding available to them at the start of round 4 (6,536,288.67 CUR).

+ Note that the supporters of this project initially had more funding available to them (8,501,757.41 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,965,468.73 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 1,235,142.53 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 594,426.94 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 135,899.26 CUR
+ +
+
5
2152Czyste powietrze - lepsze życie567,4302396923969 +
+
+
+ + ↓ 567,430 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 6,891,397.47 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public space
+ + education
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 567,430 CUR - + using the total funding available to them at the start of round 5 (4,246,540.74 CUR).

+ Note that the supporters of this project initially had more funding available to them (6,891,397.47 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 2,644,856.74 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 1,083,418.79 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 806,319.49 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 580,202.01 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 174,916.45 CUR
+ +
+
6
1822Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza1,231,5002289622728 +
+
+
+ + ↓ 1,231,500 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 6,582,896.10 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 1,231,500 CUR - + using the total funding available to them at the start of round 6 (3,707,120.08 CUR).

+ Note that the supporters of this project initially had more funding available to them (6,582,896.10 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 2,875,776.02 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 1,129,154.37 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 744,457.65 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 640,414.41 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 226,413.31 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 135,336.28 CUR
+ +
+
7
1160Miejskie łąkostrady antysmogowe2,853,5202106714511 +
+
+
+ + ↓ 2,853,520 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 6,057,034.94 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 2,853,520 CUR - + using the total funding available to them at the start of round 7 (3,141,022.48 CUR).

+ Note that the supporters of this project initially had more funding available to them (6,057,034.94 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 2,916,012.46 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 986,169.03 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 754,528.18 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 503,426.33 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 389,002.48 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 171,538.14 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 111,348.30 CUR
+ +
+
1449Wiaty rowerowe przy szkołach3,600,0001856118561 +
+
+
+ + ↓ 3,600,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 5,336,527.54 +
+
+
+
+
+ Description:
+ Categories:
+ + public transit and roads
+ + public space
+ + education
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 3,600,000 CUR - + using the total funding available to them at the start of round 1 (2,911,351.74 CUR).

+ Note that the supporters of this project initially had more funding available to them (5,336,527.54 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 2,425,175.80 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 855,318.12 CUR
  • Project 774 - 2020 drzew dla Warszawy: 727,400.08 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 332,045.08 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 287,181.80 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 135,980.55 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 87,250.17 CUR
+ +
+
8
1910Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko)96,0001387511317 +
+
+
+ + ↓ 96,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 3,989,241.94 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 96,000 CUR - + using the total funding available to them at the start of round 8 (2,037,706.05 CUR).

+ Note that the supporters of this project initially had more funding available to them (3,989,241.94 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,951,535.89 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 586,992.16 CUR
  • Project 774 - 2020 drzew dla Warszawy: 454,818.84 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 392,750.71 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 224,822.19 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 164,269.12 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 73,151.10 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 54,731.76 CUR
+ +
+
811600 ławek dla Warszawy1,990,0001224612246 +
+
+
+ + ↓ 1,990,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 3,520,883.37 +
+
+
+
+
+ Description:
+ Categories:
+ + public transit and roads
+ + public space
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 1,990,000 CUR - + using the total funding available to them at the start of round 1 (1,657,338.83 CUR).

+ Note that the supporters of this project initially had more funding available to them (3,520,883.37 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,863,544.54 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 480,540.70 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 453,193.98 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 410,352.98 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 215,761.10 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 200,459.09 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 59,018.02 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 44,218.66 CUR
+ +
+
9
1637Dbajmy o ptactwo zimą13,440137159906 +
+
+
+ + ↓ 13,440 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 3,943,239.87 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 13,440 CUR - + using the total funding available to them at the start of round 9 (1,531,086.68 CUR).

+ Note that the supporters of this project initially had more funding available to them (3,943,239.87 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 2,412,153.19 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 634,207.01 CUR
  • Project 774 - 2020 drzew dla Warszawy: 614,717.19 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 400,536.33 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 299,990.26 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 272,323.11 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 106,483.38 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 65,918.00 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 17,977.92 CUR
+ +
+
1235Ogrody deszczowe i naturalne place zabaw na terenie m.st Warszawy, w tym plac Zabaw w Parku Dolina Służewiecka3,000,0001075110751 +
+
+
+ + ↓ 3,000,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 3,091,051.53 +
+
+
+
+
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + environmental protection
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 3,000,000 CUR - + using the total funding available to them at the start of round 1 (1,140,720.75 CUR).

+ Note that the supporters of this project initially had more funding available to them (3,091,051.53 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,950,330.79 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 615,679.50 CUR
  • Project 774 - 2020 drzew dla Warszawy: 443,191.15 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 366,431.92 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 222,483.84 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 173,915.23 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 65,386.19 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 51,158.04 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 12,084.90 CUR
+ +
+
1763Fablab Rój Pszczół3,979,80096309630 +
+
+
+ + ↓ 3,979,800 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 2,768,749.54 +
+
+
+
+
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + welfare
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 3,979,800 CUR - + using the total funding available to them at the start of round 2 (1,047,147.93 CUR).

+ Note that this project would have been rejected, even before taking any funding lost into account. + This is because the project's cost exceeded the total funds initially allocated to the supporters of this project + (2,768,749.54 CUR). + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,721,601.61 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 588,679.86 CUR
  • Project 774 - 2020 drzew dla Warszawy: 389,774.25 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 275,120.14 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 190,575.17 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 153,087.75 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 67,303.75 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 45,234.48 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 11,826.22 CUR
+ +
+
2119Zdrowe powietrze w naszej dzielnicy1,708,31797679767 +
+
+
+ + ↓ 1,708,317 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 2,808,138.81 +
+
+
+
+
+ Description:
+ Categories:
+ + public space
+ + education
+ + environmental protection
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 1,708,317 CUR - + using the total funding available to them at the start of round 3 (1,121,049.38 CUR).

+ Note that the supporters of this project initially had more funding available to them (2,808,138.81 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,687,089.43 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 506,092.66 CUR
  • Project 774 - 2020 drzew dla Warszawy: 380,753.98 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 290,437.50 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 193,790.39 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 141,852.19 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 109,987.06 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 51,574.16 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 12,601.49 CUR
+ +
+
10
2159Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”54,500137359851 +
+
+
+ + ↓ 54,500 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 3,948,990.12 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 54,500 CUR - + using the total funding available to them at the start of round 10 (1,589,608.18 CUR).

+ Note that the supporters of this project initially had more funding available to them (3,948,990.12 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 2,359,381.94 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 785,288.40 CUR
  • Project 774 - 2020 drzew dla Warszawy: 548,474.60 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 385,557.47 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 268,227.73 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 213,912.41 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 76,796.82 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 53,030.58 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 22,700.48 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 5,393.47 CUR
+ +
+
11
1780Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia423,612125509314 +
+
+
+ + ↓ 423,612 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 3,608,287.30 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + sport
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 423,612 CUR - + using the total funding available to them at the start of round 11 (1,586,690.74 CUR).

+ Note that the supporters of this project initially had more funding available to them (3,608,287.30 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 2,021,596.56 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 571,904.61 CUR
  • Project 774 - 2020 drzew dla Warszawy: 463,980.05 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 365,841.09 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 266,376.54 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 195,014.63 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 78,998.45 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 60,275.92 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 10,620.11 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 6,875.59 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,709.57 CUR
+ +
+
12
1563Paleniska na Plażach Miejskich28,810112018992 +
+
+
+ + ↓ 28,810 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 3,220,432.35 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public space
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 28,810 CUR - + using the total funding available to them at the start of round 12 (1,450,840.38 CUR).

+ Note that the supporters of this project initially had more funding available to them (3,220,432.35 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,769,591.98 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 406,798.67 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 392,590.29 CUR
  • Project 774 - 2020 drzew dla Warszawy: 392,240.73 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 185,171.99 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 182,878.11 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 71,849.06 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 63,583.73 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 52,577.74 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 12,192.66 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 7,517.39 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 2,191.60 CUR
+ +
+
13
1851Szanujmy Naszą Wisłę386,000124518201 +
+
+
+ + ↓ 386,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 3,579,823.52 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 386,000 CUR - + using the total funding available to them at the start of round 13 (1,304,085.49 CUR).

+ Note that the supporters of this project initially had more funding available to them (3,579,823.52 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 2,275,738.03 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 564,490.82 CUR
  • Project 774 - 2020 drzew dla Warszawy: 535,296.55 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 409,845.22 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 269,640.48 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 233,448.94 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 118,982.99 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 66,517.70 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 44,780.57 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 13,584.65 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 10,034.39 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 5,893.46 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 3,222.28 CUR
+ +
+
1007Stop bazgrołom w Warszawie1,165,65684948494 +
+
+
+ + ↓ 1,165,656 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 2,442,134.85 +
+
+
+
+
+ Description:
+ Categories:
+ + public space
+ + education
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 1,165,656 CUR - + using the total funding available to them at the start of round 1 (1,104,968.59 CUR).

+ Note that the supporters of this project initially had more funding available to them (2,442,134.85 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,337,166.26 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 377,915.15 CUR
  • Project 774 - 2020 drzew dla Warszawy: 294,356.73 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 248,124.34 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 146,487.61 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 137,905.31 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 43,062.09 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 33,697.06 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 28,969.16 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 14,525.70 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 7,585.66 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 3,045.14 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,492.30 CUR
+ +
+
14
601Rozwijanie umiejętności społecznych u dzieci46,30086127431 +
+
+
+ + ↓ 46,300 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 2,476,061.37 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public space
+ + education
+ + culture
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 46,300 CUR - + using the total funding available to them at the start of round 14 (1,267,591.17 CUR).

+ Note that the supporters of this project initially had more funding available to them (2,476,061.37 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,208,470.20 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 276,104.78 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 222,144.06 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 211,269.72 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 145,123.58 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 125,799.14 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 77,885.80 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 50,215.66 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 45,595.03 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 36,620.06 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 9,443.35 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 3,893.41 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 3,092.82 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,282.80 CUR
+ +
+
15
1731Warsztaty komputerowe dla osób niepełnosprawnych52,22887047360 +
+
+
+ + ↓ 52,228 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 2,502,512.56 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + welfare
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 52,228 CUR - + using the total funding available to them at the start of round 15 (1,229,107.42 CUR).

+ Note that the supporters of this project initially had more funding available to them (2,502,512.56 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,273,405.15 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 285,336.46 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 235,259.61 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 226,798.51 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 161,491.99 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 125,461.59 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 63,729.05 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 53,741.98 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 46,898.95 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 38,327.29 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 14,147.48 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 11,081.52 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 6,087.27 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 3,225.70 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,817.74 CUR
+ +
+
16
1297Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa669,245111456534 +
+
+
+ + ↓ 669,245 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 3,204,331.63 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + public transit and roads
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 669,245 CUR - + using the total funding available to them at the start of round 16 (1,145,096.42 CUR).

+ Note that the supporters of this project initially had more funding available to them (3,204,331.63 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 2,059,235.21 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 467,926.42 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 435,699.75 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 405,613.91 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 264,281.77 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 205,969.18 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 78,809.06 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 60,358.19 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 57,314.14 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 48,575.39 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 9,582.70 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 7,183.62 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 6,987.55 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 5,434.85 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 3,585.03 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,913.64 CUR
+ +
+
551200 000 toreb bawełnianych, wielorazowych z długim uchem rozdanych za darmo. Krok dla ekologii w Warszawie952,70070577057 +
+
+
+ + ↓ 952,700 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 2,028,978.76 +
+
+
+
+
+ Description:
+ Categories:
+ + environmental protection
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 952,700 CUR - + using the total funding available to them at the start of round 1 (848,824.03 CUR).

+ Note that the supporters of this project initially had more funding available to them (2,028,978.76 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,180,154.74 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 273,708.77 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 261,023.54 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 202,256.88 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 126,855.25 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 121,911.15 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 55,774.75 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 48,371.57 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 38,527.64 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 25,975.37 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 9,221.50 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 4,397.31 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 3,961.99 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 3,887.54 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 2,832.74 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,448.73 CUR
+ +
+
17
1971Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci12,50079366190 +
+
+
+ + ↓ 12,500 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 2,281,702.63 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 12,500 CUR - + using the total funding available to them at the start of round 17 (972,663.00 CUR).

+ Note that the supporters of this project initially had more funding available to them (2,281,702.63 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,309,039.63 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 269,057.69 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 250,917.13 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 212,158.16 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 139,570.00 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 129,926.40 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 72,867.02 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 72,823.88 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 44,047.32 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 42,013.00 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 36,062.81 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 10,232.17 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 10,021.29 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 9,260.83 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 5,158.41 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 3,413.53 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,509.99 CUR
+ +
+
18
1240Hamaki Miejskie dla Warszawy380,00090036083 +
+
+
+ + ↓ 380,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 2,588,478.93 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 380,000 CUR - + using the total funding available to them at the start of round 18 (1,031,804.60 CUR).

+ Note that the supporters of this project initially had more funding available to them (2,588,478.93 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,556,674.33 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 389,909.37 CUR
  • Project 774 - 2020 drzew dla Warszawy: 306,054.89 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 294,330.31 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 146,736.32 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 137,913.68 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 63,350.65 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 53,274.08 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 51,111.08 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 40,583.75 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 40,407.12 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 11,636.40 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 5,866.03 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 5,460.76 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 4,006.27 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 3,641.13 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,249.67 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 1,142.83 CUR
+ +
+
19
580Aplikacja Bezpłatne toalety110,00075165912 +
+
+
+ + ↓ 110,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 2,160,947.20 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public space
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 110,000 CUR - + using the total funding available to them at the start of round 19 (1,004,011.89 CUR).

+ Note that the supporters of this project initially had more funding available to them (2,160,947.20 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,156,935.31 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 262,051.64 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 217,151.11 CUR
  • Project 774 - 2020 drzew dla Warszawy: 213,879.02 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 94,361.99 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 85,728.25 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 62,003.65 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 58,110.45 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 38,108.70 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 33,734.73 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 30,883.21 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 26,472.45 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 15,989.06 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 5,613.72 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 3,790.60 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 3,709.07 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 3,121.05 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,134.15 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 1,092.44 CUR
+ +
+
1290Białołęka, Praga-Południe, Praga-Północ, Targówek - wcześnie wykrywamy ryzyko wystąpienia cukrzycy. Reagujemy i zapobiegamy zawałom!1,991,87558845884 +
+
+
+ + ↓ 1,991,875 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,691,726.09 +
+
+
+
+
+ Description:
+ Categories:
+ + education
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 1,991,875 CUR - + using the total funding available to them at the start of round 1 (822,204.99 CUR).

+ Note that this project would have been rejected, even before taking any funding lost into account. + This is because the project's cost exceeded the total funds initially allocated to the supporters of this project + (1,691,726.09 CUR). + +
+
+

Funding spent in previous rounds.

From the initial total funding, 869,521.11 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 186,606.80 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 146,488.14 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 136,316.94 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 102,590.67 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 91,390.34 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 50,779.65 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 33,608.89 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 29,691.25 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 25,181.79 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 22,205.38 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 17,113.62 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 7,172.96 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 6,228.11 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 5,745.18 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 3,289.61 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 2,390.80 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 1,746.50 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 974.48 CUR
+ +
+
582Teatr pod chmurką1,150,00056765676 +
+
+
+ + ↓ 1,150,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,631,923.40 +
+
+
+
+
+ Description:
+ Categories:
+ + culture
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 1,150,000 CUR - + using the total funding available to them at the start of round 2 (796,015.02 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,631,923.40 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 835,908.39 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 165,163.99 CUR
  • Project 774 - 2020 drzew dla Warszawy: 164,619.90 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 145,895.76 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 73,316.88 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 71,351.14 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 49,292.94 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 47,203.77 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 26,175.30 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 24,928.19 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 21,932.18 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 21,038.44 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 11,615.86 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 3,381.04 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 3,240.49 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 3,035.71 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 2,357.86 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 682.56 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 676.39 CUR
+ +
+
20
1684Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach45,50071905622 +
+
+
+ + ↓ 45,500 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 2,067,217.98 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public space
+ + education
+ + culture
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 45,500 CUR - + using the total funding available to them at the start of round 20 (911,294.26 CUR).

+ Note that the supporters of this project initially had more funding available to them (2,067,217.98 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,155,923.72 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 243,141.64 CUR
  • Project 774 - 2020 drzew dla Warszawy: 217,191.15 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 203,949.41 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 103,033.35 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 94,565.66 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 52,020.01 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 51,730.52 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 43,393.52 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 42,271.52 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 31,123.18 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 28,742.77 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 13,082.33 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 10,477.93 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 5,440.46 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 4,815.29 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 4,606.36 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 3,810.30 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,369.84 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 1,158.48 CUR
+ +
+
1738Środowisko to nie śmietnisko! Pikniki edukacyjne nt. ekologii994,30054345434 +
+
+
+ + ↓ 994,300 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,562,345.27 +
+
+
+
+
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + environmental protection
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 994,300 CUR - + using the total funding available to them at the start of round 1 (566,005.96 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,562,345.27 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 996,339.32 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 206,197.70 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 157,229.19 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 141,080.19 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 139,802.66 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 95,313.10 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 60,343.74 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 50,290.50 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 37,316.00 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 33,351.41 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 30,506.99 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 18,289.18 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 6,050.48 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 5,945.42 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 4,845.47 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 3,387.88 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,680.45 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 1,443.13 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,265.01 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,000.83 CUR
+ +
+
984Drzewa i zieleń na Powązkowskiej810,17554405440 +
+
+
+ + ↓ 810,175 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,564,070.35 +
+
+
+
+
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + environmental protection
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 810,175 CUR - + using the total funding available to them at the start of round 2 (499,896.02 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,564,070.35 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,064,174.33 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 268,151.23 CUR
  • Project 774 - 2020 drzew dla Warszawy: 233,681.33 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 167,560.09 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 114,822.51 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 76,597.05 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 75,045.80 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 36,757.99 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 21,495.53 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 17,987.03 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 16,308.27 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 14,747.71 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 6,302.38 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 5,692.25 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 4,544.36 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,477.33 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,120.78 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 845.97 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 715.23 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 321.47 CUR
+ +
+
21
937Joga w parku50,00065315175 +
+
+
+ + ↓ 50,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,877,746.96 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + environmental protection
+ + sport
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 50,000 CUR - + using the total funding available to them at the start of round 21 (820,718.76 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,877,746.96 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,057,028.20 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 209,157.47 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 180,169.41 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 145,719.67 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 129,632.04 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 105,652.81 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 54,969.86 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 49,538.04 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 41,073.24 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 40,373.30 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 37,878.98 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 27,296.53 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 6,325.76 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 6,244.65 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 6,233.50 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 4,911.98 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 4,397.24 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,597.00 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 2,441.46 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 1,403.56 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,011.69 CUR
+ +
+
55Maski antysmogowe dla każdego2,509,25052835283 +
+
+
+ + ↓ 2,509,250 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,518,930.82 +
+
+
+
+
+ Description:
+ Categories:
+ + environmental protection
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 2,509,250 CUR - + using the total funding available to them at the start of round 1 (574,791.01 CUR).

+ Note that this project would have been rejected, even before taking any funding lost into account. + This is because the project's cost exceeded the total funds initially allocated to the supporters of this project + (1,518,930.82 CUR). + +
+
+

Funding spent in previous rounds.

From the initial total funding, 944,139.81 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 257,447.48 CUR
  • Project 774 - 2020 drzew dla Warszawy: 183,435.61 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 146,488.14 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 81,013.93 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 64,982.55 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 42,067.80 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 35,775.20 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 30,223.18 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 30,156.32 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 20,540.75 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 15,363.69 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 13,632.91 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 9,842.58 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 3,156.87 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,154.40 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 2,168.90 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,812.48 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,560.09 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 660.30 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 656.61 CUR
+ +
+
22
1393Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku70,00060704874 +
+
+
+ + ↓ 70,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,745,203.50 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + welfare
+ + culture
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 70,000 CUR - + using the total funding available to them at the start of round 22 (773,518.89 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,745,203.50 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 971,684.61 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 192,667.29 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 162,799.81 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 149,365.44 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 103,520.51 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 85,418.64 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 58,241.18 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 42,375.56 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 38,232.02 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 29,519.90 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 25,167.83 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 22,352.22 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 18,746.89 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 9,825.07 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 8,468.43 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 6,537.58 CUR
  • Project 937 - Joga w parku: 5,077.53 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 4,294.52 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,468.07 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 2,268.33 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 2,047.43 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,290.37 CUR
+ +
+
23
1518Zajęcia aktywizujące dla osób z niepełnosprawnością7,80052874144 +
+
+
+ + ↓ 7,800 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,520,080.87 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + welfare
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 7,800 CUR - + using the total funding available to them at the start of round 23 (641,337.51 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,520,080.87 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 878,743.36 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 179,841.60 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 163,064.06 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 135,655.98 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 89,003.28 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 65,116.49 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 42,694.26 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 35,794.32 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 26,246.33 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 25,831.83 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 23,351.57 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 20,887.01 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 17,851.76 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 14,894.79 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 9,897.54 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 6,161.83 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 5,735.98 CUR
  • Project 937 - Joga w parku: 4,265.75 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 4,246.04 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,462.40 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,891.57 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 1,514.60 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,334.36 CUR
+ +
+
1288Mokotów, Ursynów, Wilanów, Włochy - wcześnie wykrywamy ryzyko wystąpienia cukrzycy. Reagujemy i zapobiegamy zawałom!1,991,87546144614 +
+
+
+ + ↓ 1,991,875 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,326,584.67 +
+
+
+
+
+ Description:
+ Categories:
+ + education
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 1,991,875 CUR - + using the total funding available to them at the start of round 1 (572,124.74 CUR).

+ Note that this project would have been rejected, even before taking any funding lost into account. + This is because the project's cost exceeded the total funds initially allocated to the supporters of this project + (1,326,584.67 CUR). + +
+
+

Funding spent in previous rounds.

From the initial total funding, 754,459.93 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 130,652.95 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 113,210.31 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 107,034.84 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 103,582.60 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 81,354.94 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 65,132.31 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 30,278.40 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 25,419.92 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 21,472.84 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 20,602.59 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 14,548.18 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 7,867.17 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 6,068.46 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 5,313.95 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 5,098.80 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 4,411.36 CUR
  • Project 937 - Joga w parku: 3,999.59 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 2,702.06 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,405.79 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,366.22 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 1,225.57 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 711.09 CUR
+ +
+
205Warszawskie Posiadówki Sąsiedzkie - w każdej dzielnicy4,986,68144314431 +
+
+
+ + ↓ 4,986,681 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,273,969.80 +
+
+
+
+
+ Description:
+ Categories:
+ + public space
+ + welfare
+ + sport
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 4,986,681 CUR - + using the total funding available to them at the start of round 2 (563,751.13 CUR).

+ Note that this project would have been rejected, even before taking any funding lost into account. + This is because the project's cost exceeded the total funds initially allocated to the supporters of this project + (1,273,969.80 CUR). + +
+
+

Funding spent in previous rounds.

From the initial total funding, 710,218.67 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 135,515.44 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 128,631.99 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 117,599.44 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 68,998.42 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 63,378.91 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 32,664.83 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 32,213.11 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 30,231.05 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 26,793.72 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 20,720.23 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 17,812.00 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 6,453.67 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 5,344.00 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 4,533.14 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 3,895.31 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 3,623.61 CUR
  • Project 937 - Joga w parku: 3,499.98 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 2,651.46 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 2,607.88 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,669.62 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 720.75 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 660.11 CUR
+ +
+
24
845Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat44,10044643707 +
+
+
+ + ↓ 44,100 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,283,457.73 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + sport
+ + education
+ + health
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 44,100 CUR - + using the total funding available to them at the start of round 24 (599,533.89 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,283,457.73 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 683,923.84 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 134,951.67 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 112,637.62 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 107,527.51 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 65,083.95 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 58,646.61 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 36,386.16 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 32,727.18 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 25,267.03 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 24,110.37 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 23,390.03 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 15,787.33 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 8,515.73 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 8,015.30 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 5,284.13 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 5,104.57 CUR
  • Project 937 - Joga w parku: 4,757.73 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,675.35 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,544.91 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 2,075.59 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,970.59 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,724.71 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 1,138.56 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 601.20 CUR
+ +
+
913Cztery letnie skwery na Placu Teatralnym i ulicy Senatorskiej zamiast parkingów1,940,30040684068 +
+
+
+ + ↓ 1,940,300 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,169,602.61 +
+
+
+
+
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + public transit and roads
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 1,940,300 CUR - + using the total funding available to them at the start of round 1 (313,225.24 CUR).

+ Note that this project would have been rejected, even before taking any funding lost into account. + This is because the project's cost exceeded the total funds initially allocated to the supporters of this project + (1,169,602.61 CUR). + +
+
+

Funding spent in previous rounds.

From the initial total funding, 856,377.36 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 231,066.58 CUR
  • Project 774 - 2020 drzew dla Warszawy: 170,891.80 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 150,211.70 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 86,957.23 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 67,644.21 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 33,141.20 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 22,404.20 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 20,517.03 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 19,104.51 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 18,095.07 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 14,551.89 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 4,472.87 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,382.46 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 3,498.58 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,790.15 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,637.93 CUR
  • Project 937 - Joga w parku: 1,400.27 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,346.87 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,148.54 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,010.28 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 554.86 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 333.88 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 215.26 CUR
+ +
+
1832Ratujmy warszawskie drewniaki - drewniak Burkego1,083,50037693769 +
+
+
+ + ↓ 1,083,500 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,083,636.24 +
+
+
+
+
+ Description:
+ Categories:
+ + public space
+ + education
+ + culture
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 1,083,500 CUR - + using the total funding available to them at the start of round 2 (427,147.07 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,083,636.24 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 656,489.17 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 170,064.74 CUR
  • Project 774 - 2020 drzew dla Warszawy: 128,186.47 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 101,720.83 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 61,527.72 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 55,485.20 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 27,331.19 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 24,202.38 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 17,897.66 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 17,305.32 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 13,822.62 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 11,137.28 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 4,813.66 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 4,437.46 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,299.83 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 3,400.23 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 2,397.50 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 2,358.53 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,639.32 CUR
  • Project 937 - Joga w parku: 1,301.99 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,267.98 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,007.41 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 454.14 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 429.72 CUR
+ +
+
1289Bemowo, Bielany, Wola, Żoliborz - wcześnie wykrywamy ryzyko wystąpienia cukrzycy. Reagujemy i zapobiegamy zawałom!1,991,87539393939 +
+
+
+ + ↓ 1,991,875 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,132,513.44 +
+
+
+
+
+ Description:
+ Categories:
+ + education
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 1,991,875 CUR - + using the total funding available to them at the start of round 3 (529,076.31 CUR).

+ Note that this project would have been rejected, even before taking any funding lost into account. + This is because the project's cost exceeded the total funds initially allocated to the supporters of this project + (1,132,513.44 CUR). + +
+
+

Funding spent in previous rounds.

From the initial total funding, 603,437.13 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 127,058.94 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 107,221.54 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 94,918.45 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 58,994.51 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 56,310.04 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 37,666.88 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 26,111.86 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 18,039.94 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 17,344.61 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 17,078.34 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 9,919.58 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 5,448.66 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 5,397.02 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 4,712.87 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 3,290.13 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 2,806.57 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 2,706.85 CUR
  • Project 937 - Joga w parku: 2,459.61 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,250.49 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,446.24 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 996.13 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 633.04 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 624.84 CUR
+ +
+
979Powązkowska - w dobrym stylu3,268,65037413741 +
+
+
+ + ↓ 3,268,650 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,075,585.88 +
+
+
+
+
+ Description:
+ Categories:
+ + public space
+ + culture
+ + sport
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 3,268,650 CUR - + using the total funding available to them at the start of round 4 (428,464.56 CUR).

+ Note that this project would have been rejected, even before taking any funding lost into account. + This is because the project's cost exceeded the total funds initially allocated to the supporters of this project + (1,075,585.88 CUR). + +
+
+

Funding spent in previous rounds.

From the initial total funding, 647,121.32 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 122,538.90 CUR
  • Project 774 - 2020 drzew dla Warszawy: 122,266.92 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 107,719.30 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 74,384.93 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 60,699.56 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 55,357.31 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 22,010.93 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 18,583.69 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 17,847.65 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 15,618.73 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 12,238.77 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 3,528.50 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,507.37 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,952.31 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,811.75 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,684.04 CUR
  • Project 937 - Joga w parku: 1,421.64 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,358.43 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,320.22 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,104.71 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 561.07 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 402.53 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 202.08 CUR
+ +
+
25
547Silent Disco nad Wisłą99,55048053596 +
+
+
+ + ↓ 99,550 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,381,499.64 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + culture
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 99,550 CUR - + using the total funding available to them at the start of round 25 (523,068.02 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,381,499.64 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 858,431.62 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 164,056.13 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 147,249.78 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 101,048.56 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 100,872.33 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 77,993.57 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 44,250.25 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 43,677.60 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 43,009.00 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 32,784.05 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 27,953.34 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 27,676.00 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 8,032.54 CUR
  • Project 937 - Joga w parku: 6,095.28 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 5,460.10 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 4,345.46 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 4,269.84 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 4,170.33 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,795.15 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 3,724.94 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 3,689.85 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,764.71 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 1,267.58 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 692.67 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 552.57 CUR
+ +
+
26
645Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.189,50044953578 +
+
+
+ + ↓ 189,500 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,292,370.63 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 189,500 CUR - + using the total funding available to them at the start of round 26 (661,055.17 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,292,370.63 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 631,315.46 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 149,163.25 CUR
  • Project 774 - 2020 drzew dla Warszawy: 119,025.26 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 103,244.10 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 51,443.60 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 39,810.74 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 25,875.50 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 25,739.19 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 22,324.11 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 19,159.40 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 17,011.89 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 12,511.98 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 8,992.82 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 8,963.00 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 4,257.26 CUR
  • Project 547 - Silent Disco nad Wisłą: 3,416.49 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 3,407.45 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,299.53 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 2,975.58 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,898.14 CUR
  • Project 937 - Joga w parku: 2,544.46 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 2,407.28 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,153.39 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 745.06 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 520.95 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 425.05 CUR
+ +
+
27
1572Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce24,40040743421 +
+
+
+ + ↓ 24,400 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,171,327.69 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + culture
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 24,400 CUR - + using the total funding available to them at the start of round 27 (580,747.24 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,171,327.69 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 590,580.45 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 136,442.07 CUR
  • Project 774 - 2020 drzew dla Warszawy: 96,615.53 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 87,503.61 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 43,941.41 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 34,182.53 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 26,617.88 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 26,542.13 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 18,294.70 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 17,939.63 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 17,187.69 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 13,328.18 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 12,495.78 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 11,780.96 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 10,834.18 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 7,570.40 CUR
  • Project 547 - Silent Disco nad Wisłą: 5,718.80 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 4,511.17 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 4,447.74 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,251.43 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 2,690.82 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 2,566.93 CUR
  • Project 937 - Joga w parku: 2,347.67 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,355.95 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 860.50 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 781.40 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 771.35 CUR
+ +
+
1113Razem z sąsiadem - imprezy plenerowe w Wawrze, Wesołej i Rembertowie1,017,33335663566 +
+
+
+ + ↓ 1,017,333 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,025,271.12 +
+
+
+
+
+ Description:
+ Categories:
+ + education
+ + culture
+ + sport
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 1,017,333 CUR - + using the total funding available to them at the start of round 1 (504,984.47 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,025,271.12 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 520,286.64 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 98,377.30 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 94,442.96 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 73,481.63 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 57,045.89 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 51,465.62 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 27,579.62 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 15,374.49 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 15,249.50 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 14,085.76 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 13,280.93 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 11,651.19 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 11,115.41 CUR
  • Project 547 - Silent Disco nad Wisłą: 6,635.92 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,611.96 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 3,939.61 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 3,762.55 CUR
  • Project 937 - Joga w parku: 3,278.26 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 2,986.01 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 2,904.68 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 2,492.10 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 2,148.10 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,504.07 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,460.78 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 601.80 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 434.12 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 376.38 CUR
+ +
+
28
56Miejskie sauny272,27850243306 +
+
+
+ + ↓ 272,278 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,444,464.97 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public space
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 272,278 CUR - + using the total funding available to them at the start of round 28 (552,278.38 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,444,464.97 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 892,186.59 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 192,734.07 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 159,859.10 CUR
  • Project 774 - 2020 drzew dla Warszawy: 146,508.89 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 68,347.89 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 62,210.18 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 59,851.18 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 33,202.21 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 28,313.50 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 26,463.46 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 23,119.03 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 20,870.94 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 14,476.23 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 12,832.03 CUR
  • Project 547 - Silent Disco nad Wisłą: 10,402.21 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 6,586.53 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 4,040.32 CUR
  • Project 937 - Joga w parku: 3,554.77 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 3,184.67 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 3,121.71 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 2,792.55 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 2,525.78 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 2,201.45 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,851.91 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,615.78 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 698.30 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 526.99 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 294.90 CUR
+ +
+
1468Kwiaty i zieleń wokół pomnika Stefana Starzyńskiego na Placu Bankowym i przy Szkole Podstawowej nr 143 przez cały rok215,50032533253 +
+
+
+ + ↓ 215,500 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 935,279.57 +
+
+
+
+
+ Description:
+ Categories:
+ + urban greenery
+ + education
+ + environmental protection
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 215,500 CUR - + using the total funding available to them at the start of round 1 (214,559.81 CUR).

+ Note that the supporters of this project initially had more funding available to them (935,279.57 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 720,719.75 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 161,660.12 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 117,006.50 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 99,520.54 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 97,885.58 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 89,734.01 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 35,165.53 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 28,266.15 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 22,715.84 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 17,134.27 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 16,473.48 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 9,961.40 CUR
  • Project 547 - Silent Disco nad Wisłą: 3,804.57 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 2,716.32 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 2,620.26 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,998.59 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 1,966.85 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 1,864.45 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,826.21 CUR
  • Project 937 - Joga w parku: 1,400.32 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,338.09 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,306.94 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,210.77 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,207.02 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 656.61 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 553.12 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 485.31 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 240.88 CUR
+ +
+
29
1145Eksperymentujemy! - warsztaty naukowe dla dzieci77,40038553079 +
+
+
+ + ↓ 77,400 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,108,362.35 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + welfare
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 77,400 CUR - + using the total funding available to them at the start of round 29 (517,326.73 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,108,362.35 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 591,035.62 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 123,262.82 CUR
  • Project 774 - 2020 drzew dla Warszawy: 92,175.87 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 91,650.29 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 41,310.77 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 31,444.48 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 29,917.84 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 25,500.49 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 22,882.35 CUR
  • Project 56 - Miejskie sauny: 21,876.14 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 18,702.06 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 17,359.66 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 14,737.16 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 13,364.73 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 6,712.45 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 5,901.85 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 5,362.64 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 5,212.33 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 3,910.98 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,180.26 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 3,042.75 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,903.48 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 2,891.99 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 2,392.01 CUR
  • Project 937 - Joga w parku: 2,155.72 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,395.74 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 759.19 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 529.54 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 500.03 CUR
+ +
+
1733Warszawskie Centrum Edukacji Odpadowej716,75030603060 +
+
+
+ + ↓ 716,750 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 879,789.57 +
+
+
+
+
+ Description:
+ Categories:
+ + education
+ + environmental protection
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 716,750 CUR - + using the total funding available to them at the start of round 1 (259,185.54 CUR).

+ Note that the supporters of this project initially had more funding available to them (879,789.57 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 620,604.03 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 132,898.02 CUR
  • Project 774 - 2020 drzew dla Warszawy: 125,226.69 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 101,043.81 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 60,261.12 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 41,209.38 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 32,314.32 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 22,199.21 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 21,884.24 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 17,158.75 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 13,168.25 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 10,712.25 CUR
  • Project 56 - Miejskie sauny: 7,294.96 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 6,176.22 CUR
  • Project 547 - Silent Disco nad Wisłą: 3,868.39 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 3,653.25 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 2,900.53 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 2,559.02 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 2,224.27 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 2,215.34 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,160.61 CUR
  • Project 937 - Joga w parku: 2,104.78 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 2,004.91 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,518.38 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,089.47 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 779.92 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 779.10 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 755.65 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 443.20 CUR
+ +
+
30
564Podstawowy kurs pierwszej pomocy pediatrycznej50,00038103023 +
+
+
+ + ↓ 50,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,095,424.27 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 50,000 CUR - + using the total funding available to them at the start of round 30 (486,040.12 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,095,424.27 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 609,384.15 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 135,225.51 CUR
  • Project 774 - 2020 drzew dla Warszawy: 95,276.58 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 86,572.72 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 41,895.36 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 33,796.86 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 28,684.80 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 22,670.30 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 19,364.20 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 18,536.35 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 17,791.55 CUR
  • Project 56 - Miejskie sauny: 16,009.42 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 13,866.52 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 12,729.20 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 12,345.64 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 7,690.99 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 7,379.02 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 6,461.95 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 5,637.78 CUR
  • Project 547 - Silent Disco nad Wisłą: 4,181.29 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 4,097.23 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 3,597.61 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,170.87 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 3,037.06 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 3,014.46 CUR
  • Project 937 - Joga w parku: 2,278.32 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 1,426.96 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,294.57 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 754.69 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 596.35 CUR
+ +
+
31
1711Spacery z przewodnikiem szlakiem patronów warszawskich ulic16,90035762900 +
+
+
+ + ↓ 16,900 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,028,146.25 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public space
+ + welfare
+ + sport
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 16,900 CUR - + using the total funding available to them at the start of round 31 (439,312.36 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,028,146.25 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 588,833.88 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 105,847.21 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 89,450.01 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 77,801.04 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 60,654.71 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 52,466.63 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 30,941.01 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 22,708.87 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 21,478.50 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 19,814.72 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 18,376.81 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 15,078.16 CUR
  • Project 56 - Miejskie sauny: 13,044.91 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 7,561.49 CUR
  • Project 547 - Silent Disco nad Wisłą: 6,720.35 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 5,246.49 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 4,878.65 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 4,522.70 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 4,104.92 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,887.40 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 3,574.08 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 3,374.71 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 3,087.65 CUR
  • Project 937 - Joga w parku: 2,944.09 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 2,872.62 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 2,723.86 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,892.39 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,490.55 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 965.35 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 734.96 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 589.04 CUR
+ +
+
32
1083Warsztaty radzenia sobie ze stresem i trening relaksacji53,98034692788 +
+
+
+ + ↓ 53,980 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 997,382.36 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 53,980 CUR - + using the total funding available to them at the start of round 32 (418,927.10 CUR).

+ Note that the supporters of this project initially had more funding available to them (997,382.36 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 578,455.26 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 96,192.71 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 92,712.05 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 85,557.20 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 43,356.83 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 41,251.45 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 25,867.24 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 25,306.97 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 23,392.63 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 21,837.47 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 16,473.38 CUR
  • Project 56 - Miejskie sauny: 16,369.46 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 13,450.25 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 12,987.42 CUR
  • Project 547 - Silent Disco nad Wisłą: 7,521.36 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 7,288.74 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 5,537.71 CUR
  • Project 937 - Joga w parku: 5,517.22 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 5,106.54 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,917.35 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 4,589.45 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 4,202.70 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 3,817.81 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,414.26 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 3,129.19 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,825.56 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,595.29 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,562.58 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 1,341.38 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 955.68 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 688.78 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 688.60 CUR
+ +
+
33
681Samoobrona dla kobiet - warsztaty Wen do45,00035012752 +
+
+
+ + ↓ 45,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,006,582.78 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public space
+ + education
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 45,000 CUR - + using the total funding available to them at the start of round 33 (435,000.95 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,006,582.78 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 571,581.82 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 124,473.79 CUR
  • Project 774 - 2020 drzew dla Warszawy: 92,528.22 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 82,679.91 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 41,115.91 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 29,784.02 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 21,853.07 CUR
  • Project 56 - Miejskie sauny: 21,431.63 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 18,971.46 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 16,709.88 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 14,937.98 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 14,414.37 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 13,206.25 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 11,810.41 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 10,006.26 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 9,047.32 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 5,928.66 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 5,529.55 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 5,474.79 CUR
  • Project 547 - Silent Disco nad Wisłą: 4,370.39 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 3,940.63 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 3,558.04 CUR
  • Project 937 - Joga w parku: 3,372.73 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,912.82 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 2,755.83 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 2,728.37 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 2,361.33 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 2,086.17 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,063.68 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 769.09 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 704.29 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 566.50 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 488.48 CUR
+ +
+
34
133Mierniki jakości powietrza dla szkół na Białołęce148,20437152524 +
+
+
+ + ↓ 148,204 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,068,110.54 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + education
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 148,204 CUR - + using the total funding available to them at the start of round 34 (410,783.68 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,068,110.54 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 657,326.86 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 134,387.90 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 122,303.48 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 104,259.61 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 59,968.82 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 58,961.60 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 32,716.77 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 24,597.83 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 18,615.16 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 16,696.32 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 11,141.87 CUR
  • Project 56 - Miejskie sauny: 11,107.51 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 10,353.05 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 10,329.74 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,940.35 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 4,050.23 CUR
  • Project 547 - Silent Disco nad Wisłą: 3,651.25 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 3,460.84 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 2,837.28 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 2,529.29 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 2,369.96 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 2,245.10 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 2,114.11 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,110.91 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 2,004.79 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,808.40 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,687.01 CUR
  • Project 937 - Joga w parku: 1,492.28 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,390.36 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 945.70 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 670.18 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 629.26 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 618.66 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 331.22 CUR
+ +
+
1912Zielony zakątek Żoliborza Artystycznego537,80025362536 +
+
+
+ + ↓ 537,800 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 729,132.80 +
+
+
+
+
+ Description:
+ Categories:
+ + urban greenery
+ + education
+ + sport
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 537,800 CUR - + using the total funding available to them at the start of round 1 (325,169.52 CUR).

+ Note that the supporters of this project initially had more funding available to them (729,132.80 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 403,963.28 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 76,478.17 CUR
  • Project 774 - 2020 drzew dla Warszawy: 70,823.20 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 61,354.08 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 47,106.62 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 37,462.25 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 25,835.12 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 13,476.09 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 11,698.23 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 8,759.19 CUR
  • Project 56 - Miejskie sauny: 8,346.26 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 7,669.21 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 6,719.08 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 5,185.88 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 3,611.65 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 3,057.07 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,736.77 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,697.06 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 1,458.89 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,403.86 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,138.41 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 990.17 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 958.71 CUR
  • Project 937 - Joga w parku: 887.73 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 837.28 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 793.82 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 689.89 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 682.42 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 606.21 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 566.97 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 413.68 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 257.76 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 177.68 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 83.87 CUR
+ +
+
1521„Boisko pod balonem” w Dzielnicy Rembertów przy ul. Paderewskiego i modernizacja boiska w Parku Polińskiego w Dzielnicy Praga-Południe3,500,00023742374 +
+
+
+ + ↓ 3,500,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 682,555.70 +
+
+
+
+
+ Description:
+ Categories:
+ + urban greenery
+ + welfare
+ + sport
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 3,500,000 CUR - + using the total funding available to them at the start of round 2 (395,752.44 CUR).

+ Note that this project would have been rejected, even before taking any funding lost into account. + This is because the project's cost exceeded the total funds initially allocated to the supporters of this project + (682,555.70 CUR). + +
+
+

Funding spent in previous rounds.

From the initial total funding, 286,803.27 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 56,968.00 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 55,007.10 CUR
  • Project 774 - 2020 drzew dla Warszawy: 50,598.07 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 20,070.80 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 18,641.68 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 10,440.01 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 9,538.59 CUR
  • Project 56 - Miejskie sauny: 8,634.38 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 7,764.07 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 7,647.37 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 6,749.45 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 5,678.79 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 5,412.18 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 3,467.36 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 2,838.73 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,759.55 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,809.41 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,382.37 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,362.68 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,184.00 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,166.62 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,163.18 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 958.58 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 942.63 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 904.19 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 815.87 CUR
  • Project 937 - Joga w parku: 743.91 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 658.29 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 621.55 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 320.46 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 204.85 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 176.90 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 171.63 CUR
+ +
+
35
1864Muranów - tak dla zieleni na Al.Solidarności293,00056232359 +
+
+
+ + ↓ 293,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,616,685.22 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 293,000 CUR - + using the total funding available to them at the start of round 35 (409,126.01 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,616,685.22 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 1,207,559.20 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 313,203.09 CUR
  • Project 774 - 2020 drzew dla Warszawy: 242,913.01 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 177,969.13 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 127,829.56 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 90,085.03 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 47,440.92 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 39,710.07 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 24,928.19 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 24,507.86 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 23,690.02 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 18,529.49 CUR
  • Project 56 - Miejskie sauny: 18,264.76 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 7,760.33 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 6,112.84 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 6,028.57 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 5,206.06 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 4,855.71 CUR
  • Project 547 - Silent Disco nad Wisłą: 3,713.34 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,839.25 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 2,405.55 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 2,341.03 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 2,239.01 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 2,152.29 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,812.06 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,594.79 CUR
  • Project 937 - Joga w parku: 1,591.77 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,583.36 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,553.68 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,124.12 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,027.47 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 945.00 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 789.62 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 513.00 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 299.22 CUR
+ +
+
36
1871Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy88,15029332138 +
+
+
+ + ↓ 88,150 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 843,275.43 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + sport
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 88,150 CUR - + using the total funding available to them at the start of round 36 (322,088.02 CUR).

+ Note that the supporters of this project initially had more funding available to them (843,275.43 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 521,187.41 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 100,290.60 CUR
  • Project 774 - 2020 drzew dla Warszawy: 73,994.39 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 71,847.74 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 35,026.47 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 29,653.44 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 24,506.07 CUR
  • Project 56 - Miejskie sauny: 22,257.19 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 18,033.18 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 17,833.59 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 16,553.83 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 12,523.28 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 12,290.47 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 11,603.06 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 10,733.40 CUR
  • Project 937 - Joga w parku: 7,907.36 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 6,388.41 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 6,106.97 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 5,897.31 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 5,727.86 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 4,743.89 CUR
  • Project 547 - Silent Disco nad Wisłą: 4,652.72 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 3,911.14 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 2,675.12 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 2,565.41 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,415.58 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 2,148.73 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,622.16 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,597.39 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,521.36 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,365.59 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,031.64 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 734.14 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 388.00 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 361.42 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 278.52 CUR
+ +
+
1170Aplikacja przyrodniczo-turystyczna przybliżająca walory krajoznawcze wybranych kompleksów leśnych m.st. Warszawy wraz z materiałami informacyjnymi w postaci drukowanej.300,00021552155 +
+
+
+ + ↓ 300,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 619,590.37 +
+
+
+
+
+ Description:
+ Categories:
+ + urban greenery
+ + environmental protection
+ + culture
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 300,000 CUR - + using the total funding available to them at the start of round 1 (187,421.19 CUR).

+ Note that the supporters of this project initially had more funding available to them (619,590.37 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 432,169.18 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 94,173.64 CUR
  • Project 774 - 2020 drzew dla Warszawy: 69,836.61 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 67,277.92 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 32,444.55 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 31,409.48 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 17,309.16 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 17,285.96 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 12,655.11 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 12,334.12 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 11,102.87 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 9,709.38 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 8,236.69 CUR
  • Project 56 - Miejskie sauny: 7,570.07 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 6,039.58 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,682.95 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 4,306.32 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,563.51 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,492.05 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,388.09 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,105.78 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,867.49 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,842.37 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,667.22 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,493.54 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 1,242.05 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,192.22 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,087.60 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,075.40 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 992.30 CUR
  • Project 937 - Joga w parku: 984.03 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 901.13 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 843.80 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 501.96 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 347.29 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 206.96 CUR
+ +
+
37
1161Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego100,00034232118 +
+
+
+ + ↓ 100,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 984,156.77 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public transit and roads
+ + public space
+ + education
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 100,000 CUR - + using the total funding available to them at the start of round 37 (322,476.46 CUR).

+ Note that the supporters of this project initially had more funding available to them (984,156.77 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 661,680.31 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 115,684.17 CUR
  • Project 774 - 2020 drzew dla Warszawy: 114,585.60 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 111,547.08 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 71,855.41 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 48,048.78 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 36,262.04 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 22,702.88 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 22,426.17 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 16,430.68 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 14,854.99 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 13,915.48 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 11,729.07 CUR
  • Project 56 - Miejskie sauny: 9,399.71 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 7,665.86 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 5,452.24 CUR
  • Project 547 - Silent Disco nad Wisłą: 4,654.18 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 3,875.43 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 3,570.64 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 3,018.55 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 2,692.09 CUR
  • Project 937 - Joga w parku: 2,310.91 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,972.61 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,941.68 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 1,908.23 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,735.09 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 1,718.68 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,591.04 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,478.34 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,442.85 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,431.05 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,193.34 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 684.66 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 588.47 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 560.02 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 451.19 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 301.11 CUR
+ +
+
38
828Robotyka dla dzieci 6-8 lat55,98026002050 +
+
+
+ + ↓ 55,980 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 747,533.62 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 55,980 CUR - + using the total funding available to them at the start of round 38 (323,063.19 CUR).

+ Note that the supporters of this project initially had more funding available to them (747,533.62 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 424,470.43 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 70,967.23 CUR
  • Project 774 - 2020 drzew dla Warszawy: 59,547.87 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 59,407.67 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 26,306.39 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 19,543.78 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 16,933.43 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 15,997.55 CUR
  • Project 56 - Miejskie sauny: 15,687.54 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 15,066.80 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 13,603.78 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 11,694.71 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 11,137.85 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 11,136.26 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 9,874.72 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 8,004.15 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 6,165.10 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 5,641.07 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 5,435.63 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 5,305.95 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 4,213.57 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 3,823.16 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 3,568.76 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 3,262.44 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 2,968.00 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 2,966.46 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,642.92 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 2,244.13 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 2,199.67 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 2,024.17 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,738.39 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,548.96 CUR
  • Project 937 - Joga w parku: 1,155.53 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,036.58 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 524.97 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 518.56 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 301.83 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 274.82 CUR
+ +
+
1005Altany śmietnikowe dla Warszawy – projekt i prototyp387,55041462042 +
+
+
+ + ↓ 387,550 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 1,192,028.62 +
+
+
+
+
+ Description:
+ Categories:
+ + public space
+ + environmental protection
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 387,550 CUR - + using the total funding available to them at the start of round 1 (343,846.36 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,192,028.62 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 848,182.26 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 181,203.00 CUR
  • Project 774 - 2020 drzew dla Warszawy: 140,236.98 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 128,716.62 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 67,130.01 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 59,249.34 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 38,272.77 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 28,544.06 CUR
  • Project 56 - Miejskie sauny: 26,025.11 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 25,233.01 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 23,136.26 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 22,844.92 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 17,168.68 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 17,024.12 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 9,497.88 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 8,221.61 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 6,611.04 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 6,394.33 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 6,289.26 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 4,334.94 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 3,559.43 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 3,556.41 CUR
  • Project 547 - Silent Disco nad Wisłą: 3,405.92 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,143.77 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 2,488.57 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 2,040.96 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,852.50 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,674.57 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,613.99 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,576.03 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,498.72 CUR
  • Project 937 - Joga w parku: 1,252.10 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,189.04 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,134.42 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 697.31 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 654.34 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 454.30 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 255.94 CUR
+ +
+
39
856Pilates 18+ Warszawa152,80028381948 +
+
+
+ + ↓ 152,800 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 815,961.70 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + sport
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 152,800 CUR - + using the total funding available to them at the start of round 39 (305,663.48 CUR).

+ Note that the supporters of this project initially had more funding available to them (815,961.70 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 510,298.22 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 79,420.64 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 78,617.84 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 63,495.85 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 41,308.66 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 37,267.38 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 20,832.68 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 20,796.79 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 17,746.73 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 15,178.64 CUR
  • Project 56 - Miejskie sauny: 14,293.62 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 13,793.09 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 12,172.40 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 11,538.02 CUR
  • Project 547 - Silent Disco nad Wisłą: 9,688.68 CUR
  • Project 937 - Joga w parku: 8,602.12 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 8,043.99 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 7,218.98 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 5,893.66 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 4,901.91 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 3,842.40 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 3,421.88 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 3,342.10 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 3,105.58 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 2,971.35 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 2,865.35 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 2,573.59 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 2,534.28 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,483.93 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 2,117.07 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 2,097.25 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,927.35 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,393.68 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 1,295.25 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,171.51 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 895.64 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 589.58 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 442.25 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 416.49 CUR
+ +
+
40
1952Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych84,00025761920 +
+
+
+ + ↓ 84,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 740,633.31 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 84,000 CUR - + using the total funding available to them at the start of round 40 (302,270.70 CUR).

+ Note that the supporters of this project initially had more funding available to them (740,633.31 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 438,362.62 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 85,375.49 CUR
  • Project 774 - 2020 drzew dla Warszawy: 61,943.87 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 50,268.03 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 32,444.55 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 23,779.56 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 14,946.33 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 14,873.50 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 13,656.40 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 12,766.97 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 12,186.56 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 12,002.46 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 8,840.86 CUR
  • Project 56 - Miejskie sauny: 8,749.78 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 8,518.18 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 8,045.33 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 7,224.48 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 6,157.05 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 5,139.35 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 4,781.18 CUR
  • Project 856 - Pilates 18+ Warszawa: 4,697.31 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 4,298.69 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 4,254.57 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 3,928.87 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 3,358.36 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 3,202.79 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 3,138.17 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 2,933.56 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,776.43 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 2,707.21 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,935.91 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,904.44 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,473.36 CUR
  • Project 937 - Joga w parku: 1,345.54 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,308.40 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 938.66 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 686.96 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 680.66 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 557.00 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 535.79 CUR
+ +
+
41
1318Podpórki rowerowe przy Rondzie ONZ17,00029101785 +
+
+
+ + ↓ 17,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 836,662.63 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public transit and roads
+ + public space
+ + sport
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 17,000 CUR - + using the total funding available to them at the start of round 41 (218,146.39 CUR).

+ Note that the supporters of this project initially had more funding available to them (836,662.63 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 618,516.24 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 151,142.59 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 102,006.40 CUR
  • Project 774 - 2020 drzew dla Warszawy: 86,749.61 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 38,972.43 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 34,439.68 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 31,678.97 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 29,684.57 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 26,389.73 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 20,334.63 CUR
  • Project 56 - Miejskie sauny: 15,278.57 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 9,991.87 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 9,753.48 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 7,122.96 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 6,076.38 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 5,856.85 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 5,030.88 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 3,728.17 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 3,410.39 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,994.85 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 2,755.09 CUR
  • Project 856 - Pilates 18+ Warszawa: 2,722.00 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,459.64 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 2,382.26 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,248.50 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,933.02 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,695.68 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,478.24 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,432.49 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,272.77 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,235.00 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,098.30 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,013.83 CUR
  • Project 937 - Joga w parku: 900.47 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 850.63 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 681.82 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 566.97 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 384.55 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 359.51 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 263.21 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 139.26 CUR
+ +
+
1931Praca przyjazna rowerzyście - Baza biur i miejsc pracy dostosowanych do potrzeb rowerzystów220,00017741774 +
+
+
+ + ↓ 220,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 510,047.94 +
+
+
+
+
+ Description:
+ Categories:
+ + public transit and roads
+ + environmental protection
+ + sport
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 220,000 CUR - + using the total funding available to them at the start of round 1 (137,880.46 CUR).

+ Note that the supporters of this project initially had more funding available to them (510,047.94 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 372,167.48 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 97,489.51 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 53,731.24 CUR
  • Project 774 - 2020 drzew dla Warszawy: 51,232.31 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 22,798.87 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 18,169.44 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 16,299.06 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 15,112.16 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 12,227.53 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 12,002.58 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 10,463.68 CUR
  • Project 56 - Miejskie sauny: 10,140.71 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 8,478.92 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 5,715.50 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 4,101.86 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 3,817.37 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 3,342.54 CUR
  • Project 856 - Pilates 18+ Warszawa: 2,796.10 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 2,649.16 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,086.15 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 1,959.35 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 1,944.61 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,640.79 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 1,636.64 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,620.84 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,183.21 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,123.14 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,054.17 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 937.02 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 916.00 CUR
  • Project 937 - Joga w parku: 897.83 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 863.11 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 658.23 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 657.93 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 651.57 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 538.45 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 510.51 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 256.36 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 206.21 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 168.37 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 88.45 CUR
+ +
+
2093Warszawa mojego dzieciństwa - przejażdżka międzypokoleniowa zabytkowym tramwajem245,00017621762 +
+
+
+ + ↓ 245,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 506,597.79 +
+
+
+
+
+ Description:
+ Categories:
+ + education
+ + culture
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 245,000 CUR - + using the total funding available to them at the start of round 2 (209,183.98 CUR).

+ Note that the supporters of this project initially had more funding available to them (506,597.79 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 297,413.81 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 41,770.59 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 39,181.98 CUR
  • Project 774 - 2020 drzew dla Warszawy: 37,067.67 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 19,444.99 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 18,219.61 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 14,221.40 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 13,986.78 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 10,811.13 CUR
  • Project 56 - Miejskie sauny: 8,814.46 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 8,796.93 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 8,374.33 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 7,433.48 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 6,058.19 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 5,652.19 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 5,474.34 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 5,347.84 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 4,693.10 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 4,660.27 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 4,423.08 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 4,092.53 CUR
  • Project 856 - Pilates 18+ Warszawa: 3,946.92 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 3,590.72 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 2,435.73 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,169.58 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,739.06 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,722.69 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,561.64 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,524.80 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,443.84 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,303.87 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,290.39 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 1,216.61 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,010.83 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,002.79 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 990.64 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 648.46 CUR
  • Project 937 - Joga w parku: 638.25 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 254.41 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 215.13 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 182.55 CUR
+ +
+
42
575Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków293,70043931680 +
+
+
+ + ↓ 293,700 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 1,263,044.31 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 293,700 CUR - + using the total funding available to them at the start of round 42 (336,727.99 CUR).

+ Note that the supporters of this project initially had more funding available to them (1,263,044.31 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 926,316.32 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 258,185.39 CUR
  • Project 774 - 2020 drzew dla Warszawy: 163,703.78 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 106,375.27 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 73,463.02 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 64,677.31 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 34,308.69 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 26,788.92 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 22,867.90 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 19,123.10 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 19,080.84 CUR
  • Project 56 - Miejskie sauny: 15,909.25 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 14,184.73 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 14,178.86 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 10,349.66 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 9,225.11 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 8,029.94 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 7,696.63 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 7,384.58 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 6,445.19 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 5,180.87 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 3,530.70 CUR
  • Project 856 - Pilates 18+ Warszawa: 3,499.57 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 3,324.56 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,896.00 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 2,671.14 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 2,598.52 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 2,379.43 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,274.64 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 1,964.62 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,949.38 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,834.03 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,802.14 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 1,435.18 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,384.48 CUR
  • Project 937 - Joga w parku: 1,230.57 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,206.64 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 954.93 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 744.50 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 737.46 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 410.60 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 328.17 CUR
+ +
+
1278Warsztaty edukacyjno - parentingowe400,00016981698 +
+
+
+ + ↓ 400,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 488,196.96 +
+
+
+
+
+ Description:
+ Categories:
+ + education
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 400,000 CUR - + using the total funding available to them at the start of round 1 (175,906.05 CUR).

+ Note that the supporters of this project initially had more funding available to them (488,196.96 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 312,290.91 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 44,326.16 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 37,150.95 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 35,198.99 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 29,083.17 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 22,361.07 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 17,293.95 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 14,582.87 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 11,587.29 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 11,161.76 CUR
  • Project 856 - Pilates 18+ Warszawa: 8,556.88 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 7,859.72 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 7,206.18 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 5,708.83 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 5,192.53 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 4,267.15 CUR
  • Project 56 - Miejskie sauny: 4,203.29 CUR
  • Project 547 - Silent Disco nad Wisłą: 3,983.67 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 3,849.48 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 3,704.05 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 3,616.92 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 3,462.04 CUR
  • Project 937 - Joga w parku: 3,313.59 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 3,029.71 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 2,791.09 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 2,545.16 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,305.41 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 2,063.17 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 2,018.01 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 1,451.16 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 1,374.59 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 1,316.08 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,149.19 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,046.22 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 844.01 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 640.77 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 549.15 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 489.42 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 442.56 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 220.18 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 190.40 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 154.08 CUR
+ +
+
43
854Aktywne spacery dla mam z wózkami w Warszawie23,80021621529 +
+
+
+ + ↓ 23,800 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 621,602.96 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + sport
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 23,800 CUR - + using the total funding available to them at the start of round 43 (209,526.04 CUR).

+ Note that the supporters of this project initially had more funding available to them (621,602.96 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 412,076.92 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 71,015.83 CUR
  • Project 774 - 2020 drzew dla Warszawy: 56,799.50 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 51,960.55 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 25,497.24 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 25,478.22 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 21,293.68 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 16,243.71 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 12,546.95 CUR
  • Project 56 - Miejskie sauny: 10,597.78 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 10,549.82 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 10,512.59 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 10,492.82 CUR
  • Project 856 - Pilates 18+ Warszawa: 8,101.88 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 7,705.58 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 7,423.38 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 6,813.87 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 6,016.97 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 4,882.27 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 4,879.02 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 4,474.71 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 3,727.16 CUR
  • Project 547 - Silent Disco nad Wisłą: 3,536.98 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 3,231.52 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 2,987.64 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,654.78 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 2,446.90 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 2,218.43 CUR
  • Project 937 - Joga w parku: 2,125.51 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 2,032.65 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,885.95 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,869.16 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,719.28 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,668.61 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,370.18 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,009.21 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 978.12 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 861.31 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 815.71 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 663.98 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 447.44 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 289.75 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 250.29 CUR
+ +
+
44
803Nordic Walking - spacery dla zdrowia39,80020671486 +
+
+
+ + ↓ 39,800 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 594,289.23 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + sport
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 39,800 CUR - + using the total funding available to them at the start of round 44 (208,650.69 CUR).

+ Note that the supporters of this project initially had more funding available to them (594,289.23 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 385,638.54 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 59,069.16 CUR
  • Project 774 - 2020 drzew dla Warszawy: 57,151.86 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 43,300.16 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 28,346.34 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 27,037.12 CUR
  • Project 856 - Pilates 18+ Warszawa: 18,915.47 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 15,080.02 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 14,007.07 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 12,383.53 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 10,278.51 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 9,736.91 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 9,387.13 CUR
  • Project 56 - Miejskie sauny: 7,790.40 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 6,788.23 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 5,947.18 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 5,213.92 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 4,678.06 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 4,506.01 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 4,066.55 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 3,985.56 CUR
  • Project 547 - Silent Disco nad Wisłą: 3,931.26 CUR
  • Project 937 - Joga w parku: 3,776.35 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 2,587.20 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 2,512.46 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,387.03 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 2,210.67 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,047.88 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,997.83 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,802.31 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,765.49 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,603.96 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 1,587.47 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,551.37 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,522.51 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,419.61 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 1,203.71 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,189.38 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 753.63 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 695.35 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 460.11 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 329.33 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 321.46 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 312.96 CUR
+ +
+
45
1426Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających9,00019751464 +
+
+
+ + ↓ 9,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 567,838.04 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public space
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 9,000 CUR - + using the total funding available to them at the start of round 45 (213,370.32 CUR).

+ Note that the supporters of this project initially had more funding available to them (567,838.04 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 354,467.73 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 64,737.78 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 46,375.22 CUR
  • Project 774 - 2020 drzew dla Warszawy: 46,087.93 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 21,580.98 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 18,242.92 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 17,054.58 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 16,334.82 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 13,496.37 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 10,687.17 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 8,483.41 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 8,346.18 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 8,221.57 CUR
  • Project 56 - Miejskie sauny: 7,248.29 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 7,242.03 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 6,014.16 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 6,009.91 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 5,302.86 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 4,662.97 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 3,762.56 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 2,614.38 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 2,551.78 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,485.04 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,386.92 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 2,358.24 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,255.15 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 2,162.67 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 2,125.51 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,638.82 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,574.39 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,436.90 CUR
  • Project 856 - Pilates 18+ Warszawa: 1,421.32 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,381.47 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 1,081.60 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 1,060.15 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 844.51 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 822.42 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 784.77 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 755.84 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 693.15 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 652.57 CUR
  • Project 937 - Joga w parku: 550.69 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 353.35 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 345.94 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 238.45 CUR
+ +
+
1424Zielony zakątek - zagospodarowanie terenu wokół Przychodni Elbląska 35 wraz z remontem parkingu dla pacjentów360,00014271427 +
+
+
+ + ↓ 360,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 410,280.95 +
+
+
+
+
+ Description:
+ Categories:
+ + urban greenery
+ + public space
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 360,000 CUR - + using the total funding available to them at the start of round 1 (152,751.47 CUR).

+ Note that the supporters of this project initially had more funding available to them (410,280.95 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 257,529.49 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 46,641.45 CUR
  • Project 774 - 2020 drzew dla Warszawy: 43,339.57 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 32,750.38 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 22,311.71 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 20,999.41 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 15,023.42 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 13,797.26 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 9,136.57 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 6,156.73 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 4,477.57 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 4,332.25 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 3,928.64 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 3,818.30 CUR
  • Project 56 - Miejskie sauny: 3,578.83 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 2,677.66 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 2,214.34 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,000.16 CUR
  • Project 856 - Pilates 18+ Warszawa: 1,900.10 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,597.98 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 1,447.17 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 1,413.35 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 1,244.72 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,114.11 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,096.92 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,022.73 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 953.04 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 951.51 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 899.65 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 810.25 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 688.28 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 566.52 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 533.12 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 518.20 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 510.33 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 455.03 CUR
  • Project 937 - Joga w parku: 446.72 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 442.36 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 425.95 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 388.91 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 381.26 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 175.01 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 137.30 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 122.36 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 102.34 CUR
+ +
+
46
1828Dobre warszawskie targi rękodzieła - hand made129,53423031411 +
+
+
+ + ↓ 129,534 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 662,142.28 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public space
+ + education
+ + culture
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 129,534 CUR - + using the total funding available to them at the start of round 46 (232,028.56 CUR).

+ Note that the supporters of this project initially had more funding available to them (662,142.28 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 430,113.73 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 78,342.29 CUR
  • Project 774 - 2020 drzew dla Warszawy: 60,745.87 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 49,167.89 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 30,203.63 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 28,123.56 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 15,446.17 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 15,418.01 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 12,381.77 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 12,317.89 CUR
  • Project 56 - Miejskie sauny: 11,656.02 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 11,214.94 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 9,629.28 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 8,924.91 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 7,933.30 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 7,693.88 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 7,539.08 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 5,735.43 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 5,621.30 CUR
  • Project 856 - Pilates 18+ Warszawa: 5,529.84 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 4,358.94 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 3,902.17 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 3,665.54 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 3,556.52 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 3,290.72 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 3,184.42 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 2,193.39 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,130.93 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,089.83 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 1,931.34 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,860.15 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,819.08 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,714.26 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,713.83 CUR
  • Project 937 - Joga w parku: 1,350.10 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,196.13 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,141.88 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,102.78 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 815.84 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 741.35 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 691.86 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 583.97 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 522.17 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 405.06 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 296.81 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 229.59 CUR
+ +
+
554Kulturalna Warszawa - poznaj jej legendy! Cykl koncertów i gier miejskich z uwzględnieniem tematyki ekologicznej146,95013821382 +
+
+
+ + ↓ 146,950 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 397,342.87 +
+
+
+
+
+ Description:
+ Categories:
+ + public space
+ + education
+ + culture
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 146,950 CUR - + using the total funding available to them at the start of round 1 (144,143.68 CUR).

+ Note that the supporters of this project initially had more funding available to them (397,342.87 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 253,199.19 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 45,530.63 CUR
  • Project 774 - 2020 drzew dla Warszawy: 33,262.24 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 28,603.69 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 15,442.82 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 13,857.84 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 9,707.50 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 9,429.99 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 9,245.42 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 8,775.34 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 6,746.95 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 6,301.66 CUR
  • Project 856 - Pilates 18+ Warszawa: 5,455.90 CUR
  • Project 56 - Miejskie sauny: 5,368.72 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 5,274.49 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 4,766.49 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 4,638.49 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 4,538.65 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 3,450.72 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,779.26 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 2,694.43 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 2,453.67 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,422.45 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,067.07 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,966.35 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,687.51 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,532.58 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,492.72 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 1,331.72 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,255.77 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,235.00 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,194.29 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 1,150.83 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,110.40 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,020.10 CUR
  • Project 937 - Joga w parku: 866.41 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 832.13 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 800.57 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 761.25 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 611.39 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 471.69 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 270.17 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 266.56 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 201.91 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 189.93 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 135.50 CUR
+ +
+
47
1024Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków70,00017561187 +
+
+
+ + ↓ 70,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 504,872.71 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + sport
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 70,000 CUR - + using the total funding available to them at the start of round 47 (162,598.20 CUR).

+ Note that the supporters of this project initially had more funding available to them (504,872.71 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 342,274.51 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 43,130.80 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 41,466.89 CUR
  • Project 774 - 2020 drzew dla Warszawy: 36,997.19 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 18,024.75 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 17,688.15 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 14,272.11 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 14,251.19 CUR
  • Project 856 - Pilates 18+ Warszawa: 13,233.78 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 12,940.79 CUR
  • Project 56 - Miejskie sauny: 11,540.92 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 9,985.93 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 8,382.63 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 7,970.14 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 7,806.53 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 7,622.20 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 7,615.31 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 7,442.21 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 7,338.78 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 5,470.73 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,402.54 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 4,203.94 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 3,689.37 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 3,520.74 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 3,228.39 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 3,069.83 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 2,901.85 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,859.55 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 2,556.73 CUR
  • Project 937 - Joga w parku: 2,328.35 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,980.66 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,894.94 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,418.35 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,372.52 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,251.16 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 1,203.53 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,165.09 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,100.91 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,045.55 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,020.52 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 745.79 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 589.04 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 442.13 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 393.19 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 266.52 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 233.36 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 208.92 CUR
+ +
+
1340„Kodeks Dobrego Sąsiada” – partycypacyjne opracowanie zasad sąsiedzkiego współżycia i komunikacji oraz kampania społeczno-informacyjna dla mieszkanek i mieszkańców Warszawy461,70012231223 +
+
+
+ + ↓ 461,700 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 351,628.32 +
+
+
+
+
+ Description:
+ Categories:
+ + public space
+ + education
+ + culture
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 461,700 CUR - + using the total funding available to them at the start of round 1 (104,730.98 CUR).

+ Note that this project would have been rejected, even before taking any funding lost into account. + This is because the project's cost exceeded the total funds initially allocated to the supporters of this project + (351,628.32 CUR). + +
+
+

Funding spent in previous rounds.

From the initial total funding, 246,897.34 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 49,615.62 CUR
  • Project 774 - 2020 drzew dla Warszawy: 32,980.36 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 31,396.36 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 17,294.01 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 13,695.29 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 8,383.09 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 7,551.04 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 7,125.72 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 7,039.78 CUR
  • Project 56 - Miejskie sauny: 6,932.44 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 6,673.29 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 5,824.81 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 4,900.27 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 4,304.26 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 3,965.36 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 3,660.53 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 3,396.94 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 2,900.95 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 2,757.50 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 2,737.24 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,587.12 CUR
  • Project 856 - Pilates 18+ Warszawa: 2,132.88 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,111.37 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 1,522.70 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,375.38 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,201.68 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,177.51 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,166.47 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,120.11 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,111.93 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,044.21 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 991.10 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 734.80 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 691.79 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 670.06 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 669.16 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 589.30 CUR
  • Project 937 - Joga w parku: 585.52 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 551.38 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 333.20 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 326.28 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 320.89 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 282.02 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 195.86 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 165.51 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 104.22 CUR
+ +
+
48
17581000 x Stulecie Cudu nad Wisłą 1920-202077,00016811162 +
+
+
+ + ↓ 77,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 483,309.24 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + culture
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 77,000 CUR - + using the total funding available to them at the start of round 48 (184,904.30 CUR).

+ Note that the supporters of this project initially had more funding available to them (483,309.24 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 298,404.94 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 41,118.25 CUR
  • Project 774 - 2020 drzew dla Warszawy: 39,393.20 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 36,050.81 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 19,479.99 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 16,953.01 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 13,939.12 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 13,026.55 CUR
  • Project 56 - Miejskie sauny: 10,702.76 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 10,321.91 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 8,450.47 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 6,705.97 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 6,358.69 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 6,139.12 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 5,681.64 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 5,584.38 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 4,156.72 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,058.20 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 4,038.79 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 3,984.45 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 3,955.70 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 3,693.56 CUR
  • Project 856 - Pilates 18+ Warszawa: 3,597.44 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 3,393.19 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 2,699.55 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,590.34 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,006.99 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,940.46 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,909.94 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,821.65 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 1,457.48 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,382.00 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 1,372.12 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,193.32 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 1,172.06 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,144.30 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 987.43 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 890.67 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 849.13 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 803.72 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 721.11 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 672.01 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 596.06 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 371.28 CUR
  • Project 937 - Joga w parku: 338.14 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 306.03 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 201.36 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 193.84 CUR
+ +
+
49
1798Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach14,36015211014 +
+
+
+ + ↓ 14,360 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 437,307.17 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + culture
+ + sport
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 14,360 CUR - + using the total funding available to them at the start of round 49 (127,463.37 CUR).

+ Note that the supporters of this project initially had more funding available to them (437,307.17 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 309,843.80 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 48,866.84 CUR
  • Project 774 - 2020 drzew dla Warszawy: 37,842.84 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 37,320.20 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 18,511.11 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 17,781.17 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 10,583.47 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 10,537.13 CUR
  • Project 856 - Pilates 18+ Warszawa: 9,471.32 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 9,149.07 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 7,854.73 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 7,331.63 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 6,999.73 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 6,817.97 CUR
  • Project 56 - Miejskie sauny: 6,492.46 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 6,201.69 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 6,130.57 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 5,862.37 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 5,778.18 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 5,628.83 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 5,003.39 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 3,584.99 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 3,540.05 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 2,559.24 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 2,362.76 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,247.64 CUR
  • Project 937 - Joga w parku: 2,171.78 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,160.03 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,010.70 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,922.99 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,706.46 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,588.78 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,547.01 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,523.44 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,360.88 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 1,223.37 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,001.20 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 983.44 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 965.93 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 941.53 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 935.96 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 925.15 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 761.27 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 477.37 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 313.33 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 248.26 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 225.74 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 220.18 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 169.61 CUR
+ +
+
1966Prosto na imprezę – stoisko edukacyjno-profilaktyczne dotyczące zażywania substancji psychoaktywnych270,00031041051 +
+
+
+ + ↓ 270,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 892,440.14 +
+
+
+
+
+ Description:
+ Categories:
+ + education
+ + welfare
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 270,000 CUR - + using the total funding available to them at the start of round 1 (268,111.36 CUR).

+ Note that the supporters of this project initially had more funding available to them (892,440.14 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 624,328.78 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 92,951.05 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 85,600.13 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 77,602.33 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 61,479.00 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 42,474.75 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 29,052.45 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 24,502.07 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 21,462.43 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 17,721.73 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 14,919.14 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 14,585.36 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 12,586.62 CUR
  • Project 56 - Miejskie sauny: 11,736.34 CUR
  • Project 547 - Silent Disco nad Wisłą: 8,547.74 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 8,511.25 CUR
  • Project 856 - Pilates 18+ Warszawa: 8,337.30 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 7,824.20 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 7,823.44 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 5,811.78 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 4,897.70 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 4,847.81 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,536.84 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 4,471.64 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 4,193.18 CUR
  • Project 937 - Joga w parku: 4,150.27 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 4,028.30 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 3,724.27 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 3,722.92 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 3,638.64 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,835.50 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 2,534.15 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 2,443.01 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 2,424.53 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 2,393.47 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 2,149.97 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 2,065.69 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,643.01 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,576.78 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 1,563.90 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 1,428.41 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,260.99 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 1,045.33 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 834.68 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 694.16 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 518.85 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 463.97 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 446.92 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 264.78 CUR
+ +
+
50
1150Nauka tańca hawajskiego dla dorosłych i seniorów25,0001416976 +
+
+
+ + ↓ 25,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 407,118.31 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + culture
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 25,000 CUR - + using the total funding available to them at the start of round 50 (129,251.38 CUR).

+ Note that the supporters of this project initially had more funding available to them (407,118.31 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 277,866.93 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 774 - 2020 drzew dla Warszawy: 39,322.73 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 29,365.33 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 28,765.60 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 21,271.03 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 18,804.20 CUR
  • Project 856 - Pilates 18+ Warszawa: 15,897.30 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 10,156.79 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 10,077.63 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 8,877.56 CUR
  • Project 56 - Miejskie sauny: 8,168.55 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 6,915.89 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 6,731.32 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 6,428.00 CUR
  • Project 547 - Silent Disco nad Wisłą: 6,051.66 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 5,186.21 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 4,948.89 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 3,852.02 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 3,746.99 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 3,446.36 CUR
  • Project 937 - Joga w parku: 3,041.78 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 3,008.15 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 2,990.75 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 2,782.56 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 2,430.91 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,327.15 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 1,768.51 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,698.16 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 1,663.94 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,616.11 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,538.36 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 1,481.66 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,430.51 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,356.97 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 1,318.80 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,239.85 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 1,074.81 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 997.80 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 840.87 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 835.55 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 825.06 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 637.81 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 626.70 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 556.28 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 546.01 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 329.38 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 318.81 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 314.98 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 180.88 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 73.72 CUR
+ +
+
183PING-PONG 8+ nauka gry od podstaw dla dzieci i młodzieży z dzielnic Bemowo i Wola.215,000983983 +
+
+
+ + ↓ 215,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 282,625.21 +
+
+
+
+
+ Description:
+ Categories:
+ + education
+ + sport
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 215,000 CUR - + using the total funding available to them at the start of round 1 (101,081.84 CUR).

+ Note that the supporters of this project initially had more funding available to them (282,625.21 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 181,543.37 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 26,911.17 CUR
  • Project 774 - 2020 drzew dla Warszawy: 25,369.50 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 23,343.15 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 11,462.55 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 9,986.68 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 8,053.96 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 7,412.14 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 6,347.57 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 5,435.97 CUR
  • Project 56 - Miejskie sauny: 4,832.46 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 4,123.09 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 3,858.78 CUR
  • Project 856 - Pilates 18+ Warszawa: 3,674.98 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 3,365.66 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,959.60 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 2,590.25 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 2,325.66 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 2,323.89 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 2,094.45 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 2,078.67 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 1,588.26 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,479.42 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 1,420.65 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,389.67 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 1,345.83 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 1,322.41 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 1,071.52 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,045.52 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 945.15 CUR
  • Project 547 - Silent Disco nad Wisłą: 906.65 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 903.41 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 897.13 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 841.96 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 831.85 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 808.06 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 783.00 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 767.50 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 718.52 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 715.59 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 551.32 CUR
  • Project 937 - Joga w parku: 492.72 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 484.96 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 428.40 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 333.20 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 326.28 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 196.60 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 141.34 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 135.50 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 120.74 CUR
+ +
+
51
538Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany161,0002155926 +
+
+
+ + ↓ 161,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 619,590.37 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + culture
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 161,000 CUR - + using the total funding available to them at the start of round 51 (185,538.55 CUR).

+ Note that the supporters of this project initially had more funding available to them (619,590.37 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 434,051.82 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 86,426.75 CUR
  • Project 774 - 2020 drzew dla Warszawy: 57,715.62 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 53,229.95 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 29,229.32 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 25,873.48 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 19,710.38 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 19,520.70 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 17,465.02 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 10,826.27 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 9,532.46 CUR
  • Project 56 - Miejskie sauny: 8,712.44 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 8,612.17 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 7,790.50 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 7,675.46 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 5,871.03 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 5,147.30 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 4,858.79 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 4,671.62 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 4,176.30 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 3,923.16 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 3,911.75 CUR
  • Project 856 - Pilates 18+ Warszawa: 3,857.56 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,963.88 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,752.79 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 2,514.34 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,492.90 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 2,101.43 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 2,009.92 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,972.16 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,798.35 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,687.62 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,591.47 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,454.60 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 1,406.90 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,371.40 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 1,106.21 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,055.89 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 842.28 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 734.33 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 723.78 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 706.35 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 697.81 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 646.15 CUR
  • Project 937 - Joga w parku: 588.42 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 547.15 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 430.05 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 342.24 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 332.06 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 236.24 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 207.06 CUR
+ +
+
52
1898Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału56,0601650884 +
+
+
+ + ↓ 56,060 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 474,396.34 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + environmental protection
+ + welfare
+ + culture
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 56,060 CUR - + using the total funding available to them at the start of round 52 (115,550.98 CUR).

+ Note that the supporters of this project initially had more funding available to them (474,396.34 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 358,845.36 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 77,515.82 CUR
  • Project 774 - 2020 drzew dla Warszawy: 52,994.08 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 39,858.99 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 26,793.54 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 18,351.59 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 14,772.26 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 12,733.70 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 11,759.34 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 8,371.32 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 8,020.82 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 7,810.14 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 7,032.27 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 6,047.91 CUR
  • Project 856 - Pilates 18+ Warszawa: 5,973.47 CUR
  • Project 56 - Miejskie sauny: 5,218.16 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 5,010.40 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 4,049.56 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 3,704.22 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 3,516.86 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 2,976.96 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,771.75 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,326.95 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,113.09 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,015.40 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,923.01 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 1,849.48 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,670.74 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,642.93 CUR
  • Project 937 - Joga w parku: 1,630.52 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 1,584.92 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 1,399.79 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,365.92 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 1,311.56 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,174.93 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 1,121.79 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 1,083.28 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,072.03 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,055.46 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,049.24 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 980.54 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 951.57 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 724.17 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 628.94 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 611.39 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 518.56 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 499.80 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 364.94 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 323.04 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 222.07 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 184.31 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 161.84 CUR
+ +
+
1420Festiwal filmowy o tematyce ochrony środowiska naturalnego120,100887887 +
+
+
+ + ↓ 120,100 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 255,023.97 +
+
+
+
+
+ Description:
+ Categories:
+ + education
+ + environmental protection
+ + culture
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 120,100 CUR - + using the total funding available to them at the start of round 1 (66,923.50 CUR).

+ Note that the supporters of this project initially had more funding available to them (255,023.97 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 188,100.47 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 42,940.73 CUR
  • Project 774 - 2020 drzew dla Warszawy: 23,325.85 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 20,902.70 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 12,325.03 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 8,498.13 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 6,387.10 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 5,777.81 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 5,602.41 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 5,287.32 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 5,157.48 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 4,782.05 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 4,388.68 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 4,334.50 CUR
  • Project 56 - Miejskie sauny: 4,185.33 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 2,778.20 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 2,735.27 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 2,635.75 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 2,412.53 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 2,249.44 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,152.71 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 2,128.19 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 1,654.95 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 1,231.45 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,217.96 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,213.10 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,037.41 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 984.06 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 879.61 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 791.88 CUR
  • Project 856 - Pilates 18+ Warszawa: 771.31 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 734.65 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 721.53 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 713.18 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 622.49 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 576.72 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 572.26 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 432.85 CUR
  • Project 937 - Joga w parku: 393.73 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 336.44 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 294.43 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 263.59 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 221.90 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 211.51 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 209.44 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 200.64 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 197.13 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 165.51 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 155.56 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 123.17 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 118.95 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 65.87 CUR
+ +
+
53
328Przeganiamy smog na Nowym Rembertowie12,3501487863 +
+
+
+ + ↓ 12,350 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 427,531.73 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 12,350 CUR - + using the total funding available to them at the start of round 53 (121,475.17 CUR).

+ Note that the supporters of this project initially had more funding available to them (427,531.73 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 306,056.56 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 67,719.21 CUR
  • Project 774 - 2020 drzew dla Warszawy: 55,531.03 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 44,428.81 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 23,968.04 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 17,684.10 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 17,006.46 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 9,131.30 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 8,941.64 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 8,077.59 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 3,831.24 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 3,715.54 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 3,550.17 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 3,481.00 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 3,047.14 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,938.37 CUR
  • Project 856 - Pilates 18+ Warszawa: 2,790.38 CUR
  • Project 56 - Miejskie sauny: 2,533.12 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 1,876.60 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 1,776.08 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 1,731.16 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,663.70 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 1,453.10 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 1,314.85 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 1,301.78 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 1,225.37 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 1,214.21 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,162.48 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 1,104.21 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,084.24 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 997.26 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 912.78 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 841.85 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 733.82 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 707.87 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 655.21 CUR
  • Project 937 - Joga w parku: 647.30 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 578.09 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 571.45 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 570.12 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 553.46 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 523.08 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 355.63 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 315.05 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 291.10 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 249.39 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 240.61 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 233.34 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 222.41 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 181.72 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 180.88 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 112.91 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 98.30 CUR
+ +
+
54
622Mierniki jakości powietrza w wybranych szkołach na Ursynowie123,5042262841 +
+
+
+ + ↓ 123,504 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 650,354.25 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 123,504 CUR - + using the total funding available to them at the start of round 54 (155,308.11 CUR).

+ Note that the supporters of this project initially had more funding available to them (650,354.25 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 495,046.14 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 109,579.97 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 70,826.20 CUR
  • Project 774 - 2020 drzew dla Warszawy: 67,370.13 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 61,015.57 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 30,885.65 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 23,301.35 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 11,410.62 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 11,158.38 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 9,538.30 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 9,252.51 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 8,727.33 CUR
  • Project 56 - Miejskie sauny: 7,846.79 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 6,965.37 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 6,392.09 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 4,560.02 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 4,140.54 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 4,108.95 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,070.64 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 3,920.86 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 3,563.49 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 2,687.88 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,601.83 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 2,519.89 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 2,513.56 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 2,384.57 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,105.78 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 2,062.70 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 1,706.55 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 1,514.43 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,499.32 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,411.56 CUR
  • Project 856 - Pilates 18+ Warszawa: 1,371.17 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,146.40 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,145.21 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 988.74 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 921.59 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 903.41 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 865.08 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 738.23 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 704.47 CUR
  • Project 937 - Joga w parku: 607.24 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 497.32 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 492.76 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 492.20 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 419.56 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 385.11 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 361.07 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 310.10 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 271.67 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 230.18 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 226.46 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 193.63 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 131.73 CUR
+ +
+
55
342Etykiety produktów spożywczych pod lupą, czyli jak wybierać zdrową żywność - zajęcia skierowane do rodziców, dziadków i wszystkich dorosłych, którzy chcą stać się świadomym konsumentem38,2001356809 +
+
+
+ + ↓ 38,200 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 389,867.54 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 38,200 CUR - + using the total funding available to them at the start of round 55 (105,532.03 CUR).

+ Note that the supporters of this project initially had more funding available to them (389,867.54 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 284,335.51 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 50,954.97 CUR
  • Project 774 - 2020 drzew dla Warszawy: 32,275.65 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 27,080.42 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 13,320.35 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 13,201.91 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 10,221.24 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 8,569.90 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 7,547.84 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 7,517.74 CUR
  • Project 56 - Miejskie sauny: 7,492.38 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 7,339.82 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 7,244.09 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 6,372.36 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 6,094.81 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 5,079.09 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 4,835.76 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 4,745.74 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 4,727.70 CUR
  • Project 856 - Pilates 18+ Warszawa: 4,273.51 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 4,153.87 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 3,927.17 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 3,829.25 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 3,443.33 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 3,356.92 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 3,066.14 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 2,970.14 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 2,824.47 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,390.66 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 2,372.58 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,242.78 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,824.42 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,650.44 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,585.16 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,474.60 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,418.83 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,231.65 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 1,229.37 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,216.41 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,173.11 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 989.95 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 921.81 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 886.71 CUR
  • Project 937 - Joga w parku: 850.97 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 816.16 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 731.76 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 524.38 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 501.56 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 381.26 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 343.25 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 307.67 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 228.48 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 210.28 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 187.75 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 176.90 CUR
+ +
+
1580Montaż wyświetlaczy prędkości pojazdów na moście Śląsko-Dobrowskim160,0002135768 +
+
+
+ + ↓ 160,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 613,840.11 +
+
+
+
+
+ Description:
+ Categories:
+ + public transit and roads
+ + public space
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 160,000 CUR - + using the total funding available to them at the start of round 1 (152,705.94 CUR).

+ Note that the supporters of this project initially had more funding available to them (613,840.11 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 461,134.17 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 71,255.35 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 71,082.33 CUR
  • Project 774 - 2020 drzew dla Warszawy: 63,353.29 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 28,352.44 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 25,140.17 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 20,117.50 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 19,598.91 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 14,794.68 CUR
  • Project 56 - Miejskie sauny: 13,796.74 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 12,309.72 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 11,486.49 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 11,293.27 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 10,758.86 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 9,564.09 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 7,098.48 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 6,243.57 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 5,295.12 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 5,265.38 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 4,635.27 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,570.21 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 3,798.66 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 3,617.84 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 3,035.51 CUR
  • Project 856 - Pilates 18+ Warszawa: 2,732.89 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 2,701.02 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,357.65 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,268.78 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 2,016.13 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 2,001.55 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 1,820.43 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,679.72 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,507.85 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,487.92 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 1,418.77 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,096.50 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,021.77 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,016.40 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 990.71 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 956.94 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 936.06 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 752.01 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 729.74 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 706.05 CUR
  • Project 937 - Joga w parku: 624.61 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 615.63 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 556.41 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 485.35 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 445.90 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 407.85 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 384.17 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 305.24 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 275.86 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 244.31 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 126.09 CUR
+ +
+
853Warszawskie Fitnessowe Przedwiośnie164,840779779 +
+
+
+ + ↓ 164,840 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 223,972.57 +
+
+
+
+
+ Description:
+ Categories:
+ + sport
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 164,840 CUR - + using the total funding available to them at the start of round 2 (59,747.86 CUR).

+ Note that the supporters of this project initially had more funding available to them (223,972.57 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 164,224.71 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 856 - Pilates 18+ Warszawa: 16,291.13 CUR
  • Project 774 - 2020 drzew dla Warszawy: 14,728.41 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 14,724.98 CUR
  • Project 1160 - Miejskie łąkostrady antysmogowe: 14,530.40 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 9,082.93 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 7,324.24 CUR
  • Project 56 - Miejskie sauny: 6,931.14 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 6,230.95 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 6,186.87 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 5,698.34 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 5,644.97 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 5,455.77 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 3,574.59 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 3,567.74 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 3,483.95 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 2,769.80 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 2,636.92 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 2,317.41 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 2,092.83 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 1,993.32 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 1,875.99 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 1,859.75 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 1,859.30 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 1,818.36 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,776.03 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 1,669.22 CUR
  • Project 937 - Joga w parku: 1,526.47 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,514.56 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,380.90 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,343.12 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 1,178.04 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 1,159.86 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 1,075.41 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 1,057.68 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 926.91 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 828.15 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 647.01 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 629.77 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 613.64 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 606.41 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 603.14 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 559.04 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 377.99 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 317.75 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 304.26 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 283.83 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 278.74 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 228.08 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 190.40 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 179.95 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 88.84 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 71.51 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 66.48 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 61.44 CUR
+ +
+
56
10Plakaty informujące o dobrowolności prac domowych2,1001264756 +
+
+
+ + ↓ 2,100 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 363,416.35 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + welfare
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 2,100 CUR - + using the total funding available to them at the start of round 56 (93,532.48 CUR).

+ Note that the supporters of this project initially had more funding available to them (363,416.35 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 269,883.87 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 54,715.66 CUR
  • Project 774 - 2020 drzew dla Warszawy: 35,376.36 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 35,204.55 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 14,955.67 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 12,260.98 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 10,650.34 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 9,513.46 CUR
  • Project 56 - Miejskie sauny: 8,689.19 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 7,851.08 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 6,486.54 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 5,510.06 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 5,367.30 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 5,211.06 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 4,614.01 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 3,611.56 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 3,584.82 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 3,096.70 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 3,059.52 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 2,760.10 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 2,719.82 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 2,642.67 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 2,009.27 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,982.32 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 1,708.66 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 1,706.54 CUR
  • Project 856 - Pilates 18+ Warszawa: 1,698.43 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 1,650.77 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,595.28 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 1,459.68 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,433.40 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,386.34 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 1,380.04 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,335.45 CUR
  • Project 342 - Etykiety produktów spożywczych pod lupą, czyli jak wybierać zdrową żywność - zajęcia skierowane do rodziców, dziadków i wszystkich dorosłych, którzy chcą stać się świadomym konsumentem: 1,298.86 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,287.15 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,266.02 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,261.30 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 933.30 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 847.27 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 730.85 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 577.19 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 542.02 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 531.84 CUR
  • Project 937 - Joga w parku: 477.85 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 454.45 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 428.27 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 329.58 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 267.15 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 264.18 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 246.92 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 226.56 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 226.46 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 207.97 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 145.66 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 105.39 CUR
+ +
+
57
327Przeganiamy smog na Wygodzie24,7011318702 +
+
+
+ + ↓ 24,701 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 378,942.04 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 24,701 CUR - + using the total funding available to them at the start of round 57 (98,340.02 CUR).

+ Note that the supporters of this project initially had more funding available to them (378,942.04 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 280,602.03 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 67,562.97 CUR
  • Project 774 - 2020 drzew dla Warszawy: 42,282.51 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 32,665.76 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 20,314.38 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 13,115.12 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 13,067.32 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 7,776.13 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 6,997.80 CUR
  • Project 56 - Miejskie sauny: 6,475.74 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 6,400.87 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 5,951.96 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 4,914.95 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 4,714.82 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 4,155.23 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 3,874.41 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 3,463.37 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 3,399.56 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 2,705.76 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 2,642.04 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 2,436.67 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 2,173.25 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 2,028.86 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,771.49 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 1,767.27 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 1,421.37 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 1,291.02 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 1,269.79 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 1,221.47 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 974.17 CUR
  • Project 547 - Silent Disco nad Wisłą: 970.99 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 963.60 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 921.26 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 873.42 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 777.18 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 711.76 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 667.74 CUR
  • Project 856 - Pilates 18+ Warszawa: 642.40 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 544.67 CUR
  • Project 342 - Etykiety produktów spożywczych pod lupą, czyli jak wybierać zdrową żywność - zajęcia skierowane do rodziców, dziadków i wszystkich dorosłych, którzy chcą stać się świadomym konsumentem: 474.95 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 464.67 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 448.59 CUR
  • Project 937 - Joga w parku: 415.43 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 394.71 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 381.23 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 348.64 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 337.83 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 320.39 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 198.72 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 190.45 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 168.22 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 153.67 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 107.01 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 93.22 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 87.64 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 71.51 CUR
  • Project 10 - Plakaty informujące o dobrowolności prac domowych: 36.07 CUR
+ +
+
1419Lato z komedią we Włochach i na Ochocie - filmy na świeżym powietrzu152,0001842712 +
+
+
+ + ↓ 152,000 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 529,598.82 +
+
+
+
+
+ Description:
+ Categories:
+ + public space
+ + culture
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 152,000 CUR - + using the total funding available to them at the start of round 1 (150,104.90 CUR).

+ Note that the supporters of this project initially had more funding available to them (529,598.82 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 379,493.92 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 62,136.59 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 54,330.09 CUR
  • Project 774 - 2020 drzew dla Warszawy: 53,135.02 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 24,553.93 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 22,116.85 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 17,087.96 CUR
  • Project 56 - Miejskie sauny: 10,501.62 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 8,393.74 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 7,801.67 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 7,362.46 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 7,277.44 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 7,196.39 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 6,777.35 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 6,438.57 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 6,389.34 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 6,304.71 CUR
  • Project 856 - Pilates 18+ Warszawa: 5,872.77 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 5,653.50 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 4,573.61 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 4,427.34 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 4,197.74 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 3,884.83 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 3,738.75 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 3,265.20 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 3,260.33 CUR
  • Project 547 - Silent Disco nad Wisłą: 3,237.52 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,960.85 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 1,944.59 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,889.23 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,747.23 CUR
  • Project 342 - Etykiety produktów spożywczych pod lupą, czyli jak wybierać zdrową żywność - zajęcia skierowane do rodziców, dziadków i wszystkich dorosłych, którzy chcą stać się świadomym konsumentem: 1,672.91 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,671.90 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 1,532.12 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 1,525.40 CUR
  • Project 937 - Joga w parku: 1,374.10 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 1,323.02 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 1,225.75 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,156.34 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 1,099.82 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 1,011.48 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 1,009.33 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 956.22 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 886.04 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 819.44 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 733.12 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 679.92 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 617.13 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 612.47 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 519.95 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 514.02 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 325.61 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 244.34 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 238.77 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 163.73 CUR
  • Project 10 - Plakaty informujące o dobrowolności prac domowych: 66.58 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 57.19 CUR
+ +
+
58
1436Wycieczka rowerowa szlakiem poległych projektów budżetu partycypacyjnego3,0001130659 +
+
+
+ + ↓ 3,000 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 324,889.61 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public space
+ + culture
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 3,000 CUR - + using the total funding available to them at the start of round 58 (80,276.50 CUR).

+ Note that the supporters of this project initially had more funding available to them (324,889.61 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 244,613.11 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 47,679.59 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 45,105.82 CUR
  • Project 774 - 2020 drzew dla Warszawy: 28,540.69 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 13,542.92 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 10,481.35 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 8,720.70 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 8,643.56 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 8,294.31 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 7,708.72 CUR
  • Project 56 - Miejskie sauny: 5,966.84 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 5,829.81 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 4,308.58 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 4,037.86 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 3,947.12 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 3,046.05 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 2,570.14 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 2,307.36 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 2,229.20 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 1,948.43 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 1,856.29 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 1,795.39 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,678.57 CUR
  • Project 856 - Pilates 18+ Warszawa: 1,544.99 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 1,527.59 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 1,512.89 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 1,410.73 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 1,269.38 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 1,077.44 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 995.76 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 992.08 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 932.38 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 877.74 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 874.04 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 859.32 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 813.45 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 812.67 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 765.01 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 726.59 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 726.58 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 631.51 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 618.41 CUR
  • Project 937 - Joga w parku: 589.17 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 531.84 CUR
  • Project 342 - Etykiety produktów spożywczych pod lupą, czyli jak wybierać zdrową żywność - zajęcia skierowane do rodziców, dziadków i wszystkich dorosłych, którzy chcą stać się świadomym konsumentem: 525.90 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 500.98 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 466.69 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 436.13 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 432.55 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 368.73 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 344.47 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 272.21 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 189.80 CUR
  • Project 327 - Przeganiamy smog na Wygodzie: 186.28 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 185.88 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 183.15 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 111.75 CUR
  • Project 10 - Plakaty informujące o dobrowolności prac domowych: 79.73 CUR
+ +
+
59
2008Joga funkcjonalna na plaży, sesje regeneracyjne, tematyczne, w kontakcie z naturą27,6001226611 +
+
+
+ + ↓ 27,600 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 352,490.85 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + urban greenery
+ + welfare
+ + sport
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 27,600 CUR - + using the total funding available to them at the start of round 59 (71,592.80 CUR).

+ Note that the supporters of this project initially had more funding available to them (352,490.85 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 280,898.05 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 45,012.63 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 33,512.02 CUR
  • Project 774 - 2020 drzew dla Warszawy: 31,077.64 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 15,247.96 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 13,991.16 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 13,392.28 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 13,194.86 CUR
  • Project 856 - Pilates 18+ Warszawa: 12,951.31 CUR
  • Project 56 - Miejskie sauny: 9,009.70 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 7,710.71 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 7,457.15 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 5,653.86 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 5,103.57 CUR
  • Project 937 - Joga w parku: 5,012.81 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 5,005.37 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 4,580.61 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 4,556.51 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 4,164.24 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 3,782.87 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 3,619.41 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 3,365.52 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 3,219.32 CUR
  • Project 547 - Silent Disco nad Wisłą: 2,503.87 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 1,629.27 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 1,614.94 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 1,476.79 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 1,382.02 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 1,370.99 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 1,362.32 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 1,340.69 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 1,329.23 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 1,295.48 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 1,260.70 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 1,239.38 CUR
  • Project 342 - Etykiety produktów spożywczych pod lupą, czyli jak wybierać zdrową żywność - zajęcia skierowane do rodziców, dziadków i wszystkich dorosłych, którzy chcą stać się świadomym konsumentem: 1,168.52 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 1,135.21 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 995.13 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 991.77 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 795.67 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 731.15 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 714.75 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 708.61 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 691.58 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 691.00 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 651.95 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 570.55 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 532.32 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 500.52 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 376.55 CUR
  • Project 327 - Przeganiamy smog na Wygodzie: 223.84 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 206.73 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 206.57 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 160.08 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 131.73 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 98.30 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 85.79 CUR
  • Project 1436 - Wycieczka rowerowa szlakiem poległych projektów budżetu partycypacyjnego: 63.71 CUR
  • Project 10 - Plakaty informujące o dobrowolności prac domowych: 38.84 CUR
+ +
+
60
1041Aaaby... wiedzieć o smogu: miernik zanieczyszczenia powietrza z danymi dostępnymi online, przy Szkole Podstawowej nr 271, ul. Niegocińska (OSiR)12,3501161538 +
+
+
+ + ↓ 12,350 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 333,802.51 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + education
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 12,350 CUR - + using the total funding available to them at the start of round 60 (73,430.40 CUR).

+ Note that the supporters of this project initially had more funding available to them (333,802.51 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 260,372.12 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 60,175.98 CUR
  • Project 774 - 2020 drzew dla Warszawy: 36,926.72 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 30,042.34 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 29,723.86 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 16,270.99 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 11,929.49 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 8,593.48 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 7,646.59 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 5,788.94 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 4,827.97 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 4,610.66 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 4,307.91 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 4,126.97 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 3,727.11 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 3,602.91 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 2,466.40 CUR
  • Project 56 - Miejskie sauny: 2,395.16 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 1,694.65 CUR
  • Project 856 - Pilates 18+ Warszawa: 1,402.31 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 1,258.98 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,252.27 CUR
  • Project 327 - Przeganiamy smog na Wygodzie: 1,237.28 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 946.19 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 922.39 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 874.58 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 773.69 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 763.16 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 756.61 CUR
  • Project 547 - Silent Disco nad Wisłą: 712.56 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 667.34 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 659.40 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 642.61 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 590.55 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 564.71 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 550.57 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 550.37 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 532.78 CUR
  • Project 342 - Etykiety produktów spożywczych pod lupą, czyli jak wybierać zdrową żywność - zajęcia skierowane do rodziców, dziadków i wszystkich dorosłych, którzy chcą stać się świadomym konsumentem: 519.07 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 489.41 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 453.28 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 451.59 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 392.33 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 352.24 CUR
  • Project 937 - Joga w parku: 334.19 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 332.53 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 331.85 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 313.33 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 285.47 CUR
  • Project 2008 - Joga funkcjonalna na plaży, sesje regeneracyjne, tematyczne, w kontakcie z naturą: 255.49 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 240.50 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 207.03 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 196.71 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 169.84 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 157.31 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 133.26 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 90.89 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 78.60 CUR
  • Project 10 - Plakaty informujące o dobrowolności prac domowych: 38.84 CUR
  • Project 1436 - Wycieczka rowerowa szlakiem poległych projektów budżetu partycypacyjnego: 31.85 CUR
+ +
+
61
1044Aaaby... wiedzieć o smogu: miernik zanieczyszczenia powietrza z danymi dostępnymi online, Szkoła Podstawowa nr 107, ul. Nowoursynowska12,3501187495 +
+
+
+ + ↓ 12,350 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 341,277.85 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + public space
+ + education
+ + environmental protection
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 12,350 CUR - + using the total funding available to them at the start of round 61 (66,149.39 CUR).

+ Note that the supporters of this project initially had more funding available to them (341,277.85 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 275,128.46 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 58,144.16 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 36,662.57 CUR
  • Project 774 - 2020 drzew dla Warszawy: 34,883.07 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 29,026.82 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 21,739.16 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 15,053.10 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 9,421.30 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 6,723.27 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 6,074.69 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 4,754.72 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 4,565.06 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 4,330.71 CUR
  • Project 1041 - Aaaby... wiedzieć o smogu: miernik zanieczyszczenia powietrza z danymi dostępnymi online, przy Szkole Podstawowej nr 271, ul. Niegocińska (OSiR): 3,368.66 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 3,340.71 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 3,331.06 CUR
  • Project 56 - Miejskie sauny: 3,215.57 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 2,841.61 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 2,556.72 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 2,381.90 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 1,478.73 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 1,477.22 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 1,328.44 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 1,324.91 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 1,171.07 CUR
  • Project 327 - Przeganiamy smog na Wygodzie: 1,109.29 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 1,060.87 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 1,035.36 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 997.77 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 916.84 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 869.18 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 727.57 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 649.73 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 595.04 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 560.84 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 551.18 CUR
  • Project 342 - Etykiety produktów spożywczych pod lupą, czyli jak wybierać zdrową żywność - zajęcia skierowane do rodziców, dziadków i wszystkich dorosłych, którzy chcą stać się świadomym konsumentem: 541.04 CUR
  • Project 856 - Pilates 18+ Warszawa: 539.75 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 538.42 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 454.14 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 388.77 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 382.45 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 380.50 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 373.83 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 356.84 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 334.45 CUR
  • Project 547 - Silent Disco nad Wisłą: 306.91 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 264.46 CUR
  • Project 937 - Joga w parku: 262.95 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 262.72 CUR
  • Project 2008 - Joga funkcjonalna na plaży, sesje regeneracyjne, tematyczne, w kontakcie z naturą: 190.66 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 187.37 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 184.00 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 181.42 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 169.01 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 141.30 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 134.01 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 123.17 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 75.28 CUR
  • Project 1436 - Wycieczka rowerowa szlakiem poległych projektów budżetu partycypacyjnego: 50.06 CUR
  • Project 10 - Plakaty informujące o dobrowolności prac domowych: 36.07 CUR
+ +
+
62
1963Bezpłatne zajęcia futbolu flagowego dla dzieci96,140829395 +
+
+
+ + ↓ 96,140 + +
+
+ +
+
+
+
+
+
+ +
+
+ + ↑ + + 238,348.22 +
+
+
+
+
+ Round Analysis: Click Me!
+ Description:
+ Categories:
+ + sport
+ + Other Details:
+
+ +
+

Why was this project selected?

+ + This project was accepted because its supporters were able to pay for the project's cost - 96,140 CUR - + using the total funding available to them at the start of round 62 (101,892.30 CUR).

+ Note that the supporters of this project initially had more funding available to them (238,348.22 CUR). However, this funding + was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them, but not to the point where the project cost exceedes the combined funds of the supporters. + As a result, this project could still be afforded.

+ These projects and the specific funding lost can be seen below. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 136,455.93 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 8,592.43 CUR
  • Project 774 - 2020 drzew dla Warszawy: 6,976.61 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 5,246.83 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 4,446.90 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 3,467.66 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 3,060.06 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 2,728.07 CUR
  • Project 56 - Miejskie sauny: 2,523.81 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 2,213.50 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 2,139.19 CUR
  • Project 856 - Pilates 18+ Warszawa: 1,856.28 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 1,538.78 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 1,464.46 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 1,377.93 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 1,290.56 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 1,286.53 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,187.48 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 1,168.23 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 1,101.49 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 874.41 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 860.05 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 825.13 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 804.22 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 716.37 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 656.53 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 645.75 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 599.67 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 572.18 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 535.33 CUR
  • Project 937 - Joga w parku: 444.41 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 393.56 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 379.02 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 330.82 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 330.29 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 307.53 CUR
  • Project 2008 - Joga funkcjonalna na plaży, sesje regeneracyjne, tematyczne, w kontakcie z naturą: 306.23 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 300.30 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 297.64 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 286.60 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 286.21 CUR
  • Project 342 - Etykiety produktów spożywczych pod lupą, czyli jak wybierać zdrową żywność - zajęcia skierowane do rodziców, dziadków i wszystkich dorosłych, którzy chcą stać się świadomym konsumentem: 283.13 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 266.32 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 238.89 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 238.10 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 233.34 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 198.15 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 177.39 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 160.43 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 156.99 CUR
  • Project 327 - Przeganiamy smog na Wygodzie: 140.58 CUR
  • Project 1041 - Aaaby... wiedzieć o smogu: miernik zanieczyszczenia powietrza z danymi dostępnymi online, przy Szkole Podstawowej nr 271, ul. Niegocińska (OSiR): 135.59 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 128.37 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 47.60 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 45.55 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 42.89 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 40.38 CUR
  • Project 1436 - Wycieczka rowerowa szlakiem poległych projektów budżetu partycypacyjnego: 36.40 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 28.23 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 18.43 CUR
  • Project 10 - Plakaty informujące o dobrowolności prac domowych: 8.32 CUR
  • Project 1044 - Aaaby... wiedzieć o smogu: miernik zanieczyszczenia powietrza z danymi dostępnymi online, Szkoła Podstawowa nr 107, ul. Nowoursynowska: 0.00 CUR
+ +
+
804Warsztaty edukacyjne – mieszkanie w spółdzielni mieszkaniowej czy wspólnota w Warszawie905,500235235 +
+
+
+ + ↓ 905,500 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 67,565.54 +
+
+
+
+
+ Description:
+ Categories:
+ + education
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 905,500 CUR - + using the total funding available to them at the start of round 1 (21,671.06 CUR).

+ Note that this project would have been rejected, even before taking any funding lost into account. + This is because the project's cost exceeded the total funds initially allocated to the supporters of this project + (67,565.54 CUR). + +
+
+

Funding spent in previous rounds.

From the initial total funding, 45,894.48 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 5,353.45 CUR
  • Project 774 - 2020 drzew dla Warszawy: 4,439.66 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 3,892.81 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 3,421.95 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 2,289.63 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 1,838.92 CUR
  • Project 56 - Miejskie sauny: 1,773.55 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 1,728.02 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 1,637.10 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 1,625.46 CUR
  • Project 856 - Pilates 18+ Warszawa: 1,462.29 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 1,400.41 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 1,253.44 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 1,119.76 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 1,054.55 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 918.54 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 899.27 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 860.37 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 733.88 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 661.65 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 624.83 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 518.71 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 466.26 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 440.60 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 435.53 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 424.83 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 390.19 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 363.11 CUR
  • Project 547 - Silent Disco nad Wisłą: 304.49 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 264.57 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 250.62 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 244.75 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 215.41 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 212.98 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 196.17 CUR
  • Project 342 - Etykiety produktów spożywczych pod lupą, czyli jak wybierać zdrową żywność - zajęcia skierowane do rodziców, dziadków i wszystkich dorosłych, którzy chcą stać się świadomym konsumentem: 192.25 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 178.04 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 166.52 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 160.60 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 154.90 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 128.06 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 124.45 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 123.52 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 113.53 CUR
  • Project 327 - Przeganiamy smog na Wygodzie: 100.10 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 99.69 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 99.05 CUR
  • Project 937 - Joga w parku: 96.61 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 78.45 CUR
  • Project 1041 - Aaaby... wiedzieć o smogu: miernik zanieczyszczenia powietrza z danymi dostępnymi online, przy Szkole Podstawowej nr 271, ul. Niegocińska (OSiR): 49.63 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 49.15 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 47.60 CUR
  • Project 2008 - Joga funkcjonalna na plaży, sesje regeneracyjne, tematyczne, w kontakcie z naturą: 45.13 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 44.85 CUR
  • Project 1044 - Aaaby... wiedzieć o smogu: miernik zanieczyszczenia powietrza z danymi dostępnymi online, Szkoła Podstawowa nr 107, ul. Nowoursynowska: 30.98 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 28.27 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 25.78 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 20.70 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 14.30 CUR
  • Project 1436 - Wycieczka rowerowa szlakiem poległych projektów budżetu partycypacyjnego: 4.55 CUR
+ +
+
1218Widowisko taneczno-muzyczne - Poznaj Hawaje97,200364364 +
+
+
+ + ↓ 97,200 + +
+
+ +
+
+ +
+ +
+
+
+ +
+
+ + ↑ + + 104,654.71 +
+
+
+
+
+ Description:
+ Categories:
+ + education
+ + culture
+ + Other Details:
+
+ + +
+

Why was this project not selected?

+ + This project was rejected because its supporters were not able to pay for the project's cost - 97,200 CUR - + using the total funding available to them at the start of round 2 (37,610.58 CUR).

+ Note that the supporters of this project initially had more funding available to them (104,654.71 CUR), enough to cover the cost of project.

+ However, this funding was lost as these supporters had also funded projects in the previous rounds, decreasing the total funding available to them to the point where the project cost exceeds + the combined funds of the supporters.
The top projects that can be seen in the list below were the main cause for the decrease in funding, these were + regarded as more important as they had a higher effective vote count, implying they were selected earlier than this project. + +
+
+

Funding spent in previous rounds.

From the initial total funding, 67,044.12 CUR was spent on previously selected projects.
The funding was spent on:
  • Project 1160 - Miejskie łąkostrady antysmogowe: 8,592.43 CUR
  • Project 774 - 2020 drzew dla Warszawy: 6,976.61 CUR
  • Project 888 - Nowe drogi rowerowe - chcemy spójnej sieci: 5,246.83 CUR
  • Project 1240 - Hamaki Miejskie dla Warszawy: 4,446.90 CUR
  • Project 1822 - Kwiaty dla Warszawy, aby Warszawa była jeszcze piękniejsza: 3,467.66 CUR
  • Project 1297 - Nowy chodnik i drzewa wyciszające na granicy Ursynowa oraz Mokotowa: 3,060.06 CUR
  • Project 2166 - Nasze miasto w szpalerach zieleni: 2,728.07 CUR
  • Project 56 - Miejskie sauny: 2,523.81 CUR
  • Project 1851 - Szanujmy Naszą Wisłę: 2,213.50 CUR
  • Project 1150 - Nauka tańca hawajskiego dla dorosłych i seniorów: 2,139.19 CUR
  • Project 856 - Pilates 18+ Warszawa: 1,856.28 CUR
  • Project 2152 - Czyste powietrze - lepsze życie: 1,538.78 CUR
  • Project 575 - Warszawskie szklane wiaty przystankowe bezpieczne dla ptaków: 1,464.46 CUR
  • Project 1864 - Muranów - tak dla zieleni na Al.Solidarności: 1,377.93 CUR
  • Project 622 - Mierniki jakości powietrza w wybranych szkołach na Ursynowie: 1,290.56 CUR
  • Project 1780 - Do lasku na kole - ścieżki pieszo- rowerowe Powązkowska, Dygata, Kozielska, Szamocka, Prymasa Tysiąclecia: 1,286.53 CUR
  • Project 547 - Silent Disco nad Wisłą: 1,187.48 CUR
  • Project 1871 - Joga, taniec, medytacja, w otwartych przestrzeniach miejskich Warszawy: 1,168.23 CUR
  • Project 1719 - Nie! - dla smogu – altana solarna w każdym parku Warszawy!: 1,101.49 CUR
  • Project 580 - Aplikacja Bezpłatne toalety: 874.41 CUR
  • Project 645 - Warsztaty Wiem, co jem w wakacje i ferie w szkołach w całej Warszawie.: 860.05 CUR
  • Project 1828 - Dobre warszawskie targi rękodzieła - hand made: 825.13 CUR
  • Project 1145 - Eksperymentujemy! - warsztaty naukowe dla dzieci: 804.22 CUR
  • Project 1083 - Warsztaty radzenia sobie ze stresem i trening relaksacji: 716.37 CUR
  • Project 1024 - Nie czekaj, rusz się, Warszawo - warsztaty ruchowe dla warszawiaków: 656.53 CUR
  • Project 133 - Mierniki jakości powietrza dla szkół na Białołęce: 645.75 CUR
  • Project 1758 - 1000 x Stulecie Cudu nad Wisłą 1920-2020: 599.67 CUR
  • Project 538 - Dokończenie wydawania Atlasu Dawnej Architektury Ulic i Placów Warszawy: ulice i budynki wpisane do rejestru zabytków i ujęte w gminnej ewidencji zabytków z litery „P” dla Dzielnic Śródmieście, Mokotów, Wola, Ochota, Praga Północ i Południe oraz Bielany: 572.18 CUR
  • Project 803 - Nordic Walking - spacery dla zdrowia: 535.33 CUR
  • Project 937 - Joga w parku: 444.41 CUR
  • Project 1952 - Bezpieczny senior – warsztaty zwiększające bezpieczeństwo osób starszych: 393.56 CUR
  • Project 1898 - Ekonomia+ekologia=energia+estetyka w nurcie zero waste - twórcze warsztaty projektowania, modelowania, prostych technik szycia jako efektywne wykorzystanie własnego potencjału: 379.02 CUR
  • Project 1910 - Posiłki dla osób ubogich i bezdomnych na terenie miasta (tylko w opakowaniach eko): 330.82 CUR
  • Project 1393 - Szkolenia komputerowe dla osób z dysfunkcją narządu wzroku: 330.29 CUR
  • Project 1684 - Wielka Garażówka Warszawska - wyprzedaż garażowa w Warszawie w różnych lokalizacjach: 307.53 CUR
  • Project 2008 - Joga funkcjonalna na plaży, sesje regeneracyjne, tematyczne, w kontakcie z naturą: 306.23 CUR
  • Project 828 - Robotyka dla dzieci 6-8 lat: 300.30 CUR
  • Project 564 - Podstawowy kurs pierwszej pomocy pediatrycznej: 297.64 CUR
  • Project 601 - Rozwijanie umiejętności społecznych u dzieci: 286.60 CUR
  • Project 681 - Samoobrona dla kobiet - warsztaty Wen do: 286.21 CUR
  • Project 342 - Etykiety produktów spożywczych pod lupą, czyli jak wybierać zdrową żywność - zajęcia skierowane do rodziców, dziadków i wszystkich dorosłych, którzy chcą stać się świadomym konsumentem: 283.13 CUR
  • Project 1161 - Audyt Zarządu Miejskich Inwestycji Drogowych i pasa drogowego: 266.32 CUR
  • Project 1711 - Spacery z przewodnikiem szlakiem patronów warszawskich ulic: 238.89 CUR
  • Project 845 - Zajęcia sensoryczne dla mam z dziećmi od 6 miesięcy do 3 lat: 238.10 CUR
  • Project 854 - Aktywne spacery dla mam z wózkami w Warszawie: 233.34 CUR
  • Project 1798 - Aktywne niedziele - spacery Nordic Walking po warszawskich parkach, ogrodach i skwerach: 198.15 CUR
  • Project 1731 - Warsztaty komputerowe dla osób niepełnosprawnych: 177.39 CUR
  • Project 2159 - Pomagamy ginącym w Warszawie jaskółkom oknówkom – budowa „jaskółkownika”: 160.43 CUR
  • Project 1563 - Paleniska na Plażach Miejskich: 156.99 CUR
  • Project 327 - Przeganiamy smog na Wygodzie: 140.58 CUR
  • Project 1041 - Aaaby... wiedzieć o smogu: miernik zanieczyszczenia powietrza z danymi dostępnymi online, przy Szkole Podstawowej nr 271, ul. Niegocińska (OSiR): 135.59 CUR
  • Project 1572 - Pomigaj do mnie - bezpłatne zajęcia nauki języka migowego dla młodzieży i dorosłych. Najbardziej głuchy jest ten, kto słuchać nie chce: 128.37 CUR
  • Project 1318 - Podpórki rowerowe przy Rondzie ONZ: 47.60 CUR
  • Project 1637 - Dbajmy o ptactwo zimą: 45.55 CUR
  • Project 328 - Przeganiamy smog na Nowym Rembertowie: 42.89 CUR
  • Project 1971 - Edukacja w zakresie szczepień dla kobiet w ciąży oraz szczepień dzieci: 40.38 CUR
  • Project 1436 - Wycieczka rowerowa szlakiem poległych projektów budżetu partycypacyjnego: 36.40 CUR
  • Project 1518 - Zajęcia aktywizujące dla osób z niepełnosprawnością: 28.23 CUR
  • Project 1426 - Ustawienie i udostępnienie przenośnych toalet publicznych przy cmentarzu Stare Powązki w święto wszystkich świętych , dniu zadusznym i dniach je poprzedzających: 18.43 CUR
  • Project 10 - Plakaty informujące o dobrowolności prac domowych: 8.32 CUR
+ +
+
+
+ +
+
+
+ + + +
+ + + + + + \ No newline at end of file diff --git a/docs/py-modindex.html b/docs/py-modindex.html index b88fac02..33c661ac 100644 --- a/docs/py-modindex.html +++ b/docs/py-modindex.html @@ -34,7 +34,7 @@ - + diff --git a/docs/quickstart.html b/docs/quickstart.html index 4dc8b0bf..d60f94f4 100644 --- a/docs/quickstart.html +++ b/docs/quickstart.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/analysis/index.html b/docs/reference/analysis/index.html index 2c4b69b8..44bb125a 100644 --- a/docs/reference/analysis/index.html +++ b/docs/reference/analysis/index.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/election/ballot.html b/docs/reference/election/ballot.html index f0c1fe77..71cb6444 100644 --- a/docs/reference/election/ballot.html +++ b/docs/reference/election/ballot.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/election/index.html b/docs/reference/election/index.html index 6e6e6f64..806d7d15 100644 --- a/docs/reference/election/index.html +++ b/docs/reference/election/index.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/election/instance.html b/docs/reference/election/instance.html index af914958..e06aacf6 100644 --- a/docs/reference/election/instance.html +++ b/docs/reference/election/instance.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/election/libraries.html b/docs/reference/election/libraries.html index ca20a5cc..c04c840a 100644 --- a/docs/reference/election/libraries.html +++ b/docs/reference/election/libraries.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/election/profile.html b/docs/reference/election/profile.html index 31a89b15..05b5cb00 100644 --- a/docs/reference/election/profile.html +++ b/docs/reference/election/profile.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/election/satisfaction.html b/docs/reference/election/satisfaction.html index f3c4687d..0563fb97 100644 --- a/docs/reference/election/satisfaction.html +++ b/docs/reference/election/satisfaction.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/fractions.html b/docs/reference/fractions.html index f447591d..3633088d 100644 --- a/docs/reference/fractions.html +++ b/docs/reference/fractions.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/index.html b/docs/reference/index.html index cb9bdbc5..161da9a9 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/rules/index.html b/docs/reference/rules/index.html index 4decd9d1..678704e1 100644 --- a/docs/reference/rules/index.html +++ b/docs/reference/rules/index.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/tiebreaking.html b/docs/reference/tiebreaking.html index 8bbebed2..30cd3ed7 100644 --- a/docs/reference/tiebreaking.html +++ b/docs/reference/tiebreaking.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/utils.html b/docs/reference/utils.html index e1478f61..ecf67d81 100644 --- a/docs/reference/utils.html +++ b/docs/reference/utils.html @@ -35,7 +35,7 @@ - + diff --git a/docs/reference/visualisation/index.html b/docs/reference/visualisation/index.html index a70601a2..5c24f6e4 100644 --- a/docs/reference/visualisation/index.html +++ b/docs/reference/visualisation/index.html @@ -35,7 +35,7 @@ - + @@ -343,16 +343,16 @@

Contents

-class MESVisualiser(profile: AbstractProfile, instance: Instance, mes_details: MESAllocationDetails, verbose: bool = False)[source]#
+class MESVisualiser(profile, instance, outcome, verbose=False)[source]#

Class used to visualise the results of a MES election. The visualisation result consists of two pages: a summary page called ‘summary.html’ and a round by round analysis page called ‘round_analysis.html’.

Parameters:
    -
  • profile (AbstractProfile) – The profile.

  • -
  • instance (Instance) – The election instance.

  • -
  • mes_details (MESAllocationDetails) – The details of the MES allocation.

  • +
  • profile (AbstractProfile) – The profile.

  • +
  • instance (Instance) – The election instance.

  • +
  • outcome (AllocationDetails) – The outcome of the election.

  • verbose (bool, optional) – Whether to print the results to the console. The default is False.

@@ -362,35 +362,50 @@

Contents

-render(outcome, output_folder_path)[source]#
+render(output_folder_path, name='')[source]#

Render the visualisation.

+
+
Parameters:
+
    +
  • output_folder_path (str) – The path to the folder where the visualisation will be saved.

  • +
  • name (str, optional) – The prefix of the output files. The default is “”.

  • +
+
+
Return type:
+

None

+
+
-class GreedyWelfareVisualiser(profile: AbstractProfile, instance: Instance, greedy_details: GreedyWelfareAllocationDetails, verbose: bool = False)[source]#
-

Class used to visualise the results of a Greedy Welfare election. The visualisation result consits of a round by round analysis page called ‘round_analysis.html’.

+class GreedyWelfareVisualiser(profile, instance, outcome, verbose=False)[source]# +

Class used to visualise the results of a Greedy Welfare election. The visualisation result +consits of a round by round analysis page called ‘round_analysis.html’.

Parameters:
    -
  • profile (AbstractProfile) – The profile.

  • +
  • profile (AbstractProfile) – The profile.

  • instance (Instance) – The election instance.

  • -
  • greedy_details (GreedyWelfareAllocationDetails) – The details of the Greedy Welfare allocation.

  • +
  • outcome (AllocationDetails) – The outcome of the election.

  • verbose (bool, optional) – Whether to print the results to the console. The default is False.

+
Return type:
+

None

+
-render(outcome, output_folder_path)[source]#
+render(output_folder_path, output_filename='greedy_explanation.html')[source]#

Render the visualisation.

Parameters:
    -
  • outcome (list [Project]) – The list of elected projects.

  • output_folder_path (str) – The path to the folder where the visualisation will be saved.

  • +
  • output_filename (str, optional) – The name of the file. The default is “greedy_explanation.html”.

Return type:
diff --git a/docs/search.html b/docs/search.html index 71def6b7..bc63b7d8 100644 --- a/docs/search.html +++ b/docs/search.html @@ -33,7 +33,7 @@ - + diff --git a/docs/searchindex.js b/docs/searchindex.js index 5e1111ca..04abead3 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["index", "installation", "quickstart", "reference/analysis/index", "reference/election/ballot", "reference/election/index", "reference/election/instance", "reference/election/libraries", "reference/election/profile", "reference/election/satisfaction", "reference/fractions", "reference/index", "reference/rules/index", "reference/tiebreaking", "reference/utils", "reference/visualisation/index", "usage/fractions", "usage/index", "usage/instances", "usage/libraries", "usage/outcomevisualisation", "usage/profiles", "usage/rules", "usage/satisfaction", "usage/tiebreaking"], "filenames": ["index.rst", "installation.rst", "quickstart.rst", "reference/analysis/index.rst", "reference/election/ballot.rst", "reference/election/index.rst", "reference/election/instance.rst", "reference/election/libraries.rst", "reference/election/profile.rst", "reference/election/satisfaction.rst", "reference/fractions.rst", "reference/index.rst", "reference/rules/index.rst", "reference/tiebreaking.rst", "reference/utils.rst", "reference/visualisation/index.rst", "usage/fractions.rst", "usage/index.rst", "usage/instances.rst", "usage/libraries.rst", "usage/outcomevisualisation.rst", "usage/profiles.rst", "usage/rules.rst", "usage/satisfaction.rst", "usage/tiebreaking.rst"], "titles": ["Pabutools: PB as easy as ABC", "Installation", "Quick Start", "Analysis module", "Ballot module", "Election module", "Instance module", "Preference Libraries", "Profile module", "Satisfaction module", "Fractions", "Reference", "Rules module", "Tie-Breaking", "Utils", "Visualisation Module", "Fractions", "Complete Guide", "Instances", "Preference Libraries", "Outcome Visualisation", "Profiles", "Rules", "Satisfaction Measures", "Tie-Breaking"], "terms": {"For": [0, 2, 3, 4, 8, 16, 17, 19, 20, 21, 22, 23, 24], "pun": 0, "see": [0, 2, 4, 6, 8, 9, 12, 16, 19, 20, 21, 22, 23, 24], "awesom": 0, "The": [0, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "ar": [0, 1, 2, 3, 4, 6, 8, 9, 10, 12, 13, 18, 19, 20, 21, 22, 23, 24], "complet": [0, 4, 8, 12, 22], "set": [0, 2, 3, 4, 6, 8, 9, 12, 13, 18, 20, 21, 22, 23, 24], "tool": [0, 3, 23], "work": [0, 12, 20], "participatori": [0, 2, 3, 6, 7, 12, 18, 19, 21, 22, 23], "budget": [0, 2, 3, 6, 7, 8, 9, 11, 18, 19, 20, 21, 23], "instanc": [0, 3, 4, 5, 7, 8, 9, 11, 12, 13, 15, 17, 19, 20, 21, 22, 23, 24], "i": [0, 2, 3, 4, 6, 8, 9, 10, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "democrat": 0, "us": [0, 2, 3, 4, 6, 7, 8, 9, 10, 12, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24], "alloc": [0, 3, 6, 9, 11, 15, 18, 19, 20, 21], "given": [0, 3, 4, 6, 8, 9, 12, 14, 22, 23], "amount": [0, 3, 4, 6], "monei": [0, 3, 6, 12], "collect": [0, 2, 3, 4, 6, 8, 9, 12, 13, 14, 21, 23], "project": [0, 3, 4, 5, 6, 7, 8, 9, 12, 13, 15, 18, 19, 20, 21, 22, 23, 24], "base": [0, 2, 4, 6, 8, 9, 13, 18, 19, 20, 21, 22], "group": [0, 6, 9, 12], "individu": [0, 9, 23], "prefer": [0, 4, 5, 11, 12, 17, 21, 22], "over": [0, 3, 4, 6, 8, 9, 23], "It": [0, 2, 3, 4, 6, 9, 10, 12, 18, 19, 21, 22], "ha": [0, 4, 6, 8, 9, 12, 21, 22], "been": [0, 2, 4, 6, 8, 9, 12, 21, 22], "invent": 0, "brazil": 0, "late": 0, "80": 0, "": [0, 2, 8, 9, 10, 11, 18, 23], "now": [0, 2], "wide": [0, 23], "implement": [0, 4, 8, 9, 12, 13, 21, 22, 23], "wikipedia": 0, "page": [0, 2, 15, 17, 20, 22], "more": [0, 2, 3, 4, 6, 8, 9, 10, 18, 21, 22, 23], "detail": [0, 3, 7, 8, 9, 12, 15, 20], "In": [0, 4, 6, 8, 9, 12, 16, 19, 21, 23], "thi": [0, 2, 3, 4, 6, 8, 9, 12, 16, 17, 18, 19, 20, 21, 22, 23, 24], "librari": [0, 5, 11, 17, 20, 22], "we": [0, 2, 3, 4, 8, 9, 12, 16, 19, 20, 21, 22, 23, 24], "provid": [0, 2, 8, 9, 10, 12, 13, 16, 19, 20, 21, 22, 23, 24], "handl": [0, 2, 6, 10, 12, 16, 21, 22], "differ": [0, 3, 4, 6, 8, 9, 12, 20, 22], "kind": [0, 3, 6], "togeth": [0, 3, 6, 8, 9], "vote": [0, 2, 3, 6, 18, 20], "rule": [0, 2, 3, 8, 11, 13, 15, 17, 20, 21, 23, 24], "determin": [0, 19], "outcom": [0, 3, 12, 15, 17, 21, 22, 23], "elect": [0, 3, 4, 6, 7, 8, 11, 12, 15, 18, 19, 20, 21, 22, 23, 24], "some": [0, 4, 8, 12, 21, 22], "analyt": [0, 3, 12, 20, 22], "particular": [0, 23], "full": [0, 19, 22], "support": [0, 3, 8, 9, 12, 13, 19, 22], "taken": [0, 8, 14, 23], "from": [0, 1, 2, 3, 4, 6, 8, 9, 10, 12, 13, 14, 16, 18, 19, 20, 21, 22, 23, 24], "pabulib": [0, 7, 21], "refer": [0, 16, 17, 18, 19, 20, 21, 22, 24], "when": [0, 3, 6, 10, 12, 13, 19, 21, 22], "come": 0, "data": [0, 3, 19, 21], "sinc": [1, 2, 4, 9, 18, 21, 22], "pabutool": [1, 2, 7, 8, 12, 13, 16, 17, 18, 19, 20, 21, 22, 23, 24], "host": [1, 19, 21], "pypi": 1, "should": [1, 3, 4, 6, 8, 9, 12, 16, 21, 22], "easi": 1, "pip3": 1, "you": [1, 2, 12, 19, 21], "can": [1, 2, 3, 4, 6, 8, 9, 10, 12, 13, 18, 19, 21, 22, 23], "also": [1, 3, 4, 6, 8, 9, 12, 18, 19, 21, 22, 23], "directli": [1, 12, 14, 21, 22, 23], "download": 1, "sourc": [1, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "our": [1, 19, 21, 23], "github": 1, "repositori": 1, "seem": 1, "easier": 1, "have": [2, 4, 6, 8, 9, 12, 21, 22, 23], "instal": 2, "packag": [2, 14, 19, 22, 23], "On": 2, "guid": [2, 16], "through": [2, 4, 9, 18, 21, 22], "simpl": [2, 4], "exampl": [2, 8, 9, 18, 19, 23], "let": 2, "begin": 2, "need": [2, 8, 9, 12, 13, 19], "encod": 2, "least": [2, 3, 4, 8, 9, 23], "limit": [2, 3, 6, 8, 12, 18, 22], "voter": [2, 3, 4, 6, 8, 9, 12, 19, 21, 22, 23], "fundament": [2, 21], "element": [2, 4, 6, 8, 9, 14, 18], "e": [2, 4, 6, 8, 9, 13, 16, 21, 22, 23], "entiti": [2, 4, 6], "upon": [2, 6], "defin": [2, 3, 4, 6, 7, 8, 9, 10, 12, 16, 18, 21, 22, 23, 24], "them": [2, 8, 9, 13, 23], "class": [2, 3, 4, 6, 7, 8, 9, 12, 13, 15, 18, 19, 20, 21, 22, 23, 24], "import": [2, 4, 8, 9, 16, 18, 19, 20, 21, 22, 23, 24], "p1": [2, 18, 21, 23, 24], "1": [2, 3, 8, 9, 12, 16, 18, 21, 22, 23, 24], "constructor": [2, 8, 18, 21, 23], "take": [2, 4, 9, 13, 23], "name": [2, 4, 6, 7, 9, 13, 18], "cost": [2, 3, 6, 8, 9, 12, 13, 18, 19, 22, 23], "p2": [2, 18, 21, 24], "p3": [2, 18, 21], "3": [2, 8, 9, 16, 18, 21], "next": [2, 22, 23], "which": [2, 3, 4, 8, 9, 10, 12, 13, 18, 20, 21, 22, 23], "along": [2, 18, 21], "addit": [2, 3, 4, 6, 8, 9, 11, 18, 19, 20, 21], "inform": [2, 3, 4, 6, 12, 18, 20, 22], "about": [2, 6, 12, 20, 22, 23], "store": [2, 4, 6, 8, 9, 12, 18, 19, 20, 21, 22], "all": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 16, 18, 19, 20, 21, 22, 23, 24], "regard": [2, 22], "except": [2, 4, 6, 8, 13], "what": [2, 21], "concern": [2, 4], "instanti": [2, 10, 21, 24], "deriv": [2, 4, 8], "python": [2, 4, 6, 8, 9, 16, 18, 21, 23], "one": [2, 3, 4, 6, 7, 8, 9, 12, 20, 22, 23], "There": [2, 22], "mani": [2, 4, 8, 9], "option": [2, 3, 4, 6, 8, 9, 12, 13, 15, 18, 20], "paramet": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 18, 21, 22, 23], "add": [2, 8, 9, 18, 21], "method": [2, 4, 8, 9, 11, 18, 21, 23], "popul": [2, 12, 19, 22, 23], "updat": [2, 4, 6, 8, 9, 20], "budget_limit": [2, 6, 18, 22, 24], "importantli": [2, 6, 9, 21], "ani": [2, 3, 9, 12, 18, 21, 22, 23], "comparison": [2, 3, 12, 18, 22], "between": [2, 3, 6, 13, 18, 20, 22, 24], "two": [2, 3, 4, 6, 8, 9, 10, 15, 18, 20, 22, 23, 24], "g": 2, "equal": [2, 8, 9, 11, 18, 23], "ad": [2, 6, 8, 12, 18, 22], "p": [2, 18, 21, 22, 23, 24], "anoth": [2, 4, 6, 8, 9, 18, 22, 23], "result": [2, 3, 15, 18, 20], "singl": [2, 9, 12, 13, 18, 24], "essenti": [2, 4], "compon": [2, 21], "A": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 18, 21, 23], "gather": [2, 23], "assum": [2, 12, 14], "submit": [2, 4, 6, 19, 21, 23], "approv": [2, 3, 4, 7, 8, 9, 12, 13, 19, 23], "thei": [2, 3, 4, 8, 9, 12, 21, 22], "approvalballot": [2, 4, 5, 8, 21, 22, 24], "follow": [2, 4, 8, 9, 12, 16, 19, 21, 22], "b1": [2, 21], "initi": [2, 3, 6, 8, 9, 12, 22, 23], "b2": [2, 21], "b3": [2, 21], "inherit": [2, 4, 8, 9, 12, 18, 21, 22, 23], "approvalprofil": [2, 5, 7, 8, 19, 21, 22, 24], "append": [2, 4, 8, 9, 21, 23], "list": [2, 3, 8, 9, 12, 13, 15, 21, 22, 23, 24], "readi": [2, 23], "win": [2, 3], "purpos": [2, 4, 8, 12, 21, 22], "modul": [2, 10, 11, 16, 18, 20, 21, 22, 24], "want": 2, "standard": [2, 3, 4, 7, 19, 22], "greedi": [2, 11, 15], "commonli": 2, "citi": 2, "around": 2, "world": 2, "cost_sat": [2, 5, 9, 20, 22, 23], "greedy_utilitarian_welfar": [2, 12, 20, 22], "sat_class": [2, 3, 8, 9, 12, 20, 22, 23], "approxim": [2, 9, 12], "utilitarian": [2, 11], "welfar": [2, 3, 11, 15], "satisfact": [2, 3, 5, 8, 11, 12, 17, 22], "measur": [2, 3, 8, 9, 12, 17, 21, 22], "discuss": [2, 23], "yet": [2, 4], "keep": 2, "mind": 2, "wai": [2, 9, 16, 20, 22, 23, 24], "assess": 2, "qualiti": 2, "total": [2, 3, 6, 8, 9, 12, 19, 23], "select": [2, 3, 4, 6, 9, 12, 13, 20, 22, 23], "appear": [2, 3, 8, 9], "check": [2, 8], "out": [2, 8, 9], "other": [2, 3, 4, 6, 8, 20, 21, 22], "phragm\u00e9n": [2, 11], "sequenti": [2, 11], "share": [2, 11, 23], "sequential_phragmen": [2, 12, 22], "method_of_equal_shar": [2, 12, 20, 22], "outcome1": 2, "outcome2": 2, "return": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 18, 21, 22, 23, 24], "budgetalloc": [2, 3, 12, 22], "object": [2, 3, 4, 6, 8, 9, 12, 13, 22], "behav": [2, 4, 18, 22], "similarli": [2, 21, 22], "visualis": [2, 11, 17, 22], "explan": [2, 12, 17, 22], "contain": [3, 4, 6, 7, 8, 9, 14, 19, 20, 21], "analys": [3, 12], "avg_project_cost": [3, 11], "int": [3, 4, 6, 8, 9, 12, 13, 14, 23], "float": [3, 4, 6, 8, 9, 10, 12, 13, 14, 16], "mpq": [3, 4, 6, 8, 9, 12, 13, 14], "averag": [3, 21], "type": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 21], "numer": [3, 4, 6, 8, 9, 10, 11, 12, 13, 14], "funding_scarc": [3, 11], "ratio": 3, "divid": [3, 9, 12, 23], "call": [3, 4, 8, 12, 15, 20], "fund": 3, "scarciti": 3, "median_project_cost": [3, 11], "median": 3, "std_dev_project_cost": [3, 11], "deviat": 3, "sum_project_cost": [3, 11], "avg_approval_scor": [3, 11], "profil": [3, 5, 6, 7, 9, 11, 12, 13, 15, 17, 19, 20, 22, 23, 24], "abstractapprovalprofil": [3, 5, 7, 8, 12], "score": [3, 4, 8, 9, 13, 19, 21, 23], "avg_ballot_cost": [3, 11], "abstractprofil": [3, 5, 7, 8, 9, 12, 13, 15], "ballot": [3, 5, 6, 7, 8, 9, 11, 12, 19, 21, 22, 23], "avg_ballot_length": [3, 11], "length": [3, 8, 9, 19], "avg_total_scor": [3, 11], "abstractcardinalprofil": [3, 5, 7, 8], "assign": [3, 4, 6, 8, 9, 19, 21], "median_approval_scor": [3, 11], "median_ballot_cost": [3, 11], "median_ballot_length": [3, 11], "median_total_scor": [3, 11], "voter_flow_matrix": [3, 11], "dict": [3, 4, 6, 7, 8, 9, 12, 18, 19, 21], "str": [3, 4, 6, 7, 9, 10, 15, 18, 22], "flow": 3, "matrix": 3, "2d": 3, "dictionari": [3, 4, 6, 8, 9, 12, 21], "where": [3, 12, 13, 15, 20, 21, 23], "voter_flow": 3, "b": [3, 8, 9, 18, 21], "number": [3, 6, 8, 9, 10, 12, 13, 14, 19, 21, 22, 23], "who": [3, 8, 9], "votes_count_by_project": [3, 11], "each": [3, 4, 8, 9, 12, 20, 21, 22, 23], "avg_satisfact": [3, 11], "budget_alloc": [3, 6, 18], "satisfactionmeasur": [3, 5, 8, 9, 12, 23], "comput": [3, 8, 9, 10, 12, 14, 21, 22, 23], "iter": [3, 4, 6, 8, 9, 12, 13, 14, 18, 22], "do": [3, 9, 12, 16, 21, 22], "gini_coefficient_of_satisfact": [3, 11], "invert": 3, "bool": [3, 6, 8, 12, 15], "fals": [3, 6, 8, 9, 12, 15, 18, 22], "gini": [3, 14], "coeffici": [3, 14], "true": [3, 6, 8, 12, 18, 20, 21, 22], "minu": [3, 8, 9], "default": [3, 4, 6, 7, 8, 9, 10, 12, 13, 15, 16, 21, 22], "percent_non_empty_hand": [3, 11], "percentag": 3, "mostli": 3, "make": [3, 12, 16], "sens": 3, "though": [3, 6], "oper": [3, 9], "non": [3, 4, 8, 12, 22], "empti": [3, 8, 9, 12], "hand": 3, "percent_positive_satisfact": [3, 11], "enjoi": 3, "posit": [3, 4, 9], "thu": [3, 4, 8, 9, 12, 21], "zero": [3, 8, 9], "function": [3, 8, 9, 10, 12, 13, 14, 16, 19, 20, 22, 24], "social": [3, 12, 22], "inheret": [3, 12], "satisfaction_histogram": [3, 11], "max_satisfact": 3, "num_bin": 3, "21": 3, "necessari": [3, 7, 8, 12], "plot": [3, 21], "histogram": 3, "bin": 3, "whose": [3, 8], "correspond": [3, 4, 6, 7, 8, 9, 12, 19, 21, 23], "normalis": [3, 9], "20": 3, "valu": [3, 4, 6, 8, 9, 10, 12, 13, 14, 16, 23], "per": [3, 8, 9, 12, 23], "category_proportion": [3, 11], "categori": [3, 4, 6, 8], "exist": 3, "specif": [3, 8, 9, 12, 20, 21, 22, 23], "an": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 16, 18, 19, 21, 22, 23], "error": [3, 6, 10, 13, 16], "rais": [3, 4, 6, 8, 9, 10, 13, 21], "specifi": [3, 7, 8, 9, 20], "dedic": 3, "power": 3, "2": [3, 8, 9, 12, 16, 21, 22, 24], "global": 3, "consid": [3, 4, 6, 8, 9, 12], "exponenti": 3, "proportion": 3, "projectloss": [3, 11], "supporters_budget": 3, "budget_lost": 3, "repres": [3, 4, 6, 7, 8, 9, 10, 12, 21, 23], "how": [3, 6, 12, 17, 20, 22, 23], "much": [3, 12, 22], "lost": 3, "due": 3, "being": [3, 8, 12], "pick": [3, 12], "extend": [3, 8, 9], "itself": [3, 4, 6, 8, 9], "calcul": [3, 12], "wa": [3, 12, 22], "describ": [3, 4, 7, 8, 10, 19], "spent": 3, "prior": 3, "consider": [3, 9], "total_budget_lost": 3, "calculate_effective_support": [3, 11], "was_pick": 3, "mes_param": 3, "none": [3, 4, 6, 7, 8, 9, 12, 13, 15, 22], "effect": [3, 12, 20], "me": [3, 11, 15, 20], "metric": 3, "allow": [3, 4, 8, 9, 12, 21], "receiv": [3, 8, 12], "minim": 3, "requir": [3, 4, 18, 21], "must": [3, 19, 20], "part": [3, 6, 9], "whether": [3, 8, 15], "considerd": 3, "winner": 3, "pass": [3, 4, 6, 8, 9, 12, 21, 22, 23], "keyword": [3, 4, 6, 8, 12], "argument": [3, 4, 6, 8, 9, 12, 14, 22, 23, 24], "final_budget": 3, "abov": [3, 6, 9, 21, 23, 24], "final": 3, "replac": [3, 8, 9], "simul": 3, "exhaust": [3, 6, 11], "pair": [3, 8, 9], "calculate_project_loss": [3, 11], "allocation_detail": 3, "allocationdetail": [3, 12], "verbos": [3, 12, 15], "de": [3, 12], "activ": [3, 8, 12, 21, 22], "displai": [3, 12], "format": [4, 7, 8, 9, 19, 21], "form": [4, 6, 8], "just": 4, "indic": [4, 6, 8, 12, 21], "complex": 4, "cardin": [4, 7, 8, 9, 19, 22, 23], "introduc": [4, 8, 9, 10, 12, 23], "abstract": [4, 8, 9, 21], "abstractballot": [4, 5, 8, 9], "gener": [4, 6, 8, 9, 12, 14, 15, 16, 20, 21, 22], "first": [4, 8, 9, 12, 13, 14, 21, 22], "These": [4, 6, 8, 12, 20, 24], "cardinalballot": [4, 5, 8, 21], "cumulativeballot": [4, 5, 8, 21], "ordinalballot": [4, 5, 8, 21], "second": [4, 8, 14, 20, 21, 22], "so": [4, 8, 9, 16, 18, 22], "frozen": [4, 8, 21], "exactli": [4, 6, 9], "regular": 4, "mutabl": [4, 8], "hashabl": [4, 8], "u": 4, "kei": [4, 6, 8, 9, 13, 21], "multiprofil": [4, 5, 8, 9, 23], "frozenapprovalballot": [4, 5, 8, 21], "frozencardinalballot": [4, 5, 8, 21], "frozencumulativeballot": [4, 5, 8, 21], "frozenordinalballot": [4, 5, 8, 21], "abstractapprovalballot": [4, 5, 8, 9], "abstractcardinalballot": [4, 5, 8, 9], "abstractcumulativeballot": [4, 5], "abstractordinalballot": [4, 5, 9], "meta": [4, 6, 18, 19], "abc": [4, 8, 9], "hint": 4, "identifi": [4, 6], "typic": [4, 6, 8, 12, 22, 23], "string": [4, 6, 7, 10, 16, 19], "could": [4, 6, 12], "gender": 4, "locat": 4, "etc": [4, 18, 21], "frozenballot": [4, 5, 8, 21], "its": [4, 8, 9, 14, 21, 23], "init": [4, 6, 8, 9, 12], "subclass": [4, 6, 8], "initialis": [4, 7, 8, 9], "case": [4, 6, 8, 9, 21], "attribut": [4, 6, 8, 9, 21], "copi": [4, 6, 8, 9], "arg": [4, 6, 8, 9, 10], "shallow": [4, 6, 8, 9], "new": [4, 6, 8, 9], "difference_upd": [4, 6], "remov": [4, 6, 8, 9, 18], "intersect": [4, 6], "both": [4, 6, 8, 9, 21], "intersection_upd": [4, 6], "symmetric_differ": [4, 6], "symmetr": [4, 6], "symmetric_difference_upd": [4, 6], "union": [4, 6, 14], "either": [4, 6, 8, 9, 10, 12, 22], "get_random_approval_ballot": [4, 5], "randomappballot": 4, "random": [4, 6, 8], "probabl": [4, 8], "0": [4, 6, 8, 9, 12, 21, 22, 23, 24], "5": [4, 8, 9, 21, 22], "randomli": [4, 6, 8], "tupl": [4, 7, 8, 9, 14], "express": 4, "simpli": [4, 8, 9, 12, 13, 16], "map": [4, 7, 9, 19, 23], "default_scor": [4, 8], "d": [4, 8, 9], "overrid": [4, 12], "set_item": 4, "ensur": [4, 8, 9, 20, 21], "cumul": [4, 8], "distribut": [4, 21], "point": [4, 19, 21, 22], "special": [4, 8, 13], "ordin": [4, 7, 8, 9, 19, 23], "order": [4, 8, 9, 13, 24], "accord": [4, 7, 8, 9, 12, 13], "technic": 4, "reason": 4, "convent": 4, "present": [4, 8, 9, 22, 23], "most": [4, 8, 9, 12, 22, 23], "If": [4, 6, 8, 9, 10, 12, 14, 19, 22, 23], "alreadi": [4, 9, 22, 23], "doe": [4, 6, 8, 9, 12, 22], "chang": [4, 16], "at_index": 4, "index": [4, 8, 9, 23], "valueerror": [4, 8, 9], "invalid": 4, "loop": 4, "until": [4, 12, 22], "find": [4, 6, 22], "found": [4, 6, 8, 9, 12], "get_random_inst": [5, 6], "max_budget_allocation_cardin": [5, 6], "max_budget_allocation_cost": [5, 6], "total_cost": [5, 6], "approvalmultiprofil": [5, 8, 21], "get_random_approval_profil": [5, 8], "get_all_approval_profil": [5, 8], "cardinalprofil": [5, 7, 8, 19, 21], "cardinalmultiprofil": [5, 8, 21], "abstractcumulativeprofil": [5, 8], "cumulativeprofil": [5, 8, 19, 21], "cumulativemultiprofil": [5, 8, 21], "abstractordinalprofil": [5, 7, 8], "ordinalprofil": [5, 7, 8, 19, 21], "ordinalmultiprofil": [5, 8, 21], "groupsatisfactionmeasur": [5, 8, 9, 12], "satisfactionmultiprofil": [5, 9, 23], "satisfactionprofil": [5, 9, 23], "functionalsatisfact": [5, 9, 23], "cc_sat": [5, 9, 23], "cost_sqrt_sat": [5, 9, 23], "cost_log_sat": [5, 9, 23], "additivesatisfact": [5, 9, 23], "cardinality_sat": [5, 9, 22, 23], "relative_cardinality_sat": [5, 9, 23], "relative_cost_sat": [5, 9, 23], "relative_cost_approx_normaliser_sat": [5, 9, 23], "additive_cost_sqrt_sat": [5, 9], "additive_cost_log_sat": [5, 9], "effort_sat": [5, 9, 23], "additive_cardinal_sat": [5, 9, 23], "additive_cardinal_relative_sat": [5, 9], "positionalsatisfact": [5, 9, 23], "additive_borda_sat": [5, 9, 23], "parse_pabulib": [5, 7, 19, 20, 23], "write_pabulib": [5, 7, 19], "election_as_pabulib_str": [5, 7, 19], "init_preflib_inst": [5, 7], "approval_to_preflib": [5, 7, 19], "cardinal_to_preflib": [5, 7, 19], "ordinal_to_preflib": [5, 7, 19], "basic": 6, "here": [6, 8, 9, 18, 21, 22], "target": 6, "file_path": [6, 7], "file_nam": [6, 7], "parsing_error": 6, "project_meta": [6, 18, 19], "note": [6, 8, 9, 12, 20, 21, 22], "constitut": 6, "maximum": [6, 8, 9, 12, 19], "feasibl": [6, 9, 12, 18, 22, 23], "urban": 6, "greeneri": 6, "public": [6, 7], "transport": 6, "citizen": 6, "60": 6, "year": 6, "old": 6, "resid": 6, "district": 6, "pars": [6, 7, 19], "file": [6, 7, 19, 20], "path": [6, 7, 15, 19, 20], "boolean": [6, 8, 12, 21, 22], "were": [6, 12, 19, 20], "encount": 6, "relev": 6, "get_project": 6, "project_nam": 6, "otherwis": [6, 8, 9, 12, 23], "keyerror": [6, 8, 9], "is_exhaust": [6, 18], "available_project": 6, "test": [6, 8, 18, 21], "said": 6, "without": [6, 20], "violat": [6, 12], "onli": [6, 8, 9, 12, 13, 19, 20, 22], "is_feas": [6, 18], "mean": [6, 8, 14], "exce": [6, 8], "less": 6, "than": [6, 10, 21, 23], "is_trivi": [6, 8], "trivial": [6, 8], "exceed": [6, 9, 12], "uniqu": [6, 8, 9], "enforc": 6, "member": [6, 14, 19, 22], "num_project": 6, "min_cost": 6, "max_cost": 6, "integ": [6, 12, 16, 22], "uniformli": 6, "sampl": 6, "uniform": 6, "minimum": [6, 8, 19], "round": [6, 12, 15, 20], "up": [6, 8, 9, 12, 18, 21, 22], "closest": 6, "chosen": [6, 20], "respect": [6, 8, 20, 24], "subset": [6, 8, 9, 14, 23], "sum": [6, 8, 9, 12, 23], "correct": 7, "depend": [7, 12, 23], "metadata": [7, 8, 18, 19], "write": [7, 19], "http": 7, "arxiv": 7, "org": 7, "pdf": 7, "2305": 7, "11035": 7, "output": [7, 8, 9, 22], "creat": [7, 8, 9, 21, 23], "preflib_inst": [7, 19], "preflibinst": 7, "modification_typ": 7, "relates_to": 7, "related_fil": 7, "titl": 7, "descript": 7, "publication_d": 7, "modification_d": 7, "alternative_nam": 7, "preflib": 7, "preflibtool": 7, "modif": 7, "document": [7, 14], "relat": [7, 8, 19], "date": 7, "last": [7, 8, 9], "altern": 7, "origin": [7, 22], "categoricalinst": 7, "convert": [7, 8, 9, 10, 12, 19, 22, 23], "py": [7, 8], "ordinalinst": 7, "structur": 8, "veri": 8, "similar": [8, 22], "Then": [8, 22], "usual": 8, "those": 8, "multipl": [8, 9, 14, 21], "appli": [8, 9, 12, 13, 22], "ballot_valid": [8, 21], "ballot_typ": [8, 21], "meant": [8, 9], "valid": [8, 12, 21], "befor": [8, 9, 21], "against": 8, "as_sat_profil": [8, 22], "interchang": [8, 21], "inquir": 8, "num_ballot": 8, "validate_ballot": [8, 21], "throw": 8, "typeerror": [8, 21], "item": [8, 9], "end": [8, 9, 12], "as_multiprofil": [8, 21, 22], "insert": [8, 9], "regardless": [8, 9], "input": [8, 9, 13, 23], "even": [8, 9], "save": [8, 9, 12, 15, 20], "counter": [8, 9, 21], "multiset": [8, 21, 23], "force_freez": 8, "beforehand": 8, "count": [8, 9, 20], "legal_min_length": [8, 19], "legal_max_length": [8, 19], "legal_min_cost": [8, 19], "legal_max_cost": [8, 19], "approval_scor": [8, 21], "approved_project": 8, "is_party_list": [8, 21], "parti": [8, 21], "disjoint": 8, "clear": [8, 9], "occurr": [8, 9], "start": [8, 9, 12, 17], "stop": [8, 9, 12], "9223372036854775807": [8, 9], "pop": [8, 9], "indexerror": [8, 9], "rang": [8, 9, 19, 21, 22, 23], "revers": [8, 9], "IN": [8, 9], "place": [8, 9], "sort": [8, 9, 13], "ascend": [8, 9], "modifi": [8, 9], "stabl": [8, 9], "maintain": [8, 9], "onc": [8, 9, 21, 23], "descend": [8, 9], "flag": [8, 9, 20], "repeat": [8, 9, 22], "time": [8, 9, 12], "c": [8, 9], "abcabc": [8, 9], "knuth": [8, 9], "prime": [8, 9], "factor": [8, 9], "1836": [8, 9], "17": [8, 9], "math": [8, 9], "prime_factor": [8, 9], "prod": [8, 9], "neg": [8, 9], "ignor": [8, 9], "classmethod": [8, 9], "fromkei": [8, 9], "v": [8, 9], "get": [8, 9, 21, 22], "els": [8, 9, 23], "like": [8, 9], "view": [8, 9], "most_common": [8, 9], "n": [8, 9], "common": [8, 9], "abracadabra": [8, 9], "r": [8, 9], "k": [8, 9], "popitem": [8, 9], "lifo": [8, 9], "setdefault": [8, 9], "subtract": [8, 9], "kwd": [8, 9], "instead": [8, 9, 21], "reduc": [8, 9], "below": [8, 9, 23], "witch": [8, 9], "watch": [8, 9], "h": [8, 9], "w": [8, 9], "four": [8, 9], "4": [8, 9, 16, 21, 22], "num_ag": 8, "agent": [8, 12], "possibl": [8, 12, 19], "legal_min_scor": [8, 19], "legal_max_scor": [8, 19], "total_scor": 8, "param": 8, "fraction": [8, 9, 11, 14, 17, 22], "legal_min_total_scor": [8, 19], "legal_max_total_scor": [8, 19], "across": 8, "forzenordinalballot": 8, "larg": 9, "thing": 9, "As": [9, 12, 21, 22, 23], "three": 9, "chamberlin": [9, 23], "courant": [9, 23], "rel": 9, "approx": 9, "squar": [9, 23], "root": [9, 23], "log": [9, 21, 23], "effort": 9, "borda": [9, 23], "alwai": 9, "link": [9, 20], "hase": 9, "compar": 9, "sole": [9, 12], "sat": [9, 23], "intern": 9, "sat_project": 9, "remove_satisfi": 9, "sat_bound": 9, "exclud": [9, 22], "satisfi": 9, "met": 9, "bound": [9, 12], "noth": 9, "care": 9, "total_satisfact": 9, "total_satisfaction_project": 9, "inner_sat_class": 9, "extract": 9, "well": [9, 21], "potenti": [9, 18], "rare": 9, "deepcopi": 9, "extend_from_multiprofil": 9, "extend_from_profil": 9, "func": [9, 13], "callabl": [9, 12, 13], "via": [9, 12, 22], "actual": [9, 21], "under": [9, 22], "plu": [9, 12], "To": [9, 16, 21, 22, 23], "speed": [9, 21, 22], "precomput": 9, "precomputed_valu": [9, 23], "preprocess": 9, "get_project_sat": 9, "after": [9, 12, 20], "avoid": 9, "re": 9, "proj": 9, "largest": [9, 12, 22, 23], "previou": [9, 22, 23], "denomin": 9, "expens": [9, 23], "exact": 9, "version": [9, 12, 22], "long": [9, 21], "includ": [9, 12, 18, 19, 20], "highest": [9, 12, 13], "achiev": [9, 22], "positional_func": 9, "aggregation_func": 9, "That": 9, "aggreg": [9, 23], "frac": [10, 11, 16, 22], "constant": [10, 12, 16], "One": 10, "str_as_frac": [10, 11, 16], "float_frac": [10, 11], "gmpy2": [10, 16], "gmpy_frac": [10, 11], "gumpy2": [10, 14], "maximis": 11, "composit": 11, "analysi": [11, 15, 21], "mesvisualis": [11, 15, 20], "greedywelfarevisualis": [11, 15, 20], "tie": [11, 12, 17, 22], "break": [11, 12, 17, 22], "tiebreakingexcept": [11, 13], "tiebreakingrul": [11, 12, 13, 24], "app_score_tie_break": [11, 13, 22, 24], "lexico_tie_break": [11, 13, 24], "max_cost_tie_break": [11, 13, 24], "min_cost_tie_break": [11, 13, 24], "refuse_tie_break": [11, 13], "util": [11, 20, 23], "docenum": [11, 14], "gini_coeffici": [11, 14], "mean_gener": [11, 14], "powerset": [11, 14], "known": [12, 19, 22], "max_additive_utilitarian_welfar": [12, 22], "mai": [12, 16], "notabl": [12, 18], "combin": [12, 22], "completion_by_rule_combin": [12, 22], "increas": [12, 20, 22], "exhaustion_by_budget_increas": [12, 22], "sever": [12, 18, 19, 21, 23, 24], "variou": [12, 23], "run": [12, 22], "parent": 12, "sat_profil": [12, 22, 23], "is_sat_addit": [12, 22], "tie_break": [12, 22], "resolut": [12, 22], "initial_budget_alloc": [12, 22], "scheme": 12, "lead": [12, 16], "would": [12, 21, 22], "constraint": [12, 19, 22], "skip": 12, "satisf": 12, "disregard": 12, "former": 12, "latter": 12, "deduct": 12, "lexicograph": [12, 13], "obtain": [12, 22], "irresolut": [12, 22], "ti": [12, 13, 22, 24], "greedywelfareallocationdetail": [12, 15, 22], "enum": [12, 14], "maxaddutilwelfarealgo": [12, 22], "algorithm": [12, 16], "ilp_solv": [12, 22], "linear": [12, 22], "program": [12, 22], "ilp": [12, 22], "solver": [12, 22], "primal_du": 12, "state": 12, "art": 12, "primal": [12, 22], "dual": [12, 22], "knapsack": [12, 22], "problem": [12, 22], "inner_algo": [12, 22], "maxim": [12, 22], "satisfactin": 12, "approach": [12, 22], "cannot": 12, "while": 12, "inner": 12, "avail": [12, 20], "choic": 12, "initial_load": 12, "virtual": 12, "currenc": 12, "continu": 12, "soon": [12, 22], "asa": 12, "enough": 12, "bui": 12, "bought": 12, "load": 12, "By": [12, 16, 21, 22], "voter_budget_incr": [12, 22], "binary_sat": 12, "skipped_project": 12, "websit": [12, 19, 22], "equalshar": [12, 22], "net": [12, 22], "variant": 12, "unit": 12, "longer": 12, "binari": 12, "gain": [12, 21], "runtim": [12, 20, 21, 22], "automat": [12, 22], "mesproject": 12, "shouldn": 12, "t": 12, "access": 12, "perform": [12, 22], "mesallocationdetail": [12, 15, 22], "voter_multipl": 12, "crucial": 12, "reconstruct": 12, "whole": [12, 20], "corrospond": 12, "mes_inner_algo": 12, "progress": 12, "dure": 12, "mesiter": 12, "voters_budget": 12, "voters_budget_after_select": 12, "selected_project": 12, "consist": [12, 15, 20, 21, 22], "cover": 12, "rule_sequ": 12, "rule_param": [12, 22], "sequenc": [12, 14, 22], "reach": 12, "separ": 12, "exhaustive_stop": 12, "budget_step": [12, 22], "budget_bound": 12, "retriev": 12, "infeas": 12, "procedur": 12, "interest": 12, "disabl": 12, "condit": 12, "leav": 12, "step": 12, "upper": 12, "multipli": 12, "popularity_comparison": [12, 22], "ones": [12, 23], "yield": [12, 19], "social_welfare_comparison": [12, 22], "occur": 13, "among": [13, 21], "broken": [13, 22], "lambda": 13, "x": 13, "unti": [13, 24], "tiebreak": [13, 22, 24], "wher": 13, "favour": 13, "lowest": 13, "enumer": 14, "stack": 14, "overflow": 14, "vector": 14, "alia": 14, "explain": [15, 20], "mes_detail": 15, "summari": [15, 20], "html": [15, 20], "round_analysi": [15, 20], "print": [15, 18], "consol": 15, "render": [15, 20, 22], "output_folder_path": 15, "greedy_detail": 15, "consit": 15, "folder": 15, "customiz": 16, "Not": 16, "undesir": 16, "behavior": 16, "fraction_from_int": 16, "6": 16, "fraction_from_str": 16, "offer": [17, 22, 23], "comprehens": 17, "simpler": 17, "tutori": 17, "quick": 17, "pleas": [18, 21], "encapsul": 18, "central": 18, "augment": 18, "accept": [18, 22], "invok": 18, "conform": 19, "appropri": 19, "path_to_the_fil": [19, 23], "extens": 19, "hous": 19, "subject": 19, "impos": 19, "pb": [19, 20], "content": 19, "str_represent": 19, "categor": 19, "app_profil": 19, "card_profil": 19, "ord_profil": 19, "depth": 20, "reject": 20, "statist": 20, "chart": 20, "zingchart": 20, "googl": 20, "develop": 20, "howev": 20, "remain": 20, "same": 20, "current": 20, "greedywelfar": 20, "path_to_election_fil": 20, "path_to_output_fil": 20, "standalon": 20, "give": 20, "impact": 20, "captur": 20, "essenc": 20, "filenam": 20, "directori": 20, "correctli": 20, "serv": 21, "primarili": 21, "act": 21, "associ": 21, "deactiv": 21, "10": [21, 22], "8": [21, 22], "membership": 21, "ask": 21, "becom": 21, "p0": [21, 24], "p4": 21, "rank": 21, "unic": 21, "faster": [21, 22], "counterpart": 21, "immut": 21, "represent": 21, "easili": 21, "app_ballot": 21, "freez": 21, "frozen_ballot": 21, "turn": 21, "show": 21, "7": 21, "multiprofile_runtim": 21, "profile_runtim": 21, "max": 21, "insight": 21, "scale": 21, "celebr": 22, "aim": 22, "Or": 22, "irresolute_outcom": 22, "forc": 22, "mip": 22, "solv": 22, "previous": 22, "becaus": 22, "control": 22, "solut": 22, "primari": 22, "context": 22, "sai": 22, "highli": 22, "recommend": 22, "decid": 22, "reli": 22, "significantli": 22, "idea": 22, "propos": 22, "scientif": 22, "literatur": 22, "fix": [22, 23], "section": 22, "optim": 22, "budget_allocation_mes_complet": 22, "hope": 22, "suitabl": 22, "budget_allocation_mes_iter": 22, "100": [22, 23], "someth": 22, "rememb": 22, "compos": 22, "wieliczka": 22, "\u015bwiec": 22, "simplifi": [22, 23], "def": [22, 23], "mes_ful": 22, "popular": 22, "storag": 22, "concept": 23, "proxi": 23, "deduc": 23, "rather": 23, "flexibl": 23, "custom": 23, "Such": 23, "addition": 23, "facilit": 23, "manag": 23, "workflow": 23, "involv": 23, "mysatisfact": 23, "self": 23, "len": 23, "process": 23, "conveni": 23, "size": 23, "resembl": 23, "normal": 23, "demonstr": 23, "illustr": 23, "cc_sat_func": 23, "__init__": 23, "super": 23, "Its": 23, "pre": 23, "done": 23, "cardinality_sat_func": 23, "borda_sat_func": 23, "mainli": 24, "seen": 24}, "objects": {"pabutools": [[3, 0, 0, "-", "analysis"], [5, 0, 0, "-", "election"], [10, 0, 0, "-", "fractions"], [12, 0, 0, "-", "rules"], [13, 0, 0, "-", "tiebreaking"], [14, 0, 0, "-", "utils"], [15, 0, 0, "-", "visualisation"]], "pabutools.analysis": [[3, 0, 0, "-", "category"], [3, 0, 0, "-", "instanceproperties"], [3, 0, 0, "-", "mesanalytics"], [3, 0, 0, "-", "profileproperties"], [3, 0, 0, "-", "votersatisfaction"]], "pabutools.analysis.category": [[3, 1, 1, "", "category_proportionality"]], "pabutools.analysis.instanceproperties": [[3, 1, 1, "", "avg_project_cost"], [3, 1, 1, "", "funding_scarcity"], [3, 1, 1, "", "median_project_cost"], [3, 1, 1, "", "std_dev_project_cost"], [3, 1, 1, "", "sum_project_cost"]], "pabutools.analysis.mesanalytics": [[3, 2, 1, "", "ProjectLoss"], [3, 1, 1, "", "calculate_effective_support"], [3, 1, 1, "", "calculate_effective_supports"], [3, 1, 1, "", "calculate_project_loss"]], "pabutools.analysis.mesanalytics.ProjectLoss": [[3, 3, 1, "", "budget_lost"], [3, 3, 1, "", "supporters_budget"], [3, 4, 1, "", "total_budget_lost"]], "pabutools.analysis.profileproperties": [[3, 1, 1, "", "avg_approval_score"], [3, 1, 1, "", "avg_ballot_cost"], [3, 1, 1, "", "avg_ballot_length"], [3, 1, 1, "", "avg_total_score"], [3, 1, 1, "", "median_approval_score"], [3, 1, 1, "", "median_ballot_cost"], [3, 1, 1, "", "median_ballot_length"], [3, 1, 1, "", "median_total_score"], [3, 1, 1, "", "voter_flow_matrix"], [3, 1, 1, "", "votes_count_by_project"]], "pabutools.analysis.votersatisfaction": [[3, 1, 1, "", "avg_satisfaction"], [3, 1, 1, "", "gini_coefficient_of_satisfaction"], [3, 1, 1, "", "percent_non_empty_handed"], [3, 1, 1, "", "percent_positive_satisfaction"], [3, 1, 1, "", "satisfaction_histogram"]], "pabutools.election": [[4, 0, 0, "-", "ballot"], [6, 0, 0, "-", "instance"], [8, 0, 0, "-", "profile"], [9, 0, 0, "-", "satisfaction"]], "pabutools.election.ballot.approvalballot": [[4, 2, 1, "", "AbstractApprovalBallot"], [4, 2, 1, "", "ApprovalBallot"], [4, 2, 1, "", "FrozenApprovalBallot"], [4, 1, 1, "", "get_random_approval_ballot"]], "pabutools.election.ballot.approvalballot.ApprovalBallot": [[4, 4, 1, "", "copy"], [4, 4, 1, "", "difference"], [4, 4, 1, "", "difference_update"], [4, 4, 1, "", "frozen"], [4, 4, 1, "", "intersection"], [4, 4, 1, "", "intersection_update"], [4, 3, 1, "", "meta"], [4, 3, 1, "", "name"], [4, 4, 1, "", "symmetric_difference"], [4, 4, 1, "", "symmetric_difference_update"], [4, 4, 1, "", "union"]], "pabutools.election.ballot.approvalballot.FrozenApprovalBallot": [[4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.ballot": [[4, 2, 1, "", "AbstractBallot"], [4, 2, 1, "", "Ballot"], [4, 2, 1, "", "FrozenBallot"]], "pabutools.election.ballot.ballot.AbstractBallot": [[4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.ballot.Ballot": [[4, 4, 1, "", "frozen"], [4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.ballot.FrozenBallot": [[4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.cardinalballot": [[4, 2, 1, "", "AbstractCardinalBallot"], [4, 2, 1, "", "CardinalBallot"], [4, 2, 1, "", "FrozenCardinalBallot"]], "pabutools.election.ballot.cardinalballot.CardinalBallot": [[4, 4, 1, "", "complete"], [4, 4, 1, "", "copy"], [4, 4, 1, "", "frozen"], [4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.cardinalballot.FrozenCardinalBallot": [[4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.cumulativeballot": [[4, 2, 1, "", "AbstractCumulativeBallot"], [4, 2, 1, "", "CumulativeBallot"], [4, 2, 1, "", "FrozenCumulativeBallot"]], "pabutools.election.ballot.cumulativeballot.CumulativeBallot": [[4, 4, 1, "", "copy"], [4, 4, 1, "", "frozen"], [4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.cumulativeballot.FrozenCumulativeBallot": [[4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.ordinalballot": [[4, 2, 1, "", "AbstractOrdinalBallot"], [4, 2, 1, "", "FrozenOrdinalBallot"], [4, 2, 1, "", "OrdinalBallot"]], "pabutools.election.ballot.ordinalballot.AbstractOrdinalBallot": [[4, 4, 1, "", "position"]], "pabutools.election.ballot.ordinalballot.FrozenOrdinalBallot": [[4, 3, 1, "", "meta"], [4, 3, 1, "", "name"], [4, 4, 1, "", "position"]], "pabutools.election.ballot.ordinalballot.OrdinalBallot": [[4, 4, 1, "", "append"], [4, 4, 1, "", "at_index"], [4, 4, 1, "", "copy"], [4, 4, 1, "", "frozen"], [4, 4, 1, "", "index"], [4, 3, 1, "", "meta"], [4, 3, 1, "", "name"], [4, 4, 1, "", "position"]], "pabutools.election.instance": [[6, 2, 1, "", "Instance"], [6, 2, 1, "", "Project"], [6, 1, 1, "", "get_random_instance"], [6, 1, 1, "", "max_budget_allocation_cardinality"], [6, 1, 1, "", "max_budget_allocation_cost"], [6, 1, 1, "", "total_cost"]], "pabutools.election.instance.Instance": [[6, 4, 1, "", "budget_allocations"], [6, 3, 1, "", "budget_limit"], [6, 3, 1, "", "categories"], [6, 4, 1, "", "copy"], [6, 4, 1, "", "difference"], [6, 4, 1, "", "difference_update"], [6, 3, 1, "", "file_name"], [6, 3, 1, "", "file_path"], [6, 4, 1, "", "get_project"], [6, 4, 1, "", "intersection"], [6, 4, 1, "", "intersection_update"], [6, 4, 1, "", "is_exhaustive"], [6, 4, 1, "", "is_feasible"], [6, 4, 1, "", "is_trivial"], [6, 3, 1, "", "meta"], [6, 3, 1, "", "parsing_errors"], [6, 3, 1, "", "project_meta"], [6, 4, 1, "", "symmetric_difference"], [6, 4, 1, "", "symmetric_difference_update"], [6, 3, 1, "", "targets"], [6, 4, 1, "", "union"]], "pabutools.election.instance.Project": [[6, 3, 1, "", "categories"], [6, 3, 1, "", "cost"], [6, 3, 1, "", "name"], [6, 3, 1, "", "targets"]], "pabutools.election.pabulib": [[7, 1, 1, "", "election_as_pabulib_string"], [7, 1, 1, "", "parse_pabulib"], [7, 1, 1, "", "write_pabulib"]], "pabutools.election.preflib": [[7, 1, 1, "", "approval_to_preflib"], [7, 1, 1, "", "cardinal_to_preflib"], [7, 1, 1, "", "init_preflib_instance"], [7, 1, 1, "", "ordinal_to_preflib"]], "pabutools.election.profile.approvalprofile": [[8, 2, 1, "", "AbstractApprovalProfile"], [8, 2, 1, "", "ApprovalMultiProfile"], [8, 2, 1, "", "ApprovalProfile"], [8, 1, 1, "", "get_all_approval_profiles"], [8, 1, 1, "", "get_random_approval_profile"]], "pabutools.election.profile.approvalprofile.AbstractApprovalProfile": [[8, 4, 1, "", "approval_score"], [8, 4, 1, "", "approved_projects"], [8, 4, 1, "", "is_party_list"], [8, 4, 1, "", "is_trivial"], [8, 3, 1, "", "legal_max_cost"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_min_cost"], [8, 3, 1, "", "legal_min_length"]], "pabutools.election.profile.approvalprofile.ApprovalMultiProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "approval_score"], [8, 4, 1, "", "approved_projects"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "elements"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "fromkeys"], [8, 4, 1, "", "get"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "is_party_list"], [8, 4, 1, "", "is_trivial"], [8, 4, 1, "", "items"], [8, 4, 1, "", "keys"], [8, 3, 1, "", "legal_max_cost"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_min_cost"], [8, 3, 1, "", "legal_min_length"], [8, 4, 1, "", "most_common"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "popitem"], [8, 4, 1, "", "setdefault"], [8, 4, 1, "", "subtract"], [8, 4, 1, "", "total"], [8, 4, 1, "", "update"], [8, 4, 1, "", "validate_ballot"], [8, 4, 1, "", "values"]], "pabutools.election.profile.approvalprofile.ApprovalProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "approval_score"], [8, 4, 1, "", "approved_projects"], [8, 4, 1, "", "as_multiprofile"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "count"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "index"], [8, 4, 1, "", "insert"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "is_party_list"], [8, 4, 1, "", "is_trivial"], [8, 3, 1, "", "legal_max_cost"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_min_cost"], [8, 3, 1, "", "legal_min_length"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "remove"], [8, 4, 1, "", "reverse"], [8, 4, 1, "", "sort"], [8, 4, 1, "", "validate_ballot"]], "pabutools.election.profile.cardinalprofile": [[8, 2, 1, "", "AbstractCardinalProfile"], [8, 2, 1, "", "CardinalMultiProfile"], [8, 2, 1, "", "CardinalProfile"]], "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile": [[8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_max_score"], [8, 3, 1, "", "legal_min_length"], [8, 3, 1, "", "legal_min_score"], [8, 4, 1, "", "total_score"]], "pabutools.election.profile.cardinalprofile.CardinalMultiProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "elements"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "fromkeys"], [8, 4, 1, "", "get"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "items"], [8, 4, 1, "", "keys"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_max_score"], [8, 3, 1, "", "legal_min_length"], [8, 3, 1, "", "legal_min_score"], [8, 4, 1, "", "most_common"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "popitem"], [8, 4, 1, "", "score"], [8, 4, 1, "", "setdefault"], [8, 4, 1, "", "subtract"], [8, 4, 1, "", "total"], [8, 4, 1, "", "total_score"], [8, 4, 1, "", "update"], [8, 4, 1, "", "validate_ballot"], [8, 4, 1, "", "values"]], "pabutools.election.profile.cardinalprofile.CardinalProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_multiprofile"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "complete"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "count"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "index"], [8, 4, 1, "", "insert"], [8, 3, 1, "", "instance"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_max_score"], [8, 3, 1, "", "legal_min_length"], [8, 3, 1, "", "legal_min_score"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "remove"], [8, 4, 1, "", "reverse"], [8, 4, 1, "", "sort"], [8, 4, 1, "", "total_score"], [8, 4, 1, "", "validate_ballot"]], "pabutools.election.profile.cumulativeprofile": [[8, 2, 1, "", "AbstractCumulativeProfile"], [8, 2, 1, "", "CumulativeMultiProfile"], [8, 2, 1, "", "CumulativeProfile"]], "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile": [[8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_max_score"], [8, 3, 1, "", "legal_max_total_score"], [8, 3, 1, "", "legal_min_length"], [8, 3, 1, "", "legal_min_score"], [8, 3, 1, "", "legal_min_total_score"]], "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "elements"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "fromkeys"], [8, 4, 1, "", "get"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "items"], [8, 4, 1, "", "keys"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_max_score"], [8, 3, 1, "", "legal_max_total_score"], [8, 3, 1, "", "legal_min_length"], [8, 3, 1, "", "legal_min_score"], [8, 3, 1, "", "legal_min_total_score"], [8, 4, 1, "", "most_common"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "popitem"], [8, 4, 1, "", "score"], [8, 4, 1, "", "setdefault"], [8, 4, 1, "", "subtract"], [8, 4, 1, "", "total"], [8, 4, 1, "", "total_score"], [8, 4, 1, "", "update"], [8, 4, 1, "", "validate_ballot"], [8, 4, 1, "", "values"]], "pabutools.election.profile.cumulativeprofile.CumulativeProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_multiprofile"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "complete"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "count"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "index"], [8, 4, 1, "", "insert"], [8, 3, 1, "", "instance"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_max_score"], [8, 3, 1, "", "legal_max_total_score"], [8, 3, 1, "", "legal_min_length"], [8, 3, 1, "", "legal_min_score"], [8, 3, 1, "", "legal_min_total_score"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "remove"], [8, 4, 1, "", "reverse"], [8, 4, 1, "", "sort"], [8, 4, 1, "", "total_score"], [8, 4, 1, "", "validate_ballot"]], "pabutools.election.profile.ordinalprofile": [[8, 2, 1, "", "AbstractOrdinalProfile"], [8, 2, 1, "", "OrdinalMultiProfile"], [8, 2, 1, "", "OrdinalProfile"]], "pabutools.election.profile.ordinalprofile.AbstractOrdinalProfile": [[8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_min_length"]], "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "elements"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "fromkeys"], [8, 4, 1, "", "get"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "items"], [8, 4, 1, "", "keys"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_min_length"], [8, 4, 1, "", "most_common"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "popitem"], [8, 4, 1, "", "setdefault"], [8, 4, 1, "", "subtract"], [8, 4, 1, "", "total"], [8, 4, 1, "", "update"], [8, 4, 1, "", "validate_ballot"], [8, 4, 1, "", "values"]], "pabutools.election.profile.ordinalprofile.OrdinalProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_multiprofile"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "count"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "index"], [8, 4, 1, "", "insert"], [8, 3, 1, "", "instance"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_min_length"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "remove"], [8, 4, 1, "", "reverse"], [8, 4, 1, "", "sort"], [8, 4, 1, "", "validate_ballot"]], "pabutools.election.profile.profile": [[8, 2, 1, "", "AbstractProfile"], [8, 2, 1, "", "MultiProfile"], [8, 2, 1, "", "Profile"]], "pabutools.election.profile.profile.AbstractProfile": [[8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "validate_ballot"]], "pabutools.election.profile.profile.MultiProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "extend"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "total"]], "pabutools.election.profile.profile.Profile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_multiprofile"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "insert"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"]], "pabutools.election.satisfaction.additivesatisfaction": [[9, 2, 1, "", "AdditiveSatisfaction"], [9, 2, 1, "", "Additive_Cardinal_Relative_Sat"], [9, 2, 1, "", "Additive_Cardinal_Sat"], [9, 2, 1, "", "Additive_Cost_Log_Sat"], [9, 2, 1, "", "Additive_Cost_Sqrt_Sat"], [9, 2, 1, "", "Cardinality_Sat"], [9, 2, 1, "", "Cost_Sat"], [9, 2, 1, "", "Effort_Sat"], [9, 2, 1, "", "Relative_Cardinality_Sat"], [9, 2, 1, "", "Relative_Cost_Approx_Normaliser_Sat"], [9, 2, 1, "", "Relative_Cost_Sat"]], "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction": [[9, 3, 1, "", "ballot"], [9, 3, 1, "", "func"], [9, 4, 1, "", "get_project_sat"], [9, 3, 1, "", "instance"], [9, 3, 1, "", "precomputed_values"], [9, 4, 1, "", "preprocessing"], [9, 3, 1, "", "profile"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Relative_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Log_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Sqrt_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Cardinality_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Cost_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Effort_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Relative_Cardinality_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Approx_Normaliser_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.functionalsatisfaction": [[9, 2, 1, "", "CC_Sat"], [9, 2, 1, "", "Cost_Log_Sat"], [9, 2, 1, "", "Cost_Sqrt_Sat"], [9, 2, 1, "", "FunctionalSatisfaction"]], "pabutools.election.satisfaction.functionalsatisfaction.CC_Sat": [[9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.functionalsatisfaction.Cost_Log_Sat": [[9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.functionalsatisfaction.Cost_Sqrt_Sat": [[9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction": [[9, 3, 1, "", "ballot"], [9, 3, 1, "", "func"], [9, 3, 1, "", "instance"], [9, 3, 1, "", "profile"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.positionalsatisfaction": [[9, 2, 1, "", "Additive_Borda_Sat"], [9, 2, 1, "", "PositionalSatisfaction"]], "pabutools.election.satisfaction.positionalsatisfaction.Additive_Borda_Sat": [[9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction": [[9, 3, 1, "", "aggregation_func"], [9, 3, 1, "", "ballot"], [9, 3, 1, "", "instance"], [9, 3, 1, "", "positional_func"], [9, 3, 1, "", "profile"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.satisfactionmeasure": [[9, 2, 1, "", "GroupSatisfactionMeasure"], [9, 2, 1, "", "SatisfactionMeasure"]], "pabutools.election.satisfaction.satisfactionmeasure.GroupSatisfactionMeasure": [[9, 4, 1, "", "multiplicity"], [9, 4, 1, "", "remove_satisfied"], [9, 4, 1, "", "total_satisfaction"], [9, 4, 1, "", "total_satisfaction_project"]], "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure": [[9, 3, 1, "", "ballot"], [9, 3, 1, "", "instance"], [9, 3, 1, "", "profile"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.satisfactionprofile": [[9, 2, 1, "", "SatisfactionMultiProfile"], [9, 2, 1, "", "SatisfactionProfile"]], "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile": [[9, 4, 1, "", "append"], [9, 4, 1, "", "clear"], [9, 4, 1, "", "copy"], [9, 4, 1, "", "elements"], [9, 4, 1, "", "extend_from_multiprofile"], [9, 4, 1, "", "extend_from_profile"], [9, 4, 1, "", "fromkeys"], [9, 4, 1, "", "get"], [9, 3, 1, "", "instance"], [9, 4, 1, "", "items"], [9, 4, 1, "", "keys"], [9, 4, 1, "", "most_common"], [9, 4, 1, "", "multiplicity"], [9, 4, 1, "", "pop"], [9, 4, 1, "", "popitem"], [9, 4, 1, "", "remove_satisfied"], [9, 3, 1, "", "sat_class"], [9, 4, 1, "", "setdefault"], [9, 4, 1, "", "subtract"], [9, 4, 1, "", "total"], [9, 4, 1, "", "total_satisfaction"], [9, 4, 1, "", "total_satisfaction_project"], [9, 4, 1, "", "update"], [9, 4, 1, "", "values"]], "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile": [[9, 4, 1, "", "append"], [9, 4, 1, "", "clear"], [9, 4, 1, "", "copy"], [9, 4, 1, "", "count"], [9, 4, 1, "", "extend"], [9, 4, 1, "", "extend_from_profile"], [9, 4, 1, "", "index"], [9, 4, 1, "", "insert"], [9, 3, 1, "", "instance"], [9, 4, 1, "", "multiplicity"], [9, 4, 1, "", "pop"], [9, 4, 1, "", "remove"], [9, 4, 1, "", "remove_satisfied"], [9, 4, 1, "", "reverse"], [9, 3, 1, "", "sat_class"], [9, 4, 1, "", "sort"], [9, 4, 1, "", "total_satisfaction"], [9, 4, 1, "", "total_satisfaction_project"]], "pabutools.fractions": [[10, 5, 1, "", "FLOAT_FRAC"], [10, 5, 1, "", "FRACTION"], [10, 5, 1, "", "GMPY_FRAC"], [10, 1, 1, "", "frac"], [10, 1, 1, "", "str_as_frac"]], "pabutools.rules.budgetallocation": [[12, 2, 1, "", "AllocationDetails"], [12, 2, 1, "", "BudgetAllocation"]], "pabutools.rules.budgetallocation.BudgetAllocation": [[12, 3, 1, "", "details"]], "pabutools.rules.composition": [[12, 1, 1, "", "popularity_comparison"], [12, 1, 1, "", "social_welfare_comparison"]], "pabutools.rules.exhaustion": [[12, 1, 1, "", "completion_by_rule_combination"], [12, 1, 1, "", "exhaustion_by_budget_increase"]], "pabutools.rules.greedywelfare": [[12, 2, 1, "", "GreedyWelfareAllocationDetails"], [12, 1, 1, "", "greedy_utilitarian_welfare"]], "pabutools.rules.maxwelfare": [[12, 6, 1, "", "MaxAddUtilWelfareAlgo"], [12, 1, 1, "", "max_additive_utilitarian_welfare"]], "pabutools.rules.maxwelfare.MaxAddUtilWelfareAlgo": [[12, 3, 1, "", "ILP_SOLVER"], [12, 3, 1, "", "PRIMAL_DUAL"]], "pabutools.rules.mes": [[12, 2, 1, "", "MESAllocationDetails"], [12, 2, 1, "", "MESIteration"], [12, 1, 1, "", "method_of_equal_shares"]], "pabutools.rules.mes.MESAllocationDetails": [[12, 3, 1, "", "iterations"]], "pabutools.rules.mes.MESIteration": [[12, 3, 1, "", "selected_project"], [12, 3, 1, "", "voters_budget"], [12, 3, 1, "", "voters_budget_after_selection"]], "pabutools.rules.phragmen": [[12, 1, 1, "", "sequential_phragmen"]], "pabutools.tiebreaking": [[13, 7, 1, "", "TieBreakingException"], [13, 2, 1, "", "TieBreakingRule"], [13, 5, 1, "", "app_score_tie_breaking"], [13, 5, 1, "", "lexico_tie_breaking"], [13, 5, 1, "", "max_cost_tie_breaking"], [13, 5, 1, "", "min_cost_tie_breaking"], [13, 5, 1, "", "refuse_tie_breaking"]], "pabutools.tiebreaking.TieBreakingRule": [[13, 3, 1, "", "func"], [13, 4, 1, "", "order"], [13, 4, 1, "", "untie"]], "pabutools.utils": [[14, 6, 1, "", "DocEnum"], [14, 5, 1, "", "Numeric"], [14, 1, 1, "", "gini_coefficient"], [14, 1, 1, "", "mean_generator"], [14, 1, 1, "", "powerset"]], "pabutools.visualisation": [[15, 2, 1, "", "GreedyWelfareVisualiser"], [15, 2, 1, "", "MESVisualiser"], [15, 2, 1, "", "Visualiser"]], "pabutools.visualisation.GreedyWelfareVisualiser": [[15, 4, 1, "", "render"]], "pabutools.visualisation.MESVisualiser": [[15, 4, 1, "", "render"]]}, "objtypes": {"0": "py:module", "1": "py:function", "2": "py:class", "3": "py:attribute", "4": "py:method", "5": "py:data", "6": "py:enum", "7": "py:exception"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "function", "Python function"], "2": ["py", "class", "Python class"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "method", "Python method"], "5": ["py", "data", "Python data"], "6": ["py", "enum", "Python enum"], "7": ["py", "exception", "Python exception"]}, "titleterms": {"pabutool": 0, "pb": 0, "easi": 0, "abc": 0, "instal": 1, "quick": 2, "start": 2, "describ": 2, "an": 2, "elect": [2, 5], "project": 2, "instanc": [2, 6, 18], "ballot": [2, 4], "profil": [2, 8, 21], "comput": 2, "outcom": [2, 20], "analysi": 3, "modul": [3, 4, 5, 6, 8, 9, 12, 15], "prefer": [7, 19], "librari": [7, 19], "satisfact": [9, 23], "fraction": [10, 16], "refer": 11, "rule": [12, 22], "budget": [12, 22], "alloc": [12, 22], "greedi": [12, 20, 22], "utilitarian": [12, 20, 22], "addit": [12, 22, 23], "welfar": [12, 20, 22], "maximis": [12, 22], "sequenti": [12, 22], "phragm\u00e9n": [12, 22], "": [12, 22], "method": [12, 20, 22], "equal": [12, 20, 22], "share": [12, 20, 22], "me": [12, 22], "exhaust": [12, 22], "composit": [12, 22], "tie": [13, 24], "break": [13, 24], "util": 14, "visualis": [15, 20], "complet": 17, "guid": 17, "pabulib": 19, "preflib": 19, "approv": 21, "cardin": 21, "cumul": 21, "ordin": 21, "multiprofil": 21, "approxim": 22, "detail": 22, "measur": 23, "default": 23, "function": 23, "posit": 23}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"Pabutools: PB as easy as ABC": [[0, "pabutools-pb-as-easy-as-abc"]], "Installation": [[1, "installation"]], "Quick Start": [[2, "quick-start"]], "Describing an Election": [[2, "describing-an-election"]], "Projects and Instances": [[2, "projects-and-instances"]], "Ballots and Profiles": [[2, "ballots-and-profiles"]], "Computing the Outcome of an Election": [[2, "computing-the-outcome-of-an-election"]], "Analysis module": [[3, "module-pabutools.analysis"]], "Ballot module": [[4, "module-pabutools.election.ballot"]], "Election module": [[5, "election-module"]], "Instance module": [[6, "module-pabutools.election.instance"]], "Preference Libraries": [[7, "preference-libraries"], [19, "preference-libraries"]], "Profile module": [[8, "module-pabutools.election.profile"]], "Satisfaction module": [[9, "module-pabutools.election.satisfaction"]], "Fractions": [[10, "module-pabutools.fractions"], [16, "fractions"]], "Reference": [[11, "reference"]], "Rules module": [[12, "module-pabutools.rules"]], "Budget Allocation": [[12, "budget-allocation"], [22, "budget-allocation"]], "Greedy Utilitarian Rule": [[12, "greedy-utilitarian-rule"]], "Additive Utilitarian Welfare Maximiser": [[12, "additive-utilitarian-welfare-maximiser"], [22, "additive-utilitarian-welfare-maximiser"]], "Sequential Phragm\u00e9n\u2019s Rule": [[12, "sequential-phragmen-s-rule"], [22, "sequential-phragmen-s-rule"]], "Method of Equal Shares (MES)": [[12, "method-of-equal-shares-mes"], [22, "method-of-equal-shares-mes"]], "Exhaustion Methods": [[12, "exhaustion-methods"], [22, "exhaustion-methods"]], "Rule Composition": [[12, "rule-composition"], [22, "rule-composition"]], "Tie-Breaking": [[13, "module-pabutools.tiebreaking"], [24, "tie-breaking"]], "Utils": [[14, "module-pabutools.utils"]], "Visualisation Module": [[15, "module-pabutools.visualisation"]], "Complete Guide": [[17, "complete-guide"]], "Instances": [[18, "instances"]], "PaBuLib": [[19, "pabulib"]], "PrefLib": [[19, "preflib"]], "Outcome Visualisation": [[20, "outcome-visualisation"]], "Greedy Utilitarian Welfare": [[20, "greedy-utilitarian-welfare"]], "Method of Equal Shares": [[20, "method-of-equal-shares"]], "Profiles": [[21, "profiles"]], "Approval Profiles": [[21, "approval-profiles"]], "Cardinal Profiles": [[21, "cardinal-profiles"]], "Cumulative Profiles": [[21, "cumulative-profiles"]], "Ordinal Profiles": [[21, "ordinal-profiles"]], "Multiprofile": [[21, "multiprofile"]], "Rules": [[22, "rules"]], "Greedy Approximation of the Welfare Maximiser": [[22, "greedy-approximation-of-the-welfare-maximiser"]], "Details for the Budget Allocation Rule": [[22, "details-for-the-budget-allocation-rule"]], "Satisfaction Measures": [[23, "satisfaction-measures"]], "Default Satisfaction Functions": [[23, "default-satisfaction-functions"]], "Functional Satisfaction Functions": [[23, "functional-satisfaction-functions"]], "Additive Satisfaction Functions": [[23, "additive-satisfaction-functions"]], "Positional Satisfaction Functions": [[23, "positional-satisfaction-functions"]]}, "indexentries": {"projectloss (class in pabutools.analysis.mesanalytics)": [[3, "pabutools.analysis.mesanalytics.ProjectLoss"]], "avg_approval_score() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.avg_approval_score"]], "avg_ballot_cost() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.avg_ballot_cost"]], "avg_ballot_length() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.avg_ballot_length"]], "avg_project_cost() (in module pabutools.analysis.instanceproperties)": [[3, "pabutools.analysis.instanceproperties.avg_project_cost"]], "avg_satisfaction() (in module pabutools.analysis.votersatisfaction)": [[3, "pabutools.analysis.votersatisfaction.avg_satisfaction"]], "avg_total_score() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.avg_total_score"]], "budget_lost (projectloss attribute)": [[3, "pabutools.analysis.mesanalytics.ProjectLoss.budget_lost"]], "calculate_effective_support() (in module pabutools.analysis.mesanalytics)": [[3, "pabutools.analysis.mesanalytics.calculate_effective_support"]], "calculate_effective_supports() (in module pabutools.analysis.mesanalytics)": [[3, "pabutools.analysis.mesanalytics.calculate_effective_supports"]], "calculate_project_loss() (in module pabutools.analysis.mesanalytics)": [[3, "pabutools.analysis.mesanalytics.calculate_project_loss"]], "category_proportionality() (in module pabutools.analysis.category)": [[3, "pabutools.analysis.category.category_proportionality"]], "funding_scarcity() (in module pabutools.analysis.instanceproperties)": [[3, "pabutools.analysis.instanceproperties.funding_scarcity"]], "gini_coefficient_of_satisfaction() (in module pabutools.analysis.votersatisfaction)": [[3, "pabutools.analysis.votersatisfaction.gini_coefficient_of_satisfaction"]], "median_approval_score() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.median_approval_score"]], "median_ballot_cost() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.median_ballot_cost"]], "median_ballot_length() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.median_ballot_length"]], "median_project_cost() (in module pabutools.analysis.instanceproperties)": [[3, "pabutools.analysis.instanceproperties.median_project_cost"]], "median_total_score() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.median_total_score"]], "module": [[3, "module-pabutools.analysis"], [3, "module-pabutools.analysis.category"], [3, "module-pabutools.analysis.instanceproperties"], [3, "module-pabutools.analysis.mesanalytics"], [3, "module-pabutools.analysis.profileproperties"], [3, "module-pabutools.analysis.votersatisfaction"], [4, "module-pabutools.election.ballot"], [5, "module-pabutools.election"], [6, "module-pabutools.election.instance"], [8, "module-pabutools.election.profile"], [9, "module-pabutools.election.satisfaction"], [10, "module-pabutools.fractions"], [12, "module-pabutools.rules"], [13, "module-pabutools.tiebreaking"], [14, "module-pabutools.utils"], [15, "module-pabutools.visualisation"]], "pabutools.analysis": [[3, "module-pabutools.analysis"]], "pabutools.analysis.category": [[3, "module-pabutools.analysis.category"]], "pabutools.analysis.instanceproperties": [[3, "module-pabutools.analysis.instanceproperties"]], "pabutools.analysis.mesanalytics": [[3, "module-pabutools.analysis.mesanalytics"]], "pabutools.analysis.profileproperties": [[3, "module-pabutools.analysis.profileproperties"]], "pabutools.analysis.votersatisfaction": [[3, "module-pabutools.analysis.votersatisfaction"]], "percent_non_empty_handed() (in module pabutools.analysis.votersatisfaction)": [[3, "pabutools.analysis.votersatisfaction.percent_non_empty_handed"]], "percent_positive_satisfaction() (in module pabutools.analysis.votersatisfaction)": [[3, "pabutools.analysis.votersatisfaction.percent_positive_satisfaction"]], "satisfaction_histogram() (in module pabutools.analysis.votersatisfaction)": [[3, "pabutools.analysis.votersatisfaction.satisfaction_histogram"]], "std_dev_project_cost() (in module pabutools.analysis.instanceproperties)": [[3, "pabutools.analysis.instanceproperties.std_dev_project_cost"]], "sum_project_cost() (in module pabutools.analysis.instanceproperties)": [[3, "pabutools.analysis.instanceproperties.sum_project_cost"]], "supporters_budget (projectloss attribute)": [[3, "pabutools.analysis.mesanalytics.ProjectLoss.supporters_budget"]], "total_budget_lost() (projectloss method)": [[3, "pabutools.analysis.mesanalytics.ProjectLoss.total_budget_lost"]], "voter_flow_matrix() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.voter_flow_matrix"]], "votes_count_by_project() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.votes_count_by_project"]], "abstractapprovalballot (class in pabutools.election.ballot.approvalballot)": [[4, "pabutools.election.ballot.approvalballot.AbstractApprovalBallot"]], "abstractballot (class in pabutools.election.ballot.ballot)": [[4, "pabutools.election.ballot.ballot.AbstractBallot"]], "abstractcardinalballot (class in pabutools.election.ballot.cardinalballot)": [[4, "pabutools.election.ballot.cardinalballot.AbstractCardinalBallot"]], "abstractcumulativeballot (class in pabutools.election.ballot.cumulativeballot)": [[4, "pabutools.election.ballot.cumulativeballot.AbstractCumulativeBallot"]], "abstractordinalballot (class in pabutools.election.ballot.ordinalballot)": [[4, "pabutools.election.ballot.ordinalballot.AbstractOrdinalBallot"]], "approvalballot (class in pabutools.election.ballot.approvalballot)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot"]], "ballot (class in pabutools.election.ballot.ballot)": [[4, "pabutools.election.ballot.ballot.Ballot"]], "cardinalballot (class in pabutools.election.ballot.cardinalballot)": [[4, "pabutools.election.ballot.cardinalballot.CardinalBallot"]], "cumulativeballot (class in pabutools.election.ballot.cumulativeballot)": [[4, "pabutools.election.ballot.cumulativeballot.CumulativeBallot"]], "frozenapprovalballot (class in pabutools.election.ballot.approvalballot)": [[4, "pabutools.election.ballot.approvalballot.FrozenApprovalBallot"]], "frozenballot (class in pabutools.election.ballot.ballot)": [[4, "pabutools.election.ballot.ballot.FrozenBallot"]], "frozencardinalballot (class in pabutools.election.ballot.cardinalballot)": [[4, "pabutools.election.ballot.cardinalballot.FrozenCardinalBallot"]], "frozencumulativeballot (class in pabutools.election.ballot.cumulativeballot)": [[4, "pabutools.election.ballot.cumulativeballot.FrozenCumulativeBallot"]], "frozenordinalballot (class in pabutools.election.ballot.ordinalballot)": [[4, "pabutools.election.ballot.ordinalballot.FrozenOrdinalBallot"]], "ordinalballot (class in pabutools.election.ballot.ordinalballot)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot"]], "append() (ordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.append"]], "at_index() (ordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.at_index"]], "complete() (cardinalballot method)": [[4, "pabutools.election.ballot.cardinalballot.CardinalBallot.complete"]], "copy() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.copy"]], "copy() (cardinalballot method)": [[4, "pabutools.election.ballot.cardinalballot.CardinalBallot.copy"]], "copy() (cumulativeballot method)": [[4, "pabutools.election.ballot.cumulativeballot.CumulativeBallot.copy"]], "copy() (ordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.copy"]], "difference() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.difference"]], "difference_update() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.difference_update"]], "frozen() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.frozen"]], "frozen() (ballot method)": [[4, "pabutools.election.ballot.ballot.Ballot.frozen"]], "frozen() (cardinalballot method)": [[4, "pabutools.election.ballot.cardinalballot.CardinalBallot.frozen"]], "frozen() (cumulativeballot method)": [[4, "pabutools.election.ballot.cumulativeballot.CumulativeBallot.frozen"]], "frozen() (ordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.frozen"]], "get_random_approval_ballot() (in module pabutools.election.ballot.approvalballot)": [[4, "pabutools.election.ballot.approvalballot.get_random_approval_ballot"]], "index() (ordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.index"]], "intersection() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.intersection"]], "intersection_update() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.intersection_update"]], "meta (abstractballot attribute)": [[4, "pabutools.election.ballot.ballot.AbstractBallot.meta"]], "meta (approvalballot attribute)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.meta"]], "meta (ballot attribute)": [[4, "pabutools.election.ballot.ballot.Ballot.meta"]], "meta (cardinalballot attribute)": [[4, "pabutools.election.ballot.cardinalballot.CardinalBallot.meta"]], "meta (cumulativeballot attribute)": [[4, "pabutools.election.ballot.cumulativeballot.CumulativeBallot.meta"]], "meta (frozenapprovalballot attribute)": [[4, "pabutools.election.ballot.approvalballot.FrozenApprovalBallot.meta"]], "meta (frozenballot attribute)": [[4, "pabutools.election.ballot.ballot.FrozenBallot.meta"]], "meta (frozencardinalballot attribute)": [[4, "pabutools.election.ballot.cardinalballot.FrozenCardinalBallot.meta"]], "meta (frozencumulativeballot attribute)": [[4, "pabutools.election.ballot.cumulativeballot.FrozenCumulativeBallot.meta"]], "meta (frozenordinalballot attribute)": [[4, "pabutools.election.ballot.ordinalballot.FrozenOrdinalBallot.meta"]], "meta (ordinalballot attribute)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.meta"]], "name (abstractballot attribute)": [[4, "pabutools.election.ballot.ballot.AbstractBallot.name"]], "name (approvalballot attribute)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.name"]], "name (ballot attribute)": [[4, "pabutools.election.ballot.ballot.Ballot.name"]], "name (cardinalballot attribute)": [[4, "pabutools.election.ballot.cardinalballot.CardinalBallot.name"]], "name (cumulativeballot attribute)": [[4, "pabutools.election.ballot.cumulativeballot.CumulativeBallot.name"]], "name (frozenapprovalballot attribute)": [[4, "pabutools.election.ballot.approvalballot.FrozenApprovalBallot.name"]], "name (frozenballot attribute)": [[4, "pabutools.election.ballot.ballot.FrozenBallot.name"]], "name (frozencardinalballot attribute)": [[4, "pabutools.election.ballot.cardinalballot.FrozenCardinalBallot.name"]], "name (frozencumulativeballot attribute)": [[4, "pabutools.election.ballot.cumulativeballot.FrozenCumulativeBallot.name"]], "name (frozenordinalballot attribute)": [[4, "pabutools.election.ballot.ordinalballot.FrozenOrdinalBallot.name"]], "name (ordinalballot attribute)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.name"]], "pabutools.election.ballot": [[4, "module-pabutools.election.ballot"]], "position() (abstractordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.AbstractOrdinalBallot.position"]], "position() (frozenordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.FrozenOrdinalBallot.position"]], "position() (ordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.position"]], "symmetric_difference() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.symmetric_difference"]], "symmetric_difference_update() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.symmetric_difference_update"]], "union() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.union"]], "pabutools.election": [[5, "module-pabutools.election"]], "instance (class in pabutools.election.instance)": [[6, "pabutools.election.instance.Instance"]], "project (class in pabutools.election.instance)": [[6, "pabutools.election.instance.Project"]], "budget_allocations() (instance method)": [[6, "pabutools.election.instance.Instance.budget_allocations"]], "budget_limit (instance attribute)": [[6, "pabutools.election.instance.Instance.budget_limit"]], "categories (instance attribute)": [[6, "pabutools.election.instance.Instance.categories"]], "categories (project attribute)": [[6, "pabutools.election.instance.Project.categories"]], "copy() (instance method)": [[6, "pabutools.election.instance.Instance.copy"]], "cost (project attribute)": [[6, "pabutools.election.instance.Project.cost"]], "difference() (instance method)": [[6, "pabutools.election.instance.Instance.difference"]], "difference_update() (instance method)": [[6, "pabutools.election.instance.Instance.difference_update"]], "file_name (instance attribute)": [[6, "pabutools.election.instance.Instance.file_name"]], "file_path (instance attribute)": [[6, "pabutools.election.instance.Instance.file_path"]], "get_project() (instance method)": [[6, "pabutools.election.instance.Instance.get_project"]], "get_random_instance() (in module pabutools.election.instance)": [[6, "pabutools.election.instance.get_random_instance"]], "intersection() (instance method)": [[6, "pabutools.election.instance.Instance.intersection"]], "intersection_update() (instance method)": [[6, "pabutools.election.instance.Instance.intersection_update"]], "is_exhaustive() (instance method)": [[6, "pabutools.election.instance.Instance.is_exhaustive"]], "is_feasible() (instance method)": [[6, "pabutools.election.instance.Instance.is_feasible"]], "is_trivial() (instance method)": [[6, "pabutools.election.instance.Instance.is_trivial"]], "max_budget_allocation_cardinality() (in module pabutools.election.instance)": [[6, "pabutools.election.instance.max_budget_allocation_cardinality"]], "max_budget_allocation_cost() (in module pabutools.election.instance)": [[6, "pabutools.election.instance.max_budget_allocation_cost"]], "meta (instance attribute)": [[6, "pabutools.election.instance.Instance.meta"]], "name (project attribute)": [[6, "pabutools.election.instance.Project.name"]], "pabutools.election.instance": [[6, "module-pabutools.election.instance"]], "parsing_errors (instance attribute)": [[6, "pabutools.election.instance.Instance.parsing_errors"]], "project_meta (instance attribute)": [[6, "pabutools.election.instance.Instance.project_meta"]], "symmetric_difference() (instance method)": [[6, "pabutools.election.instance.Instance.symmetric_difference"]], "symmetric_difference_update() (instance method)": [[6, "pabutools.election.instance.Instance.symmetric_difference_update"]], "targets (instance attribute)": [[6, "pabutools.election.instance.Instance.targets"]], "targets (project attribute)": [[6, "pabutools.election.instance.Project.targets"]], "total_cost() (in module pabutools.election.instance)": [[6, "pabutools.election.instance.total_cost"]], "union() (instance method)": [[6, "pabutools.election.instance.Instance.union"]], "approval_to_preflib() (in module pabutools.election.preflib)": [[7, "pabutools.election.preflib.approval_to_preflib"]], "cardinal_to_preflib() (in module pabutools.election.preflib)": [[7, "pabutools.election.preflib.cardinal_to_preflib"]], "election_as_pabulib_string() (in module pabutools.election.pabulib)": [[7, "pabutools.election.pabulib.election_as_pabulib_string"]], "init_preflib_instance() (in module pabutools.election.preflib)": [[7, "pabutools.election.preflib.init_preflib_instance"]], "ordinal_to_preflib() (in module pabutools.election.preflib)": [[7, "pabutools.election.preflib.ordinal_to_preflib"]], "parse_pabulib() (in module pabutools.election.pabulib)": [[7, "pabutools.election.pabulib.parse_pabulib"]], "write_pabulib() (in module pabutools.election.pabulib)": [[7, "pabutools.election.pabulib.write_pabulib"]], "abstractapprovalprofile (class in pabutools.election.profile.approvalprofile)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile"]], "abstractcardinalprofile (class in pabutools.election.profile.cardinalprofile)": [[8, "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile"]], "abstractcumulativeprofile (class in pabutools.election.profile.cumulativeprofile)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile"]], "abstractordinalprofile (class in pabutools.election.profile.ordinalprofile)": [[8, "pabutools.election.profile.ordinalprofile.AbstractOrdinalProfile"]], "abstractprofile (class in pabutools.election.profile.profile)": [[8, "pabutools.election.profile.profile.AbstractProfile"]], "approvalmultiprofile (class in pabutools.election.profile.approvalprofile)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile"]], "approvalprofile (class in pabutools.election.profile.approvalprofile)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile"]], "cardinalmultiprofile (class in pabutools.election.profile.cardinalprofile)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile"]], "cardinalprofile (class in pabutools.election.profile.cardinalprofile)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile"]], "cumulativemultiprofile (class in pabutools.election.profile.cumulativeprofile)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile"]], "cumulativeprofile (class in pabutools.election.profile.cumulativeprofile)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile"]], "multiprofile (class in pabutools.election.profile.profile)": [[8, "pabutools.election.profile.profile.MultiProfile"]], "ordinalmultiprofile (class in pabutools.election.profile.ordinalprofile)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile"]], "ordinalprofile (class in pabutools.election.profile.ordinalprofile)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile"]], "profile (class in pabutools.election.profile.profile)": [[8, "pabutools.election.profile.profile.Profile"]], "append() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.append"]], "append() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.append"]], "append() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.append"]], "append() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.append"]], "append() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.append"]], "append() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.append"]], "append() (multiprofile method)": [[8, "pabutools.election.profile.profile.MultiProfile.append"]], "append() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.append"]], "append() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.append"]], "append() (profile method)": [[8, "pabutools.election.profile.profile.Profile.append"]], "approval_score() (abstractapprovalprofile method)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.approval_score"]], "approval_score() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.approval_score"]], "approval_score() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.approval_score"]], "approved_projects() (abstractapprovalprofile method)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.approved_projects"]], "approved_projects() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.approved_projects"]], "approved_projects() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.approved_projects"]], "as_multiprofile() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.as_multiprofile"]], "as_multiprofile() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.as_multiprofile"]], "as_multiprofile() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.as_multiprofile"]], "as_multiprofile() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.as_multiprofile"]], "as_multiprofile() (profile method)": [[8, "pabutools.election.profile.profile.Profile.as_multiprofile"]], "as_sat_profile() (abstractprofile method)": [[8, "pabutools.election.profile.profile.AbstractProfile.as_sat_profile"]], "as_sat_profile() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.as_sat_profile"]], "as_sat_profile() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.as_sat_profile"]], "as_sat_profile() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.as_sat_profile"]], "as_sat_profile() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.as_sat_profile"]], "as_sat_profile() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.as_sat_profile"]], "as_sat_profile() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.as_sat_profile"]], "as_sat_profile() (multiprofile method)": [[8, "pabutools.election.profile.profile.MultiProfile.as_sat_profile"]], "as_sat_profile() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.as_sat_profile"]], "as_sat_profile() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.as_sat_profile"]], "as_sat_profile() (profile method)": [[8, "pabutools.election.profile.profile.Profile.as_sat_profile"]], "ballot_type (abstractprofile attribute)": [[8, "pabutools.election.profile.profile.AbstractProfile.ballot_type"]], "ballot_type (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.ballot_type"]], "ballot_type (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.ballot_type"]], "ballot_type (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.ballot_type"]], "ballot_type (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.ballot_type"]], "ballot_type (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.ballot_type"]], "ballot_type (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.ballot_type"]], "ballot_type (multiprofile attribute)": [[8, "pabutools.election.profile.profile.MultiProfile.ballot_type"]], "ballot_type (ordinalmultiprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.ballot_type"]], "ballot_type (ordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.ballot_type"]], "ballot_type (profile attribute)": [[8, "pabutools.election.profile.profile.Profile.ballot_type"]], "ballot_validation (abstractprofile attribute)": [[8, "pabutools.election.profile.profile.AbstractProfile.ballot_validation"]], "ballot_validation (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.ballot_validation"]], "ballot_validation (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.ballot_validation"]], "ballot_validation (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.ballot_validation"]], "ballot_validation (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.ballot_validation"]], "ballot_validation (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.ballot_validation"]], "ballot_validation (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.ballot_validation"]], "ballot_validation (multiprofile attribute)": [[8, "pabutools.election.profile.profile.MultiProfile.ballot_validation"]], "ballot_validation (ordinalmultiprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.ballot_validation"]], "ballot_validation (ordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.ballot_validation"]], "ballot_validation (profile attribute)": [[8, "pabutools.election.profile.profile.Profile.ballot_validation"]], "clear() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.clear"]], "clear() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.clear"]], "clear() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.clear"]], "clear() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.clear"]], "clear() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.clear"]], "clear() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.clear"]], "clear() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.clear"]], "clear() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.clear"]], "complete() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.complete"]], "complete() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.complete"]], "copy() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.copy"]], "copy() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.copy"]], "copy() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.copy"]], "copy() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.copy"]], "copy() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.copy"]], "copy() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.copy"]], "copy() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.copy"]], "copy() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.copy"]], "count() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.count"]], "count() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.count"]], "count() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.count"]], "count() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.count"]], "elements() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.elements"]], "elements() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.elements"]], "elements() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.elements"]], "elements() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.elements"]], "extend() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.extend"]], "extend() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.extend"]], "extend() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.extend"]], "extend() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.extend"]], "extend() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.extend"]], "extend() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.extend"]], "extend() (multiprofile method)": [[8, "pabutools.election.profile.profile.MultiProfile.extend"]], "extend() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.extend"]], "extend() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.extend"]], "extend() (profile method)": [[8, "pabutools.election.profile.profile.Profile.extend"]], "fromkeys() (approvalmultiprofile class method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.fromkeys"]], "fromkeys() (cardinalmultiprofile class method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.fromkeys"]], "fromkeys() (cumulativemultiprofile class method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.fromkeys"]], "fromkeys() (ordinalmultiprofile class method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.fromkeys"]], "get() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.get"]], "get() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.get"]], "get() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.get"]], "get() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.get"]], "get_all_approval_profiles() (in module pabutools.election.profile.approvalprofile)": [[8, "pabutools.election.profile.approvalprofile.get_all_approval_profiles"]], "get_random_approval_profile() (in module pabutools.election.profile.approvalprofile)": [[8, "pabutools.election.profile.approvalprofile.get_random_approval_profile"]], "index() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.index"]], "index() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.index"]], "index() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.index"]], "index() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.index"]], "insert() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.insert"]], "insert() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.insert"]], "insert() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.insert"]], "insert() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.insert"]], "insert() (profile method)": [[8, "pabutools.election.profile.profile.Profile.insert"]], "instance (abstractprofile attribute)": [[8, "pabutools.election.profile.profile.AbstractProfile.instance"]], "instance (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.instance"]], "instance (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.instance"]], "instance (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.instance"]], "instance (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.instance"]], "instance (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.instance"]], "instance (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.instance"]], "instance (multiprofile attribute)": [[8, "pabutools.election.profile.profile.MultiProfile.instance"]], "instance (ordinalmultiprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.instance"]], "instance (ordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.instance"]], "instance (profile attribute)": [[8, "pabutools.election.profile.profile.Profile.instance"]], "is_party_list() (abstractapprovalprofile method)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.is_party_list"]], "is_party_list() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.is_party_list"]], "is_party_list() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.is_party_list"]], "is_trivial() (abstractapprovalprofile method)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.is_trivial"]], "is_trivial() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.is_trivial"]], "is_trivial() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.is_trivial"]], "items() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.items"]], "items() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.items"]], "items() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.items"]], "items() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.items"]], "keys() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.keys"]], "keys() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.keys"]], "keys() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.keys"]], "keys() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.keys"]], "legal_max_cost (abstractapprovalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.legal_max_cost"]], "legal_max_cost (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.legal_max_cost"]], "legal_max_cost (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.legal_max_cost"]], "legal_max_length (abstractapprovalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.legal_max_length"]], "legal_max_length (abstractcardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile.legal_max_length"]], "legal_max_length (abstractcumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile.legal_max_length"]], "legal_max_length (abstractordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.AbstractOrdinalProfile.legal_max_length"]], "legal_max_length (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.legal_max_length"]], "legal_max_length (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.legal_max_length"]], "legal_max_length (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.legal_max_length"]], "legal_max_length (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.legal_max_length"]], "legal_max_length (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.legal_max_length"]], "legal_max_length (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.legal_max_length"]], "legal_max_length (ordinalmultiprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.legal_max_length"]], "legal_max_length (ordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.legal_max_length"]], "legal_max_score (abstractcardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile.legal_max_score"]], "legal_max_score (abstractcumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile.legal_max_score"]], "legal_max_score (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.legal_max_score"]], "legal_max_score (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.legal_max_score"]], "legal_max_score (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.legal_max_score"]], "legal_max_score (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.legal_max_score"]], "legal_max_total_score (abstractcumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile.legal_max_total_score"]], "legal_max_total_score (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.legal_max_total_score"]], "legal_max_total_score (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.legal_max_total_score"]], "legal_min_cost (abstractapprovalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.legal_min_cost"]], "legal_min_cost (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.legal_min_cost"]], "legal_min_cost (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.legal_min_cost"]], "legal_min_length (abstractapprovalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.legal_min_length"]], "legal_min_length (abstractcardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile.legal_min_length"]], "legal_min_length (abstractcumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile.legal_min_length"]], "legal_min_length (abstractordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.AbstractOrdinalProfile.legal_min_length"]], "legal_min_length (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.legal_min_length"]], "legal_min_length (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.legal_min_length"]], "legal_min_length (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.legal_min_length"]], "legal_min_length (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.legal_min_length"]], "legal_min_length (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.legal_min_length"]], "legal_min_length (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.legal_min_length"]], "legal_min_length (ordinalmultiprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.legal_min_length"]], "legal_min_length (ordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.legal_min_length"]], "legal_min_score (abstractcardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile.legal_min_score"]], "legal_min_score (abstractcumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile.legal_min_score"]], "legal_min_score (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.legal_min_score"]], "legal_min_score (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.legal_min_score"]], "legal_min_score (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.legal_min_score"]], "legal_min_score (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.legal_min_score"]], "legal_min_total_score (abstractcumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile.legal_min_total_score"]], "legal_min_total_score (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.legal_min_total_score"]], "legal_min_total_score (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.legal_min_total_score"]], "most_common() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.most_common"]], "most_common() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.most_common"]], "most_common() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.most_common"]], "most_common() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.most_common"]], "multiplicity() (abstractprofile method)": [[8, "pabutools.election.profile.profile.AbstractProfile.multiplicity"]], "multiplicity() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.multiplicity"]], "multiplicity() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.multiplicity"]], "multiplicity() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.multiplicity"]], "multiplicity() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.multiplicity"]], "multiplicity() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.multiplicity"]], "multiplicity() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.multiplicity"]], "multiplicity() (multiprofile method)": [[8, "pabutools.election.profile.profile.MultiProfile.multiplicity"]], "multiplicity() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.multiplicity"]], "multiplicity() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.multiplicity"]], "multiplicity() (profile method)": [[8, "pabutools.election.profile.profile.Profile.multiplicity"]], "num_ballots() (abstractprofile method)": [[8, "pabutools.election.profile.profile.AbstractProfile.num_ballots"]], "num_ballots() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.num_ballots"]], "num_ballots() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.num_ballots"]], "num_ballots() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.num_ballots"]], "num_ballots() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.num_ballots"]], "num_ballots() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.num_ballots"]], "num_ballots() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.num_ballots"]], "num_ballots() (multiprofile method)": [[8, "pabutools.election.profile.profile.MultiProfile.num_ballots"]], "num_ballots() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.num_ballots"]], "num_ballots() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.num_ballots"]], "num_ballots() (profile method)": [[8, "pabutools.election.profile.profile.Profile.num_ballots"]], "pabutools.election.profile": [[8, "module-pabutools.election.profile"]], "pop() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.pop"]], "pop() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.pop"]], "pop() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.pop"]], "pop() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.pop"]], "pop() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.pop"]], "pop() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.pop"]], "pop() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.pop"]], "pop() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.pop"]], "popitem() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.popitem"]], "popitem() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.popitem"]], "popitem() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.popitem"]], "popitem() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.popitem"]], "remove() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.remove"]], "remove() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.remove"]], "remove() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.remove"]], "remove() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.remove"]], "reverse() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.reverse"]], "reverse() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.reverse"]], "reverse() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.reverse"]], "reverse() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.reverse"]], "score() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.score"]], "score() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.score"]], "setdefault() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.setdefault"]], "setdefault() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.setdefault"]], "setdefault() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.setdefault"]], "setdefault() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.setdefault"]], "sort() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.sort"]], "sort() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.sort"]], "sort() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.sort"]], "sort() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.sort"]], "subtract() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.subtract"]], "subtract() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.subtract"]], "subtract() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.subtract"]], "subtract() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.subtract"]], "total() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.total"]], "total() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.total"]], "total() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.total"]], "total() (multiprofile method)": [[8, "pabutools.election.profile.profile.MultiProfile.total"]], "total() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.total"]], "total_score() (abstractcardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile.total_score"]], "total_score() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.total_score"]], "total_score() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.total_score"]], "total_score() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.total_score"]], "total_score() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.total_score"]], "update() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.update"]], "update() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.update"]], "update() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.update"]], "update() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.update"]], "validate_ballot() (abstractprofile method)": [[8, "pabutools.election.profile.profile.AbstractProfile.validate_ballot"]], "validate_ballot() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.validate_ballot"]], "validate_ballot() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.validate_ballot"]], "validate_ballot() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.validate_ballot"]], "validate_ballot() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.validate_ballot"]], "validate_ballot() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.validate_ballot"]], "validate_ballot() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.validate_ballot"]], "validate_ballot() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.validate_ballot"]], "validate_ballot() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.validate_ballot"]], "values() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.values"]], "values() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.values"]], "values() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.values"]], "values() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.values"]], "additivesatisfaction (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction"]], "additive_borda_sat (class in pabutools.election.satisfaction.positionalsatisfaction)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.Additive_Borda_Sat"]], "additive_cardinal_relative_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Relative_Sat"]], "additive_cardinal_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Sat"]], "additive_cost_log_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Log_Sat"]], "additive_cost_sqrt_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Sqrt_Sat"]], "cc_sat (class in pabutools.election.satisfaction.functionalsatisfaction)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.CC_Sat"]], "cardinality_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cardinality_Sat"]], "cost_log_sat (class in pabutools.election.satisfaction.functionalsatisfaction)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.Cost_Log_Sat"]], "cost_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cost_Sat"]], "cost_sqrt_sat (class in pabutools.election.satisfaction.functionalsatisfaction)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.Cost_Sqrt_Sat"]], "effort_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Effort_Sat"]], "functionalsatisfaction (class in pabutools.election.satisfaction.functionalsatisfaction)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction"]], "groupsatisfactionmeasure (class in pabutools.election.satisfaction.satisfactionmeasure)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.GroupSatisfactionMeasure"]], "positionalsatisfaction (class in pabutools.election.satisfaction.positionalsatisfaction)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction"]], "relative_cardinality_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cardinality_Sat"]], "relative_cost_approx_normaliser_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Approx_Normaliser_Sat"]], "relative_cost_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Sat"]], "satisfactionmeasure (class in pabutools.election.satisfaction.satisfactionmeasure)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure"]], "satisfactionmultiprofile (class in pabutools.election.satisfaction.satisfactionprofile)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile"]], "satisfactionprofile (class in pabutools.election.satisfaction.satisfactionprofile)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile"]], "aggregation_func (positionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.aggregation_func"]], "append() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.append"]], "append() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.append"]], "ballot (additivesatisfaction attribute)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.ballot"]], "ballot (functionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction.ballot"]], "ballot (positionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.ballot"]], "ballot (satisfactionmeasure attribute)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure.ballot"]], "clear() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.clear"]], "clear() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.clear"]], "copy() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.copy"]], "copy() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.copy"]], "count() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.count"]], "elements() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.elements"]], "extend() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.extend"]], "extend_from_multiprofile() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.extend_from_multiprofile"]], "extend_from_profile() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.extend_from_profile"]], "extend_from_profile() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.extend_from_profile"]], "fromkeys() (satisfactionmultiprofile class method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.fromkeys"]], "func (additivesatisfaction attribute)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.func"]], "func (functionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction.func"]], "get() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.get"]], "get_project_sat() (additivesatisfaction method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.get_project_sat"]], "get_project_sat() (additive_cardinal_relative_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Relative_Sat.get_project_sat"]], "get_project_sat() (additive_cardinal_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Sat.get_project_sat"]], "get_project_sat() (additive_cost_log_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Log_Sat.get_project_sat"]], "get_project_sat() (additive_cost_sqrt_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Sqrt_Sat.get_project_sat"]], "get_project_sat() (cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cardinality_Sat.get_project_sat"]], "get_project_sat() (cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cost_Sat.get_project_sat"]], "get_project_sat() (effort_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Effort_Sat.get_project_sat"]], "get_project_sat() (relative_cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cardinality_Sat.get_project_sat"]], "get_project_sat() (relative_cost_approx_normaliser_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Approx_Normaliser_Sat.get_project_sat"]], "get_project_sat() (relative_cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Sat.get_project_sat"]], "index() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.index"]], "insert() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.insert"]], "instance (additivesatisfaction attribute)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.instance"]], "instance (functionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction.instance"]], "instance (positionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.instance"]], "instance (satisfactionmeasure attribute)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure.instance"]], "instance (satisfactionmultiprofile attribute)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.instance"]], "instance (satisfactionprofile attribute)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.instance"]], "items() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.items"]], "keys() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.keys"]], "most_common() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.most_common"]], "multiplicity() (groupsatisfactionmeasure method)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.GroupSatisfactionMeasure.multiplicity"]], "multiplicity() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.multiplicity"]], "multiplicity() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.multiplicity"]], "pabutools.election.satisfaction": [[9, "module-pabutools.election.satisfaction"]], "pop() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.pop"]], "pop() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.pop"]], "popitem() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.popitem"]], "positional_func (positionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.positional_func"]], "precomputed_values (additivesatisfaction attribute)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.precomputed_values"]], "preprocessing() (additivesatisfaction method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.preprocessing"]], "preprocessing() (additive_cardinal_relative_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Relative_Sat.preprocessing"]], "preprocessing() (additive_cardinal_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Sat.preprocessing"]], "preprocessing() (additive_cost_log_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Log_Sat.preprocessing"]], "preprocessing() (additive_cost_sqrt_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Sqrt_Sat.preprocessing"]], "preprocessing() (cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cardinality_Sat.preprocessing"]], "preprocessing() (cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cost_Sat.preprocessing"]], "preprocessing() (effort_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Effort_Sat.preprocessing"]], "preprocessing() (relative_cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cardinality_Sat.preprocessing"]], "preprocessing() (relative_cost_approx_normaliser_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Approx_Normaliser_Sat.preprocessing"]], "preprocessing() (relative_cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Sat.preprocessing"]], "profile (additivesatisfaction attribute)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.profile"]], "profile (functionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction.profile"]], "profile (positionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.profile"]], "profile (satisfactionmeasure attribute)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure.profile"]], "remove() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.remove"]], "remove_satisfied() (groupsatisfactionmeasure method)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.GroupSatisfactionMeasure.remove_satisfied"]], "remove_satisfied() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.remove_satisfied"]], "remove_satisfied() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.remove_satisfied"]], "reverse() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.reverse"]], "sat() (additivesatisfaction method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.sat"]], "sat() (additive_borda_sat method)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.Additive_Borda_Sat.sat"]], "sat() (additive_cardinal_relative_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Relative_Sat.sat"]], "sat() (additive_cardinal_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Sat.sat"]], "sat() (additive_cost_log_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Log_Sat.sat"]], "sat() (additive_cost_sqrt_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Sqrt_Sat.sat"]], "sat() (cc_sat method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.CC_Sat.sat"]], "sat() (cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cardinality_Sat.sat"]], "sat() (cost_log_sat method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.Cost_Log_Sat.sat"]], "sat() (cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cost_Sat.sat"]], "sat() (cost_sqrt_sat method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.Cost_Sqrt_Sat.sat"]], "sat() (effort_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Effort_Sat.sat"]], "sat() (functionalsatisfaction method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction.sat"]], "sat() (positionalsatisfaction method)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.sat"]], "sat() (relative_cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cardinality_Sat.sat"]], "sat() (relative_cost_approx_normaliser_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Approx_Normaliser_Sat.sat"]], "sat() (relative_cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Sat.sat"]], "sat() (satisfactionmeasure method)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure.sat"]], "sat_class (satisfactionmultiprofile attribute)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.sat_class"]], "sat_class (satisfactionprofile attribute)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.sat_class"]], "sat_project() (additivesatisfaction method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.sat_project"]], "sat_project() (additive_borda_sat method)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.Additive_Borda_Sat.sat_project"]], "sat_project() (additive_cardinal_relative_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Relative_Sat.sat_project"]], "sat_project() (additive_cardinal_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Sat.sat_project"]], "sat_project() (additive_cost_log_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Log_Sat.sat_project"]], "sat_project() (additive_cost_sqrt_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Sqrt_Sat.sat_project"]], "sat_project() (cc_sat method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.CC_Sat.sat_project"]], "sat_project() (cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cardinality_Sat.sat_project"]], "sat_project() (cost_log_sat method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.Cost_Log_Sat.sat_project"]], "sat_project() (cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cost_Sat.sat_project"]], "sat_project() (cost_sqrt_sat method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.Cost_Sqrt_Sat.sat_project"]], "sat_project() (effort_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Effort_Sat.sat_project"]], "sat_project() (functionalsatisfaction method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction.sat_project"]], "sat_project() (positionalsatisfaction method)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.sat_project"]], "sat_project() (relative_cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cardinality_Sat.sat_project"]], "sat_project() (relative_cost_approx_normaliser_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Approx_Normaliser_Sat.sat_project"]], "sat_project() (relative_cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Sat.sat_project"]], "sat_project() (satisfactionmeasure method)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure.sat_project"]], "setdefault() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.setdefault"]], "sort() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.sort"]], "subtract() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.subtract"]], "total() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.total"]], "total_satisfaction() (groupsatisfactionmeasure method)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.GroupSatisfactionMeasure.total_satisfaction"]], "total_satisfaction() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.total_satisfaction"]], "total_satisfaction() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.total_satisfaction"]], "total_satisfaction_project() (groupsatisfactionmeasure method)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.GroupSatisfactionMeasure.total_satisfaction_project"]], "total_satisfaction_project() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.total_satisfaction_project"]], "total_satisfaction_project() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.total_satisfaction_project"]], "update() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.update"]], "values() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.values"]], "float_frac (in module pabutools.fractions)": [[10, "pabutools.fractions.FLOAT_FRAC"]], "fraction (in module pabutools.fractions)": [[10, "pabutools.fractions.FRACTION"]], "gmpy_frac (in module pabutools.fractions)": [[10, "pabutools.fractions.GMPY_FRAC"]], "frac() (in module pabutools.fractions)": [[10, "pabutools.fractions.frac"]], "pabutools.fractions": [[10, "module-pabutools.fractions"]], "str_as_frac() (in module pabutools.fractions)": [[10, "pabutools.fractions.str_as_frac"]], "allocationdetails (class in pabutools.rules.budgetallocation)": [[12, "pabutools.rules.budgetallocation.AllocationDetails"]], "budgetallocation (class in pabutools.rules.budgetallocation)": [[12, "pabutools.rules.budgetallocation.BudgetAllocation"]], "greedywelfareallocationdetails (class in pabutools.rules.greedywelfare)": [[12, "pabutools.rules.greedywelfare.GreedyWelfareAllocationDetails"]], "ilp_solver (maxaddutilwelfarealgo attribute)": [[12, "pabutools.rules.maxwelfare.MaxAddUtilWelfareAlgo.ILP_SOLVER"]], "mesallocationdetails (class in pabutools.rules.mes)": [[12, "pabutools.rules.mes.MESAllocationDetails"]], "mesiteration (class in pabutools.rules.mes)": [[12, "pabutools.rules.mes.MESIteration"]], "primal_dual (maxaddutilwelfarealgo attribute)": [[12, "pabutools.rules.maxwelfare.MaxAddUtilWelfareAlgo.PRIMAL_DUAL"]], "completion_by_rule_combination() (in module pabutools.rules.exhaustion)": [[12, "pabutools.rules.exhaustion.completion_by_rule_combination"]], "details (budgetallocation attribute)": [[12, "pabutools.rules.budgetallocation.BudgetAllocation.details"]], "exhaustion_by_budget_increase() (in module pabutools.rules.exhaustion)": [[12, "pabutools.rules.exhaustion.exhaustion_by_budget_increase"]], "greedy_utilitarian_welfare() (in module pabutools.rules.greedywelfare)": [[12, "pabutools.rules.greedywelfare.greedy_utilitarian_welfare"]], "iterations (mesallocationdetails attribute)": [[12, "pabutools.rules.mes.MESAllocationDetails.iterations"]], "max_additive_utilitarian_welfare() (in module pabutools.rules.maxwelfare)": [[12, "pabutools.rules.maxwelfare.max_additive_utilitarian_welfare"]], "method_of_equal_shares() (in module pabutools.rules.mes)": [[12, "pabutools.rules.mes.method_of_equal_shares"]], "pabutools.rules": [[12, "module-pabutools.rules"]], "popularity_comparison() (in module pabutools.rules.composition)": [[12, "pabutools.rules.composition.popularity_comparison"]], "selected_project (mesiteration attribute)": [[12, "pabutools.rules.mes.MESIteration.selected_project"]], "sequential_phragmen() (in module pabutools.rules.phragmen)": [[12, "pabutools.rules.phragmen.sequential_phragmen"]], "social_welfare_comparison() (in module pabutools.rules.composition)": [[12, "pabutools.rules.composition.social_welfare_comparison"]], "voters_budget (mesiteration attribute)": [[12, "pabutools.rules.mes.MESIteration.voters_budget"]], "voters_budget_after_selection (mesiteration attribute)": [[12, "pabutools.rules.mes.MESIteration.voters_budget_after_selection"]], "tiebreakingexception": [[13, "pabutools.tiebreaking.TieBreakingException"]], "tiebreakingrule (class in pabutools.tiebreaking)": [[13, "pabutools.tiebreaking.TieBreakingRule"]], "app_score_tie_breaking (in module pabutools.tiebreaking)": [[13, "pabutools.tiebreaking.app_score_tie_breaking"]], "func (tiebreakingrule attribute)": [[13, "pabutools.tiebreaking.TieBreakingRule.func"]], "lexico_tie_breaking (in module pabutools.tiebreaking)": [[13, "pabutools.tiebreaking.lexico_tie_breaking"]], "max_cost_tie_breaking (in module pabutools.tiebreaking)": [[13, "pabutools.tiebreaking.max_cost_tie_breaking"]], "min_cost_tie_breaking (in module pabutools.tiebreaking)": [[13, "pabutools.tiebreaking.min_cost_tie_breaking"]], "order() (tiebreakingrule method)": [[13, "pabutools.tiebreaking.TieBreakingRule.order"]], "pabutools.tiebreaking": [[13, "module-pabutools.tiebreaking"]], "refuse_tie_breaking (in module pabutools.tiebreaking)": [[13, "pabutools.tiebreaking.refuse_tie_breaking"]], "untie() (tiebreakingrule method)": [[13, "pabutools.tiebreaking.TieBreakingRule.untie"]], "numeric (in module pabutools.utils)": [[14, "pabutools.utils.Numeric"]], "gini_coefficient() (in module pabutools.utils)": [[14, "pabutools.utils.gini_coefficient"]], "mean_generator() (in module pabutools.utils)": [[14, "pabutools.utils.mean_generator"]], "pabutools.utils": [[14, "module-pabutools.utils"]], "powerset() (in module pabutools.utils)": [[14, "pabutools.utils.powerset"]], "greedywelfarevisualiser (class in pabutools.visualisation)": [[15, "pabutools.visualisation.GreedyWelfareVisualiser"]], "mesvisualiser (class in pabutools.visualisation)": [[15, "pabutools.visualisation.MESVisualiser"]], "visualiser (class in pabutools.visualisation)": [[15, "pabutools.visualisation.Visualiser"]], "pabutools.visualisation": [[15, "module-pabutools.visualisation"]], "render() (greedywelfarevisualiser method)": [[15, "pabutools.visualisation.GreedyWelfareVisualiser.render"]], "render() (mesvisualiser method)": [[15, "pabutools.visualisation.MESVisualiser.render"]]}}) \ No newline at end of file +Search.setIndex({"docnames": ["index", "installation", "quickstart", "reference/analysis/index", "reference/election/ballot", "reference/election/index", "reference/election/instance", "reference/election/libraries", "reference/election/profile", "reference/election/satisfaction", "reference/fractions", "reference/index", "reference/rules/index", "reference/tiebreaking", "reference/utils", "reference/visualisation/index", "usage/fractions", "usage/index", "usage/instances", "usage/libraries", "usage/outcomevisualisation", "usage/profiles", "usage/rules", "usage/satisfaction", "usage/tiebreaking"], "filenames": ["index.rst", "installation.rst", "quickstart.rst", "reference/analysis/index.rst", "reference/election/ballot.rst", "reference/election/index.rst", "reference/election/instance.rst", "reference/election/libraries.rst", "reference/election/profile.rst", "reference/election/satisfaction.rst", "reference/fractions.rst", "reference/index.rst", "reference/rules/index.rst", "reference/tiebreaking.rst", "reference/utils.rst", "reference/visualisation/index.rst", "usage/fractions.rst", "usage/index.rst", "usage/instances.rst", "usage/libraries.rst", "usage/outcomevisualisation.rst", "usage/profiles.rst", "usage/rules.rst", "usage/satisfaction.rst", "usage/tiebreaking.rst"], "titles": ["Pabutools: PB as easy as ABC", "Installation", "Quick Start", "Analysis module", "Ballot module", "Election module", "Instance module", "Preference Libraries", "Profile module", "Satisfaction module", "Fractions", "Reference", "Rules module", "Tie-Breaking", "Utils", "Visualisation Module", "Fractions", "Complete Guide", "Instances", "Preference Libraries", "Outcome Visualisation", "Profiles", "Rules", "Satisfaction Measures", "Tie-Breaking"], "terms": {"For": [0, 2, 3, 4, 8, 16, 17, 19, 20, 21, 22, 23, 24], "pun": 0, "see": [0, 2, 4, 6, 8, 9, 12, 16, 19, 20, 21, 22, 23, 24], "awesom": 0, "The": [0, 2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "ar": [0, 1, 2, 3, 4, 6, 8, 9, 10, 12, 13, 18, 19, 20, 21, 22, 23, 24], "complet": [0, 4, 8, 12, 22], "set": [0, 2, 3, 4, 6, 8, 9, 12, 13, 18, 20, 21, 22, 23, 24], "tool": [0, 3, 23], "work": [0, 12, 20], "participatori": [0, 2, 3, 6, 7, 12, 18, 19, 21, 22, 23], "budget": [0, 2, 3, 6, 7, 8, 9, 11, 18, 19, 20, 21, 23], "instanc": [0, 3, 4, 5, 7, 8, 9, 11, 12, 13, 15, 17, 19, 20, 21, 22, 23, 24], "i": [0, 2, 3, 4, 6, 8, 9, 10, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23], "democrat": 0, "us": [0, 2, 3, 4, 6, 7, 8, 9, 10, 12, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24], "alloc": [0, 3, 6, 9, 11, 18, 19, 20, 21], "given": [0, 3, 4, 6, 8, 9, 12, 14, 22, 23], "amount": [0, 3, 4, 6], "monei": [0, 3, 6, 12], "collect": [0, 2, 3, 4, 6, 8, 9, 12, 13, 14, 21, 23], "project": [0, 3, 4, 5, 6, 7, 8, 9, 12, 13, 18, 19, 20, 21, 22, 23, 24], "base": [0, 2, 4, 6, 8, 9, 13, 18, 19, 20, 21, 22], "group": [0, 6, 9, 12], "individu": [0, 9, 23], "prefer": [0, 4, 5, 11, 12, 17, 21, 22], "over": [0, 3, 4, 6, 8, 9, 23], "It": [0, 2, 3, 4, 6, 9, 10, 12, 18, 19, 21, 22], "ha": [0, 4, 6, 8, 9, 12, 21, 22], "been": [0, 2, 4, 6, 8, 9, 12, 21, 22], "invent": 0, "brazil": 0, "late": 0, "80": 0, "": [0, 2, 8, 9, 10, 11, 18, 23], "now": [0, 2], "wide": [0, 23], "implement": [0, 4, 8, 9, 12, 13, 21, 22, 23], "wikipedia": 0, "page": [0, 2, 15, 17, 20, 22], "more": [0, 2, 3, 4, 6, 8, 9, 10, 18, 21, 22, 23], "detail": [0, 3, 7, 8, 9, 12, 20], "In": [0, 4, 6, 8, 9, 12, 16, 19, 21, 23], "thi": [0, 2, 3, 4, 6, 8, 9, 12, 16, 17, 18, 19, 20, 21, 22, 23, 24], "librari": [0, 5, 11, 17, 20, 22], "we": [0, 2, 3, 4, 8, 9, 12, 16, 19, 20, 21, 22, 23, 24], "provid": [0, 2, 8, 9, 10, 12, 13, 16, 19, 20, 21, 22, 23, 24], "handl": [0, 2, 6, 10, 12, 16, 21, 22], "differ": [0, 3, 4, 6, 8, 9, 12, 20, 22], "kind": [0, 3, 6], "togeth": [0, 3, 6, 8, 9], "vote": [0, 2, 3, 6, 18, 20], "rule": [0, 2, 3, 8, 11, 13, 15, 17, 20, 21, 23, 24], "determin": [0, 19], "outcom": [0, 3, 12, 15, 17, 21, 22, 23], "elect": [0, 3, 4, 6, 7, 8, 11, 12, 15, 18, 19, 20, 21, 22, 23, 24], "some": [0, 4, 8, 12, 21, 22], "analyt": [0, 3, 12, 20, 22], "particular": [0, 23], "full": [0, 19, 22], "support": [0, 3, 8, 9, 12, 13, 19, 22], "taken": [0, 8, 14, 23], "from": [0, 1, 2, 3, 4, 6, 8, 9, 10, 12, 13, 14, 16, 18, 19, 20, 21, 22, 23, 24], "pabulib": [0, 7, 21], "refer": [0, 16, 17, 18, 19, 20, 21, 22, 24], "when": [0, 3, 6, 10, 12, 13, 19, 21, 22], "come": 0, "data": [0, 3, 19, 21], "sinc": [1, 2, 4, 9, 18, 21, 22], "pabutool": [1, 2, 7, 8, 12, 13, 16, 17, 18, 19, 20, 21, 22, 23, 24], "host": [1, 19, 21], "pypi": 1, "should": [1, 3, 4, 6, 8, 9, 12, 16, 21, 22], "easi": 1, "pip3": 1, "you": [1, 2, 12, 19, 21], "can": [1, 2, 3, 4, 6, 8, 9, 10, 12, 13, 18, 19, 20, 21, 22, 23], "also": [1, 3, 4, 6, 8, 9, 12, 18, 19, 21, 22, 23], "directli": [1, 12, 14, 21, 22, 23], "download": 1, "sourc": [1, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15], "our": [1, 19, 21, 23], "github": 1, "repositori": 1, "seem": 1, "easier": 1, "have": [2, 4, 6, 8, 9, 12, 21, 22, 23], "instal": 2, "packag": [2, 14, 19, 22, 23], "On": 2, "guid": [2, 16], "through": [2, 4, 9, 18, 21, 22], "simpl": [2, 4], "exampl": [2, 8, 9, 18, 19, 20, 23], "let": 2, "begin": 2, "need": [2, 8, 9, 12, 13, 19], "encod": 2, "least": [2, 3, 4, 8, 9, 23], "limit": [2, 3, 6, 8, 12, 18, 22], "voter": [2, 3, 4, 6, 8, 9, 12, 19, 21, 22, 23], "fundament": [2, 21], "element": [2, 4, 6, 8, 9, 14, 18], "e": [2, 4, 6, 8, 9, 13, 16, 21, 22, 23], "entiti": [2, 4, 6], "upon": [2, 6], "defin": [2, 3, 4, 6, 7, 8, 9, 10, 12, 16, 18, 21, 22, 23, 24], "them": [2, 8, 9, 13, 23], "class": [2, 3, 4, 6, 7, 8, 9, 12, 13, 15, 18, 19, 20, 21, 22, 23, 24], "import": [2, 4, 8, 9, 16, 18, 19, 20, 21, 22, 23, 24], "p1": [2, 18, 21, 23, 24], "1": [2, 3, 8, 9, 12, 16, 18, 21, 22, 23, 24], "constructor": [2, 8, 18, 21, 23], "take": [2, 4, 9, 13, 20, 23], "name": [2, 4, 6, 7, 9, 13, 15, 18, 20], "cost": [2, 3, 6, 8, 9, 12, 13, 18, 19, 22, 23], "p2": [2, 18, 21, 24], "p3": [2, 18, 21], "3": [2, 8, 9, 16, 18, 21], "next": [2, 22, 23], "which": [2, 3, 4, 8, 9, 10, 12, 13, 18, 20, 21, 22, 23], "along": [2, 18, 21], "addit": [2, 3, 4, 6, 8, 9, 11, 18, 19, 20, 21], "inform": [2, 3, 4, 6, 12, 18, 20, 22], "about": [2, 6, 12, 20, 22, 23], "store": [2, 4, 6, 8, 9, 12, 18, 19, 20, 21, 22], "all": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 16, 18, 19, 20, 21, 22, 23, 24], "regard": [2, 22], "except": [2, 4, 6, 8, 13], "what": [2, 21], "concern": [2, 4], "instanti": [2, 10, 21, 24], "deriv": [2, 4, 8], "python": [2, 4, 6, 8, 9, 16, 18, 21, 23], "one": [2, 3, 4, 6, 7, 8, 9, 12, 20, 22, 23], "There": [2, 22], "mani": [2, 4, 8, 9], "option": [2, 3, 4, 6, 8, 9, 12, 13, 15, 18, 20], "paramet": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 18, 21, 22, 23], "add": [2, 8, 9, 18, 21], "method": [2, 4, 8, 9, 11, 18, 21, 23], "popul": [2, 12, 19, 22, 23], "updat": [2, 4, 6, 8, 9, 20], "budget_limit": [2, 6, 18, 22, 24], "importantli": [2, 6, 9, 21], "ani": [2, 3, 9, 12, 18, 21, 22, 23], "comparison": [2, 3, 12, 18, 22], "between": [2, 3, 6, 13, 18, 20, 22, 24], "two": [2, 3, 4, 6, 8, 9, 10, 15, 18, 20, 22, 23, 24], "g": 2, "equal": [2, 8, 9, 11, 18, 23], "ad": [2, 6, 8, 12, 18, 22], "p": [2, 18, 21, 22, 23, 24], "anoth": [2, 4, 6, 8, 9, 18, 22, 23], "result": [2, 3, 15, 18, 20], "singl": [2, 9, 12, 13, 18, 24], "essenti": [2, 4], "compon": [2, 21], "A": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 18, 21, 23], "gather": [2, 23], "assum": [2, 12, 14], "submit": [2, 4, 6, 19, 21, 23], "approv": [2, 3, 4, 7, 8, 9, 12, 13, 19, 23], "thei": [2, 3, 4, 8, 9, 12, 21, 22], "approvalballot": [2, 4, 5, 8, 21, 22, 24], "follow": [2, 4, 8, 9, 12, 16, 19, 21, 22], "b1": [2, 21], "initi": [2, 3, 6, 8, 9, 12, 22, 23], "b2": [2, 21], "b3": [2, 21], "inherit": [2, 4, 8, 9, 12, 18, 21, 22, 23], "approvalprofil": [2, 5, 7, 8, 19, 21, 22, 24], "append": [2, 4, 8, 9, 21, 23], "list": [2, 3, 8, 9, 12, 13, 21, 22, 23, 24], "readi": [2, 23], "win": [2, 3], "purpos": [2, 4, 8, 12, 21, 22], "modul": [2, 10, 11, 16, 18, 20, 21, 22, 24], "want": 2, "standard": [2, 3, 4, 7, 19, 22], "greedi": [2, 11, 15], "commonli": 2, "citi": 2, "around": 2, "world": 2, "cost_sat": [2, 5, 9, 20, 22, 23], "greedy_utilitarian_welfar": [2, 12, 20, 22], "sat_class": [2, 3, 8, 9, 12, 20, 22, 23], "approxim": [2, 9, 12], "utilitarian": [2, 11], "welfar": [2, 3, 11, 15], "satisfact": [2, 3, 5, 8, 11, 12, 17, 22], "measur": [2, 3, 8, 9, 12, 17, 21, 22], "discuss": [2, 23], "yet": [2, 4], "keep": 2, "mind": 2, "wai": [2, 9, 16, 20, 22, 23, 24], "assess": 2, "qualiti": 2, "total": [2, 3, 6, 8, 9, 12, 19, 23], "select": [2, 3, 4, 6, 9, 12, 13, 20, 22, 23], "appear": [2, 3, 8, 9], "check": [2, 8], "out": [2, 8, 9], "other": [2, 3, 4, 6, 8, 20, 21, 22], "phragm\u00e9n": [2, 11], "sequenti": [2, 11], "share": [2, 11, 23], "sequential_phragmen": [2, 12, 22], "method_of_equal_shar": [2, 12, 20, 22], "outcome1": 2, "outcome2": 2, "return": [2, 3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 18, 21, 22, 23, 24], "budgetalloc": [2, 3, 12, 22], "object": [2, 3, 4, 6, 8, 9, 12, 13, 22], "behav": [2, 4, 18, 22], "similarli": [2, 21, 22], "visualis": [2, 11, 17, 22], "explan": [2, 12, 17, 22], "contain": [3, 4, 6, 7, 8, 9, 14, 19, 20, 21], "analys": [3, 12], "avg_project_cost": [3, 11], "int": [3, 4, 6, 8, 9, 12, 13, 14, 23], "float": [3, 4, 6, 8, 9, 10, 12, 13, 14, 16], "mpq": [3, 4, 6, 8, 9, 12, 13, 14], "averag": [3, 21], "type": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 21], "numer": [3, 4, 6, 8, 9, 10, 11, 12, 13, 14], "funding_scarc": [3, 11], "ratio": 3, "divid": [3, 9, 12, 23], "call": [3, 4, 8, 12, 15, 20], "fund": 3, "scarciti": 3, "median_project_cost": [3, 11], "median": 3, "std_dev_project_cost": [3, 11], "deviat": 3, "sum_project_cost": [3, 11], "avg_approval_scor": [3, 11], "profil": [3, 5, 6, 7, 9, 11, 12, 13, 15, 17, 19, 20, 22, 23, 24], "abstractapprovalprofil": [3, 5, 7, 8, 12], "score": [3, 4, 8, 9, 13, 19, 21, 23], "avg_ballot_cost": [3, 11], "abstractprofil": [3, 5, 7, 8, 9, 12, 13, 15], "ballot": [3, 5, 6, 7, 8, 9, 11, 12, 19, 21, 22, 23], "avg_ballot_length": [3, 11], "length": [3, 8, 9, 19], "avg_total_scor": [3, 11], "abstractcardinalprofil": [3, 5, 7, 8], "assign": [3, 4, 6, 8, 9, 19, 21], "median_approval_scor": [3, 11], "median_ballot_cost": [3, 11], "median_ballot_length": [3, 11], "median_total_scor": [3, 11], "voter_flow_matrix": [3, 11], "dict": [3, 4, 6, 7, 8, 9, 12, 18, 19, 21], "str": [3, 4, 6, 7, 9, 10, 15, 18, 22], "flow": 3, "matrix": 3, "2d": 3, "dictionari": [3, 4, 6, 8, 9, 12, 21], "where": [3, 12, 13, 15, 20, 21, 23], "voter_flow": 3, "b": [3, 8, 9, 18, 21], "number": [3, 6, 8, 9, 10, 12, 13, 14, 19, 21, 22, 23], "who": [3, 8, 9], "votes_count_by_project": [3, 11], "each": [3, 4, 8, 9, 12, 20, 21, 22, 23], "avg_satisfact": [3, 11], "budget_alloc": [3, 6, 18], "satisfactionmeasur": [3, 5, 8, 9, 12, 23], "comput": [3, 8, 9, 10, 12, 14, 21, 22, 23], "iter": [3, 4, 6, 8, 9, 12, 13, 14, 18, 22], "do": [3, 9, 12, 16, 21, 22], "gini_coefficient_of_satisfact": [3, 11], "invert": 3, "bool": [3, 6, 8, 12, 15], "fals": [3, 6, 8, 9, 12, 15, 18, 22], "gini": [3, 14], "coeffici": [3, 14], "true": [3, 6, 8, 12, 18, 20, 21, 22], "minu": [3, 8, 9], "default": [3, 4, 6, 7, 8, 9, 10, 12, 13, 15, 16, 20, 21, 22], "percent_non_empty_hand": [3, 11], "percentag": 3, "mostli": 3, "make": [3, 12, 16], "sens": 3, "though": [3, 6], "oper": [3, 9], "non": [3, 4, 8, 12, 22], "empti": [3, 8, 9, 12, 20], "hand": 3, "percent_positive_satisfact": [3, 11], "enjoi": 3, "posit": [3, 4, 9], "thu": [3, 4, 8, 9, 12, 21], "zero": [3, 8, 9], "function": [3, 8, 9, 10, 12, 13, 14, 16, 19, 20, 22, 24], "social": [3, 12, 22], "inheret": [3, 12], "satisfaction_histogram": [3, 11], "max_satisfact": 3, "num_bin": 3, "21": 3, "necessari": [3, 7, 8, 12], "plot": [3, 21], "histogram": 3, "bin": 3, "whose": [3, 8], "correspond": [3, 4, 6, 7, 8, 9, 12, 19, 21, 23], "normalis": [3, 9], "20": 3, "valu": [3, 4, 6, 8, 9, 10, 12, 13, 14, 16, 23], "per": [3, 8, 9, 12, 23], "category_proportion": [3, 11], "categori": [3, 4, 6, 8], "exist": 3, "specif": [3, 8, 9, 12, 20, 21, 22, 23], "an": [3, 4, 6, 7, 8, 9, 10, 12, 13, 14, 16, 18, 19, 20, 21, 22, 23], "error": [3, 6, 10, 13, 16], "rais": [3, 4, 6, 8, 9, 10, 13, 21], "specifi": [3, 7, 8, 9, 20], "dedic": 3, "power": 3, "2": [3, 8, 9, 12, 16, 21, 22, 24], "global": 3, "consid": [3, 4, 6, 8, 9, 12], "exponenti": 3, "proportion": 3, "projectloss": [3, 11], "supporters_budget": 3, "budget_lost": 3, "repres": [3, 4, 6, 7, 8, 9, 10, 12, 21, 23], "how": [3, 6, 12, 17, 20, 22, 23], "much": [3, 12, 22], "lost": 3, "due": 3, "being": [3, 8, 12], "pick": [3, 12], "extend": [3, 8, 9], "itself": [3, 4, 6, 8, 9], "calcul": [3, 12], "wa": [3, 12, 22], "describ": [3, 4, 7, 8, 10, 19], "spent": 3, "prior": 3, "consider": [3, 9], "total_budget_lost": 3, "calculate_effective_support": [3, 11], "was_pick": 3, "mes_param": 3, "none": [3, 4, 6, 7, 8, 9, 12, 13, 15, 22], "effect": [3, 12, 20], "me": [3, 11, 15, 20], "metric": 3, "allow": [3, 4, 8, 9, 12, 21], "receiv": [3, 8, 12], "minim": 3, "requir": [3, 4, 18, 21], "must": [3, 19, 20], "part": [3, 6, 9], "whether": [3, 8, 15], "considerd": 3, "winner": 3, "pass": [3, 4, 6, 8, 9, 12, 21, 22, 23], "keyword": [3, 4, 6, 8, 12], "argument": [3, 4, 6, 8, 9, 12, 14, 20, 22, 23, 24], "final_budget": 3, "abov": [3, 6, 9, 21, 23, 24], "final": 3, "replac": [3, 8, 9], "simul": 3, "exhaust": [3, 6, 11], "pair": [3, 8, 9], "calculate_project_loss": [3, 11], "allocation_detail": 3, "allocationdetail": [3, 12, 15], "verbos": [3, 12, 15], "de": [3, 12], "activ": [3, 8, 12, 21, 22], "displai": [3, 12], "format": [4, 7, 8, 9, 19, 21], "form": [4, 6, 8], "just": 4, "indic": [4, 6, 8, 12, 21], "complex": 4, "cardin": [4, 7, 8, 9, 19, 22, 23], "introduc": [4, 8, 9, 10, 12, 23], "abstract": [4, 8, 9, 21], "abstractballot": [4, 5, 8, 9], "gener": [4, 6, 8, 9, 12, 14, 15, 16, 20, 21, 22], "first": [4, 8, 9, 12, 13, 14, 21, 22], "These": [4, 6, 8, 12, 20, 24], "cardinalballot": [4, 5, 8, 21], "cumulativeballot": [4, 5, 8, 21], "ordinalballot": [4, 5, 8, 21], "second": [4, 8, 14, 20, 21, 22], "so": [4, 8, 9, 16, 18, 22], "frozen": [4, 8, 21], "exactli": [4, 6, 9], "regular": 4, "mutabl": [4, 8], "hashabl": [4, 8], "u": 4, "kei": [4, 6, 8, 9, 13, 21], "multiprofil": [4, 5, 8, 9, 23], "frozenapprovalballot": [4, 5, 8, 21], "frozencardinalballot": [4, 5, 8, 21], "frozencumulativeballot": [4, 5, 8, 21], "frozenordinalballot": [4, 5, 8, 21], "abstractapprovalballot": [4, 5, 8, 9], "abstractcardinalballot": [4, 5, 8, 9], "abstractcumulativeballot": [4, 5], "abstractordinalballot": [4, 5, 9], "meta": [4, 6, 18, 19], "abc": [4, 8, 9], "hint": 4, "identifi": [4, 6], "typic": [4, 6, 8, 12, 22, 23], "string": [4, 6, 7, 10, 16, 19, 20], "could": [4, 6, 12], "gender": 4, "locat": 4, "etc": [4, 18, 21], "frozenballot": [4, 5, 8, 21], "its": [4, 8, 9, 14, 21, 23], "init": [4, 6, 8, 9, 12], "subclass": [4, 6, 8], "initialis": [4, 7, 8, 9], "case": [4, 6, 8, 9, 21], "attribut": [4, 6, 8, 9, 21], "copi": [4, 6, 8, 9], "arg": [4, 6, 8, 9, 10], "shallow": [4, 6, 8, 9], "new": [4, 6, 8, 9], "difference_upd": [4, 6], "remov": [4, 6, 8, 9, 18], "intersect": [4, 6], "both": [4, 6, 8, 9, 21], "intersection_upd": [4, 6], "symmetric_differ": [4, 6], "symmetr": [4, 6], "symmetric_difference_upd": [4, 6], "union": [4, 6, 14], "either": [4, 6, 8, 9, 10, 12, 22], "get_random_approval_ballot": [4, 5], "randomappballot": 4, "random": [4, 6, 8], "probabl": [4, 8], "0": [4, 6, 8, 9, 12, 21, 22, 23, 24], "5": [4, 8, 9, 21, 22], "randomli": [4, 6, 8], "tupl": [4, 7, 8, 9, 14], "express": 4, "simpli": [4, 8, 9, 12, 13, 16], "map": [4, 7, 9, 19, 23], "default_scor": [4, 8], "d": [4, 8, 9], "overrid": [4, 12], "set_item": 4, "ensur": [4, 8, 9, 20, 21], "cumul": [4, 8], "distribut": [4, 21], "point": [4, 19, 21, 22], "special": [4, 8, 13], "ordin": [4, 7, 8, 9, 19, 23], "order": [4, 8, 9, 13, 24], "accord": [4, 7, 8, 9, 12, 13], "technic": 4, "reason": 4, "convent": 4, "present": [4, 8, 9, 22, 23], "most": [4, 8, 9, 12, 22, 23], "If": [4, 6, 8, 9, 10, 12, 14, 19, 22, 23], "alreadi": [4, 9, 22, 23], "doe": [4, 6, 8, 9, 12, 22], "chang": [4, 16], "at_index": 4, "index": [4, 8, 9, 23], "valueerror": [4, 8, 9], "invalid": 4, "loop": 4, "until": [4, 12, 22], "find": [4, 6, 22], "found": [4, 6, 8, 9, 12, 20], "get_random_inst": [5, 6], "max_budget_allocation_cardin": [5, 6], "max_budget_allocation_cost": [5, 6], "total_cost": [5, 6], "approvalmultiprofil": [5, 8, 21], "get_random_approval_profil": [5, 8], "get_all_approval_profil": [5, 8], "cardinalprofil": [5, 7, 8, 19, 21], "cardinalmultiprofil": [5, 8, 21], "abstractcumulativeprofil": [5, 8], "cumulativeprofil": [5, 8, 19, 21], "cumulativemultiprofil": [5, 8, 21], "abstractordinalprofil": [5, 7, 8], "ordinalprofil": [5, 7, 8, 19, 21], "ordinalmultiprofil": [5, 8, 21], "groupsatisfactionmeasur": [5, 8, 9, 12], "satisfactionmultiprofil": [5, 9, 23], "satisfactionprofil": [5, 9, 23], "functionalsatisfact": [5, 9, 23], "cc_sat": [5, 9, 23], "cost_sqrt_sat": [5, 9, 23], "cost_log_sat": [5, 9, 23], "additivesatisfact": [5, 9, 23], "cardinality_sat": [5, 9, 22, 23], "relative_cardinality_sat": [5, 9, 23], "relative_cost_sat": [5, 9, 23], "relative_cost_approx_normaliser_sat": [5, 9, 23], "additive_cost_sqrt_sat": [5, 9], "additive_cost_log_sat": [5, 9], "effort_sat": [5, 9, 23], "additive_cardinal_sat": [5, 9, 23], "additive_cardinal_relative_sat": [5, 9], "positionalsatisfact": [5, 9, 23], "additive_borda_sat": [5, 9, 23], "parse_pabulib": [5, 7, 19, 20, 23], "write_pabulib": [5, 7, 19], "election_as_pabulib_str": [5, 7, 19], "init_preflib_inst": [5, 7], "approval_to_preflib": [5, 7, 19], "cardinal_to_preflib": [5, 7, 19], "ordinal_to_preflib": [5, 7, 19], "basic": 6, "here": [6, 8, 9, 18, 20, 21, 22], "target": 6, "file_path": [6, 7], "file_nam": [6, 7], "parsing_error": 6, "project_meta": [6, 18, 19], "note": [6, 8, 9, 12, 20, 21, 22], "constitut": 6, "maximum": [6, 8, 9, 12, 19], "feasibl": [6, 9, 12, 18, 22, 23], "urban": 6, "greeneri": 6, "public": [6, 7], "transport": 6, "citizen": 6, "60": 6, "year": 6, "old": 6, "resid": 6, "district": 6, "pars": [6, 7, 19], "file": [6, 7, 15, 19, 20], "path": [6, 7, 15, 19, 20], "boolean": [6, 8, 12, 21, 22], "were": [6, 12, 19, 20], "encount": 6, "relev": 6, "get_project": 6, "project_nam": 6, "otherwis": [6, 8, 9, 12, 23], "keyerror": [6, 8, 9], "is_exhaust": [6, 18], "available_project": 6, "test": [6, 8, 18, 21], "said": 6, "without": [6, 20], "violat": [6, 12], "onli": [6, 8, 9, 12, 13, 19, 20, 22], "is_feas": [6, 18], "mean": [6, 8, 14], "exce": [6, 8], "less": 6, "than": [6, 10, 21, 23], "is_trivi": [6, 8], "trivial": [6, 8], "exceed": [6, 9, 12], "uniqu": [6, 8, 9], "enforc": 6, "member": [6, 14, 19, 22], "num_project": 6, "min_cost": 6, "max_cost": 6, "integ": [6, 12, 16, 22], "uniformli": 6, "sampl": 6, "uniform": 6, "minimum": [6, 8, 19], "round": [6, 12, 15, 20], "up": [6, 8, 9, 12, 18, 21, 22], "closest": 6, "chosen": [6, 20], "respect": [6, 8, 20, 24], "subset": [6, 8, 9, 14, 23], "sum": [6, 8, 9, 12, 23], "correct": 7, "depend": [7, 12, 23], "metadata": [7, 8, 18, 19], "write": [7, 19], "http": 7, "arxiv": 7, "org": 7, "pdf": 7, "2305": 7, "11035": 7, "output": [7, 8, 9, 15, 22], "creat": [7, 8, 9, 21, 23], "preflib_inst": [7, 19], "preflibinst": 7, "modification_typ": 7, "relates_to": 7, "related_fil": 7, "titl": 7, "descript": 7, "publication_d": 7, "modification_d": 7, "alternative_nam": 7, "preflib": 7, "preflibtool": 7, "modif": 7, "document": [7, 14], "relat": [7, 8, 19], "date": 7, "last": [7, 8, 9], "altern": 7, "origin": [7, 22], "categoricalinst": 7, "convert": [7, 8, 9, 10, 12, 19, 22, 23], "py": [7, 8], "ordinalinst": 7, "structur": 8, "veri": 8, "similar": [8, 22], "Then": [8, 22], "usual": 8, "those": 8, "multipl": [8, 9, 14, 21], "appli": [8, 9, 12, 13, 22], "ballot_valid": [8, 21], "ballot_typ": [8, 21], "meant": [8, 9], "valid": [8, 12, 21], "befor": [8, 9, 21], "against": 8, "as_sat_profil": [8, 22], "interchang": [8, 21], "inquir": 8, "num_ballot": 8, "validate_ballot": [8, 21], "throw": 8, "typeerror": [8, 21], "item": [8, 9], "end": [8, 9, 12], "as_multiprofil": [8, 21, 22], "insert": [8, 9], "regardless": [8, 9], "input": [8, 9, 13, 23], "even": [8, 9], "save": [8, 9, 12, 15, 20], "counter": [8, 9, 21], "multiset": [8, 21, 23], "force_freez": 8, "beforehand": 8, "count": [8, 9, 20], "legal_min_length": [8, 19], "legal_max_length": [8, 19], "legal_min_cost": [8, 19], "legal_max_cost": [8, 19], "approval_scor": [8, 21], "approved_project": 8, "is_party_list": [8, 21], "parti": [8, 21], "disjoint": 8, "clear": [8, 9], "occurr": [8, 9], "start": [8, 9, 12, 17], "stop": [8, 9, 12], "9223372036854775807": [8, 9], "pop": [8, 9], "indexerror": [8, 9], "rang": [8, 9, 19, 21, 22, 23], "revers": [8, 9], "IN": [8, 9], "place": [8, 9], "sort": [8, 9, 13], "ascend": [8, 9], "modifi": [8, 9], "stabl": [8, 9], "maintain": [8, 9], "onc": [8, 9, 21, 23], "descend": [8, 9], "flag": [8, 9, 20], "repeat": [8, 9, 22], "time": [8, 9, 12], "c": [8, 9], "abcabc": [8, 9], "knuth": [8, 9], "prime": [8, 9], "factor": [8, 9], "1836": [8, 9], "17": [8, 9], "math": [8, 9], "prime_factor": [8, 9], "prod": [8, 9], "neg": [8, 9], "ignor": [8, 9], "classmethod": [8, 9], "fromkei": [8, 9], "v": [8, 9], "get": [8, 9, 21, 22], "els": [8, 9, 23], "like": [8, 9], "view": [8, 9], "most_common": [8, 9], "n": [8, 9], "common": [8, 9], "abracadabra": [8, 9], "r": [8, 9], "k": [8, 9], "popitem": [8, 9], "lifo": [8, 9], "setdefault": [8, 9], "subtract": [8, 9], "kwd": [8, 9], "instead": [8, 9, 21], "reduc": [8, 9], "below": [8, 9, 23], "witch": [8, 9], "watch": [8, 9], "h": [8, 9], "w": [8, 9], "four": [8, 9], "4": [8, 9, 16, 21, 22], "num_ag": 8, "agent": [8, 12], "possibl": [8, 12, 19], "legal_min_scor": [8, 19], "legal_max_scor": [8, 19], "total_scor": 8, "param": 8, "fraction": [8, 9, 11, 14, 17, 22], "legal_min_total_scor": [8, 19], "legal_max_total_scor": [8, 19], "across": 8, "forzenordinalballot": 8, "larg": 9, "thing": 9, "As": [9, 12, 21, 22, 23], "three": 9, "chamberlin": [9, 23], "courant": [9, 23], "rel": 9, "approx": 9, "squar": [9, 23], "root": [9, 23], "log": [9, 21, 23], "effort": 9, "borda": [9, 23], "alwai": 9, "link": [9, 20], "hase": 9, "compar": 9, "sole": [9, 12], "sat": [9, 23], "intern": 9, "sat_project": 9, "remove_satisfi": 9, "sat_bound": 9, "exclud": [9, 22], "satisfi": 9, "met": 9, "bound": [9, 12], "noth": 9, "care": 9, "total_satisfact": 9, "total_satisfaction_project": 9, "inner_sat_class": 9, "extract": 9, "well": [9, 21], "potenti": [9, 18], "rare": 9, "deepcopi": 9, "extend_from_multiprofil": 9, "extend_from_profil": 9, "func": [9, 13], "callabl": [9, 12, 13], "via": [9, 12, 22], "actual": [9, 21], "under": [9, 22], "plu": [9, 12], "To": [9, 16, 21, 22, 23], "speed": [9, 21, 22], "precomput": 9, "precomputed_valu": [9, 23], "preprocess": 9, "get_project_sat": 9, "after": [9, 12, 20], "avoid": 9, "re": 9, "proj": 9, "largest": [9, 12, 22, 23], "previou": [9, 22, 23], "denomin": 9, "expens": [9, 23], "exact": 9, "version": [9, 12, 22], "long": [9, 21], "includ": [9, 12, 18, 19, 20], "highest": [9, 12, 13], "achiev": [9, 22], "positional_func": 9, "aggregation_func": 9, "That": 9, "aggreg": [9, 23], "frac": [10, 11, 16, 22], "constant": [10, 12, 16], "One": 10, "str_as_frac": [10, 11, 16], "float_frac": [10, 11], "gmpy2": [10, 16], "gmpy_frac": [10, 11], "gumpy2": [10, 14], "maximis": 11, "composit": 11, "analysi": [11, 15, 21], "mesvisualis": [11, 15, 20], "greedywelfarevisualis": [11, 15, 20], "tie": [11, 12, 17, 22], "break": [11, 12, 17, 22], "tiebreakingexcept": [11, 13], "tiebreakingrul": [11, 12, 13, 24], "app_score_tie_break": [11, 13, 22, 24], "lexico_tie_break": [11, 13, 24], "max_cost_tie_break": [11, 13, 24], "min_cost_tie_break": [11, 13, 24], "refuse_tie_break": [11, 13], "util": [11, 20, 23], "docenum": [11, 14], "gini_coeffici": [11, 14], "mean_gener": [11, 14], "powerset": [11, 14], "known": [12, 19, 22], "max_additive_utilitarian_welfar": [12, 22], "mai": [12, 16], "notabl": [12, 18], "combin": [12, 22], "completion_by_rule_combin": [12, 22], "increas": [12, 20, 22], "exhaustion_by_budget_increas": [12, 22], "sever": [12, 18, 19, 21, 23, 24], "variou": [12, 23], "run": [12, 22], "parent": 12, "sat_profil": [12, 22, 23], "is_sat_addit": [12, 22], "tie_break": [12, 22], "resolut": [12, 22], "initial_budget_alloc": [12, 22], "scheme": 12, "lead": [12, 16], "would": [12, 21, 22], "constraint": [12, 19, 22], "skip": 12, "satisf": 12, "disregard": 12, "former": 12, "latter": 12, "deduct": 12, "lexicograph": [12, 13], "obtain": [12, 22], "irresolut": [12, 22], "ti": [12, 13, 22, 24], "greedywelfareallocationdetail": [12, 22], "enum": [12, 14], "maxaddutilwelfarealgo": [12, 22], "algorithm": [12, 16], "ilp_solv": [12, 22], "linear": [12, 22], "program": [12, 22], "ilp": [12, 22], "solver": [12, 22], "primal_du": 12, "state": 12, "art": 12, "primal": [12, 22], "dual": [12, 22], "knapsack": [12, 22], "problem": [12, 22], "inner_algo": [12, 22], "maxim": [12, 22], "satisfactin": 12, "approach": [12, 22], "cannot": 12, "while": 12, "inner": 12, "avail": [12, 20], "choic": 12, "initial_load": 12, "virtual": 12, "currenc": 12, "continu": 12, "soon": [12, 22], "asa": 12, "enough": 12, "bui": 12, "bought": 12, "load": 12, "By": [12, 16, 21, 22], "voter_budget_incr": [12, 22], "binary_sat": 12, "skipped_project": 12, "websit": [12, 19, 22], "equalshar": [12, 22], "net": [12, 22], "variant": 12, "unit": 12, "longer": 12, "binari": 12, "gain": [12, 21], "runtim": [12, 20, 21, 22], "automat": [12, 22], "mesproject": 12, "shouldn": 12, "t": 12, "access": 12, "perform": [12, 22], "mesallocationdetail": [12, 22], "voter_multipl": 12, "crucial": 12, "reconstruct": 12, "whole": [12, 20], "corrospond": 12, "mes_inner_algo": 12, "progress": 12, "dure": 12, "mesiter": 12, "voters_budget": 12, "voters_budget_after_select": 12, "selected_project": 12, "consist": [12, 15, 20, 21, 22], "cover": 12, "rule_sequ": 12, "rule_param": [12, 22], "sequenc": [12, 14, 22], "reach": 12, "separ": 12, "exhaustive_stop": 12, "budget_step": [12, 22], "budget_bound": 12, "retriev": 12, "infeas": 12, "procedur": 12, "interest": 12, "disabl": 12, "condit": 12, "leav": 12, "step": 12, "upper": 12, "multipli": 12, "popularity_comparison": [12, 22], "ones": [12, 23], "yield": [12, 19], "social_welfare_comparison": [12, 22], "occur": 13, "among": [13, 21], "broken": [13, 22], "lambda": 13, "x": 13, "unti": [13, 24], "tiebreak": [13, 22, 24], "wher": 13, "favour": 13, "lowest": 13, "enumer": 14, "stack": 14, "overflow": 14, "vector": 14, "alia": 14, "explain": [15, 20], "mes_detail": [], "summari": [15, 20], "html": [15, 20], "round_analysi": [15, 20], "print": [15, 18], "consol": 15, "render": [15, 20, 22], "output_folder_path": 15, "greedy_detail": [], "consit": 15, "folder": 15, "customiz": 16, "Not": 16, "undesir": 16, "behavior": 16, "fraction_from_int": 16, "6": 16, "fraction_from_str": 16, "offer": [17, 22, 23], "comprehens": 17, "simpler": 17, "tutori": 17, "quick": 17, "pleas": [18, 21], "encapsul": 18, "central": 18, "augment": 18, "accept": [18, 22], "invok": 18, "conform": 19, "appropri": 19, "path_to_the_fil": [19, 23], "extens": 19, "hous": 19, "subject": 19, "impos": 19, "pb": [19, 20], "content": 19, "str_represent": 19, "categor": 19, "app_profil": 19, "card_profil": 19, "ord_profil": 19, "depth": 20, "reject": 20, "statist": 20, "chart": 20, "zingchart": 20, "googl": 20, "develop": 20, "howev": 20, "remain": 20, "same": 20, "current": 20, "greedywelfar": 20, "path_to_election_fil": 20, "path_to_output_fil": 20, "standalon": 20, "give": 20, "impact": 20, "captur": 20, "essenc": 20, "filenam": 20, "directori": 20, "correctli": 20, "serv": 21, "primarili": 21, "act": 21, "associ": 21, "deactiv": 21, "10": [21, 22], "8": [21, 22], "membership": 21, "ask": 21, "becom": 21, "p0": [21, 24], "p4": 21, "rank": 21, "unic": 21, "faster": [21, 22], "counterpart": 21, "immut": 21, "represent": 21, "easili": 21, "app_ballot": 21, "freez": 21, "frozen_ballot": 21, "turn": 21, "show": 21, "7": 21, "multiprofile_runtim": 21, "profile_runtim": 21, "max": 21, "insight": 21, "scale": 21, "celebr": 22, "aim": 22, "Or": 22, "irresolute_outcom": 22, "forc": 22, "mip": 22, "solv": 22, "previous": 22, "becaus": 22, "control": 22, "solut": 22, "primari": 22, "context": 22, "sai": 22, "highli": 22, "recommend": 22, "decid": 22, "reli": 22, "significantli": 22, "idea": 22, "propos": 22, "scientif": 22, "literatur": 22, "fix": [22, 23], "section": 22, "optim": 22, "budget_allocation_mes_complet": 22, "hope": 22, "suitabl": 22, "budget_allocation_mes_iter": 22, "100": [22, 23], "someth": 22, "rememb": 22, "compos": 22, "wieliczka": 22, "\u015bwiec": 22, "simplifi": [22, 23], "def": [22, 23], "mes_ful": 22, "popular": 22, "storag": 22, "concept": 23, "proxi": 23, "deduc": 23, "rather": 23, "flexibl": 23, "custom": 23, "Such": 23, "addition": 23, "facilit": 23, "manag": 23, "workflow": 23, "involv": 23, "mysatisfact": 23, "self": 23, "len": 23, "process": 23, "conveni": 23, "size": 23, "resembl": 23, "normal": 23, "demonstr": 23, "illustr": 23, "cc_sat_func": 23, "__init__": 23, "super": 23, "Its": 23, "pre": 23, "done": 23, "cardinality_sat_func": 23, "borda_sat_func": 23, "mainli": 24, "seen": 24, "prefix": 15, "output_filenam": [15, 20], "greedy_explan": [15, 20], "_summari": 20, "_round_analysi": 20}, "objects": {"pabutools": [[3, 0, 0, "-", "analysis"], [5, 0, 0, "-", "election"], [10, 0, 0, "-", "fractions"], [12, 0, 0, "-", "rules"], [13, 0, 0, "-", "tiebreaking"], [14, 0, 0, "-", "utils"], [15, 0, 0, "-", "visualisation"]], "pabutools.analysis": [[3, 0, 0, "-", "category"], [3, 0, 0, "-", "instanceproperties"], [3, 0, 0, "-", "mesanalytics"], [3, 0, 0, "-", "profileproperties"], [3, 0, 0, "-", "votersatisfaction"]], "pabutools.analysis.category": [[3, 1, 1, "", "category_proportionality"]], "pabutools.analysis.instanceproperties": [[3, 1, 1, "", "avg_project_cost"], [3, 1, 1, "", "funding_scarcity"], [3, 1, 1, "", "median_project_cost"], [3, 1, 1, "", "std_dev_project_cost"], [3, 1, 1, "", "sum_project_cost"]], "pabutools.analysis.mesanalytics": [[3, 2, 1, "", "ProjectLoss"], [3, 1, 1, "", "calculate_effective_support"], [3, 1, 1, "", "calculate_effective_supports"], [3, 1, 1, "", "calculate_project_loss"]], "pabutools.analysis.mesanalytics.ProjectLoss": [[3, 3, 1, "", "budget_lost"], [3, 3, 1, "", "supporters_budget"], [3, 4, 1, "", "total_budget_lost"]], "pabutools.analysis.profileproperties": [[3, 1, 1, "", "avg_approval_score"], [3, 1, 1, "", "avg_ballot_cost"], [3, 1, 1, "", "avg_ballot_length"], [3, 1, 1, "", "avg_total_score"], [3, 1, 1, "", "median_approval_score"], [3, 1, 1, "", "median_ballot_cost"], [3, 1, 1, "", "median_ballot_length"], [3, 1, 1, "", "median_total_score"], [3, 1, 1, "", "voter_flow_matrix"], [3, 1, 1, "", "votes_count_by_project"]], "pabutools.analysis.votersatisfaction": [[3, 1, 1, "", "avg_satisfaction"], [3, 1, 1, "", "gini_coefficient_of_satisfaction"], [3, 1, 1, "", "percent_non_empty_handed"], [3, 1, 1, "", "percent_positive_satisfaction"], [3, 1, 1, "", "satisfaction_histogram"]], "pabutools.election": [[4, 0, 0, "-", "ballot"], [6, 0, 0, "-", "instance"], [8, 0, 0, "-", "profile"], [9, 0, 0, "-", "satisfaction"]], "pabutools.election.ballot.approvalballot": [[4, 2, 1, "", "AbstractApprovalBallot"], [4, 2, 1, "", "ApprovalBallot"], [4, 2, 1, "", "FrozenApprovalBallot"], [4, 1, 1, "", "get_random_approval_ballot"]], "pabutools.election.ballot.approvalballot.ApprovalBallot": [[4, 4, 1, "", "copy"], [4, 4, 1, "", "difference"], [4, 4, 1, "", "difference_update"], [4, 4, 1, "", "frozen"], [4, 4, 1, "", "intersection"], [4, 4, 1, "", "intersection_update"], [4, 3, 1, "", "meta"], [4, 3, 1, "", "name"], [4, 4, 1, "", "symmetric_difference"], [4, 4, 1, "", "symmetric_difference_update"], [4, 4, 1, "", "union"]], "pabutools.election.ballot.approvalballot.FrozenApprovalBallot": [[4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.ballot": [[4, 2, 1, "", "AbstractBallot"], [4, 2, 1, "", "Ballot"], [4, 2, 1, "", "FrozenBallot"]], "pabutools.election.ballot.ballot.AbstractBallot": [[4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.ballot.Ballot": [[4, 4, 1, "", "frozen"], [4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.ballot.FrozenBallot": [[4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.cardinalballot": [[4, 2, 1, "", "AbstractCardinalBallot"], [4, 2, 1, "", "CardinalBallot"], [4, 2, 1, "", "FrozenCardinalBallot"]], "pabutools.election.ballot.cardinalballot.CardinalBallot": [[4, 4, 1, "", "complete"], [4, 4, 1, "", "copy"], [4, 4, 1, "", "frozen"], [4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.cardinalballot.FrozenCardinalBallot": [[4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.cumulativeballot": [[4, 2, 1, "", "AbstractCumulativeBallot"], [4, 2, 1, "", "CumulativeBallot"], [4, 2, 1, "", "FrozenCumulativeBallot"]], "pabutools.election.ballot.cumulativeballot.CumulativeBallot": [[4, 4, 1, "", "copy"], [4, 4, 1, "", "frozen"], [4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.cumulativeballot.FrozenCumulativeBallot": [[4, 3, 1, "", "meta"], [4, 3, 1, "", "name"]], "pabutools.election.ballot.ordinalballot": [[4, 2, 1, "", "AbstractOrdinalBallot"], [4, 2, 1, "", "FrozenOrdinalBallot"], [4, 2, 1, "", "OrdinalBallot"]], "pabutools.election.ballot.ordinalballot.AbstractOrdinalBallot": [[4, 4, 1, "", "position"]], "pabutools.election.ballot.ordinalballot.FrozenOrdinalBallot": [[4, 3, 1, "", "meta"], [4, 3, 1, "", "name"], [4, 4, 1, "", "position"]], "pabutools.election.ballot.ordinalballot.OrdinalBallot": [[4, 4, 1, "", "append"], [4, 4, 1, "", "at_index"], [4, 4, 1, "", "copy"], [4, 4, 1, "", "frozen"], [4, 4, 1, "", "index"], [4, 3, 1, "", "meta"], [4, 3, 1, "", "name"], [4, 4, 1, "", "position"]], "pabutools.election.instance": [[6, 2, 1, "", "Instance"], [6, 2, 1, "", "Project"], [6, 1, 1, "", "get_random_instance"], [6, 1, 1, "", "max_budget_allocation_cardinality"], [6, 1, 1, "", "max_budget_allocation_cost"], [6, 1, 1, "", "total_cost"]], "pabutools.election.instance.Instance": [[6, 4, 1, "", "budget_allocations"], [6, 3, 1, "", "budget_limit"], [6, 3, 1, "", "categories"], [6, 4, 1, "", "copy"], [6, 4, 1, "", "difference"], [6, 4, 1, "", "difference_update"], [6, 3, 1, "", "file_name"], [6, 3, 1, "", "file_path"], [6, 4, 1, "", "get_project"], [6, 4, 1, "", "intersection"], [6, 4, 1, "", "intersection_update"], [6, 4, 1, "", "is_exhaustive"], [6, 4, 1, "", "is_feasible"], [6, 4, 1, "", "is_trivial"], [6, 3, 1, "", "meta"], [6, 3, 1, "", "parsing_errors"], [6, 3, 1, "", "project_meta"], [6, 4, 1, "", "symmetric_difference"], [6, 4, 1, "", "symmetric_difference_update"], [6, 3, 1, "", "targets"], [6, 4, 1, "", "union"]], "pabutools.election.instance.Project": [[6, 3, 1, "", "categories"], [6, 3, 1, "", "cost"], [6, 3, 1, "", "name"], [6, 3, 1, "", "targets"]], "pabutools.election.pabulib": [[7, 1, 1, "", "election_as_pabulib_string"], [7, 1, 1, "", "parse_pabulib"], [7, 1, 1, "", "write_pabulib"]], "pabutools.election.preflib": [[7, 1, 1, "", "approval_to_preflib"], [7, 1, 1, "", "cardinal_to_preflib"], [7, 1, 1, "", "init_preflib_instance"], [7, 1, 1, "", "ordinal_to_preflib"]], "pabutools.election.profile.approvalprofile": [[8, 2, 1, "", "AbstractApprovalProfile"], [8, 2, 1, "", "ApprovalMultiProfile"], [8, 2, 1, "", "ApprovalProfile"], [8, 1, 1, "", "get_all_approval_profiles"], [8, 1, 1, "", "get_random_approval_profile"]], "pabutools.election.profile.approvalprofile.AbstractApprovalProfile": [[8, 4, 1, "", "approval_score"], [8, 4, 1, "", "approved_projects"], [8, 4, 1, "", "is_party_list"], [8, 4, 1, "", "is_trivial"], [8, 3, 1, "", "legal_max_cost"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_min_cost"], [8, 3, 1, "", "legal_min_length"]], "pabutools.election.profile.approvalprofile.ApprovalMultiProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "approval_score"], [8, 4, 1, "", "approved_projects"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "elements"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "fromkeys"], [8, 4, 1, "", "get"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "is_party_list"], [8, 4, 1, "", "is_trivial"], [8, 4, 1, "", "items"], [8, 4, 1, "", "keys"], [8, 3, 1, "", "legal_max_cost"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_min_cost"], [8, 3, 1, "", "legal_min_length"], [8, 4, 1, "", "most_common"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "popitem"], [8, 4, 1, "", "setdefault"], [8, 4, 1, "", "subtract"], [8, 4, 1, "", "total"], [8, 4, 1, "", "update"], [8, 4, 1, "", "validate_ballot"], [8, 4, 1, "", "values"]], "pabutools.election.profile.approvalprofile.ApprovalProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "approval_score"], [8, 4, 1, "", "approved_projects"], [8, 4, 1, "", "as_multiprofile"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "count"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "index"], [8, 4, 1, "", "insert"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "is_party_list"], [8, 4, 1, "", "is_trivial"], [8, 3, 1, "", "legal_max_cost"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_min_cost"], [8, 3, 1, "", "legal_min_length"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "remove"], [8, 4, 1, "", "reverse"], [8, 4, 1, "", "sort"], [8, 4, 1, "", "validate_ballot"]], "pabutools.election.profile.cardinalprofile": [[8, 2, 1, "", "AbstractCardinalProfile"], [8, 2, 1, "", "CardinalMultiProfile"], [8, 2, 1, "", "CardinalProfile"]], "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile": [[8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_max_score"], [8, 3, 1, "", "legal_min_length"], [8, 3, 1, "", "legal_min_score"], [8, 4, 1, "", "total_score"]], "pabutools.election.profile.cardinalprofile.CardinalMultiProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "elements"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "fromkeys"], [8, 4, 1, "", "get"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "items"], [8, 4, 1, "", "keys"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_max_score"], [8, 3, 1, "", "legal_min_length"], [8, 3, 1, "", "legal_min_score"], [8, 4, 1, "", "most_common"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "popitem"], [8, 4, 1, "", "score"], [8, 4, 1, "", "setdefault"], [8, 4, 1, "", "subtract"], [8, 4, 1, "", "total"], [8, 4, 1, "", "total_score"], [8, 4, 1, "", "update"], [8, 4, 1, "", "validate_ballot"], [8, 4, 1, "", "values"]], "pabutools.election.profile.cardinalprofile.CardinalProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_multiprofile"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "complete"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "count"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "index"], [8, 4, 1, "", "insert"], [8, 3, 1, "", "instance"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_max_score"], [8, 3, 1, "", "legal_min_length"], [8, 3, 1, "", "legal_min_score"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "remove"], [8, 4, 1, "", "reverse"], [8, 4, 1, "", "sort"], [8, 4, 1, "", "total_score"], [8, 4, 1, "", "validate_ballot"]], "pabutools.election.profile.cumulativeprofile": [[8, 2, 1, "", "AbstractCumulativeProfile"], [8, 2, 1, "", "CumulativeMultiProfile"], [8, 2, 1, "", "CumulativeProfile"]], "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile": [[8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_max_score"], [8, 3, 1, "", "legal_max_total_score"], [8, 3, 1, "", "legal_min_length"], [8, 3, 1, "", "legal_min_score"], [8, 3, 1, "", "legal_min_total_score"]], "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "elements"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "fromkeys"], [8, 4, 1, "", "get"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "items"], [8, 4, 1, "", "keys"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_max_score"], [8, 3, 1, "", "legal_max_total_score"], [8, 3, 1, "", "legal_min_length"], [8, 3, 1, "", "legal_min_score"], [8, 3, 1, "", "legal_min_total_score"], [8, 4, 1, "", "most_common"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "popitem"], [8, 4, 1, "", "score"], [8, 4, 1, "", "setdefault"], [8, 4, 1, "", "subtract"], [8, 4, 1, "", "total"], [8, 4, 1, "", "total_score"], [8, 4, 1, "", "update"], [8, 4, 1, "", "validate_ballot"], [8, 4, 1, "", "values"]], "pabutools.election.profile.cumulativeprofile.CumulativeProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_multiprofile"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "complete"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "count"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "index"], [8, 4, 1, "", "insert"], [8, 3, 1, "", "instance"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_max_score"], [8, 3, 1, "", "legal_max_total_score"], [8, 3, 1, "", "legal_min_length"], [8, 3, 1, "", "legal_min_score"], [8, 3, 1, "", "legal_min_total_score"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "remove"], [8, 4, 1, "", "reverse"], [8, 4, 1, "", "sort"], [8, 4, 1, "", "total_score"], [8, 4, 1, "", "validate_ballot"]], "pabutools.election.profile.ordinalprofile": [[8, 2, 1, "", "AbstractOrdinalProfile"], [8, 2, 1, "", "OrdinalMultiProfile"], [8, 2, 1, "", "OrdinalProfile"]], "pabutools.election.profile.ordinalprofile.AbstractOrdinalProfile": [[8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_min_length"]], "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "elements"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "fromkeys"], [8, 4, 1, "", "get"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "items"], [8, 4, 1, "", "keys"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_min_length"], [8, 4, 1, "", "most_common"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "popitem"], [8, 4, 1, "", "setdefault"], [8, 4, 1, "", "subtract"], [8, 4, 1, "", "total"], [8, 4, 1, "", "update"], [8, 4, 1, "", "validate_ballot"], [8, 4, 1, "", "values"]], "pabutools.election.profile.ordinalprofile.OrdinalProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_multiprofile"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "clear"], [8, 4, 1, "", "copy"], [8, 4, 1, "", "count"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "index"], [8, 4, 1, "", "insert"], [8, 3, 1, "", "instance"], [8, 3, 1, "", "legal_max_length"], [8, 3, 1, "", "legal_min_length"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "pop"], [8, 4, 1, "", "remove"], [8, 4, 1, "", "reverse"], [8, 4, 1, "", "sort"], [8, 4, 1, "", "validate_ballot"]], "pabutools.election.profile.profile": [[8, 2, 1, "", "AbstractProfile"], [8, 2, 1, "", "MultiProfile"], [8, 2, 1, "", "Profile"]], "pabutools.election.profile.profile.AbstractProfile": [[8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "validate_ballot"]], "pabutools.election.profile.profile.MultiProfile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "extend"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"], [8, 4, 1, "", "total"]], "pabutools.election.profile.profile.Profile": [[8, 4, 1, "", "append"], [8, 4, 1, "", "as_multiprofile"], [8, 4, 1, "", "as_sat_profile"], [8, 3, 1, "", "ballot_type"], [8, 3, 1, "", "ballot_validation"], [8, 4, 1, "", "extend"], [8, 4, 1, "", "insert"], [8, 3, 1, "", "instance"], [8, 4, 1, "", "multiplicity"], [8, 4, 1, "", "num_ballots"]], "pabutools.election.satisfaction.additivesatisfaction": [[9, 2, 1, "", "AdditiveSatisfaction"], [9, 2, 1, "", "Additive_Cardinal_Relative_Sat"], [9, 2, 1, "", "Additive_Cardinal_Sat"], [9, 2, 1, "", "Additive_Cost_Log_Sat"], [9, 2, 1, "", "Additive_Cost_Sqrt_Sat"], [9, 2, 1, "", "Cardinality_Sat"], [9, 2, 1, "", "Cost_Sat"], [9, 2, 1, "", "Effort_Sat"], [9, 2, 1, "", "Relative_Cardinality_Sat"], [9, 2, 1, "", "Relative_Cost_Approx_Normaliser_Sat"], [9, 2, 1, "", "Relative_Cost_Sat"]], "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction": [[9, 3, 1, "", "ballot"], [9, 3, 1, "", "func"], [9, 4, 1, "", "get_project_sat"], [9, 3, 1, "", "instance"], [9, 3, 1, "", "precomputed_values"], [9, 4, 1, "", "preprocessing"], [9, 3, 1, "", "profile"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Relative_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Log_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Sqrt_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Cardinality_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Cost_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Effort_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Relative_Cardinality_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Approx_Normaliser_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Sat": [[9, 4, 1, "", "get_project_sat"], [9, 4, 1, "", "preprocessing"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.functionalsatisfaction": [[9, 2, 1, "", "CC_Sat"], [9, 2, 1, "", "Cost_Log_Sat"], [9, 2, 1, "", "Cost_Sqrt_Sat"], [9, 2, 1, "", "FunctionalSatisfaction"]], "pabutools.election.satisfaction.functionalsatisfaction.CC_Sat": [[9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.functionalsatisfaction.Cost_Log_Sat": [[9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.functionalsatisfaction.Cost_Sqrt_Sat": [[9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction": [[9, 3, 1, "", "ballot"], [9, 3, 1, "", "func"], [9, 3, 1, "", "instance"], [9, 3, 1, "", "profile"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.positionalsatisfaction": [[9, 2, 1, "", "Additive_Borda_Sat"], [9, 2, 1, "", "PositionalSatisfaction"]], "pabutools.election.satisfaction.positionalsatisfaction.Additive_Borda_Sat": [[9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction": [[9, 3, 1, "", "aggregation_func"], [9, 3, 1, "", "ballot"], [9, 3, 1, "", "instance"], [9, 3, 1, "", "positional_func"], [9, 3, 1, "", "profile"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.satisfactionmeasure": [[9, 2, 1, "", "GroupSatisfactionMeasure"], [9, 2, 1, "", "SatisfactionMeasure"]], "pabutools.election.satisfaction.satisfactionmeasure.GroupSatisfactionMeasure": [[9, 4, 1, "", "multiplicity"], [9, 4, 1, "", "remove_satisfied"], [9, 4, 1, "", "total_satisfaction"], [9, 4, 1, "", "total_satisfaction_project"]], "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure": [[9, 3, 1, "", "ballot"], [9, 3, 1, "", "instance"], [9, 3, 1, "", "profile"], [9, 4, 1, "", "sat"], [9, 4, 1, "", "sat_project"]], "pabutools.election.satisfaction.satisfactionprofile": [[9, 2, 1, "", "SatisfactionMultiProfile"], [9, 2, 1, "", "SatisfactionProfile"]], "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile": [[9, 4, 1, "", "append"], [9, 4, 1, "", "clear"], [9, 4, 1, "", "copy"], [9, 4, 1, "", "elements"], [9, 4, 1, "", "extend_from_multiprofile"], [9, 4, 1, "", "extend_from_profile"], [9, 4, 1, "", "fromkeys"], [9, 4, 1, "", "get"], [9, 3, 1, "", "instance"], [9, 4, 1, "", "items"], [9, 4, 1, "", "keys"], [9, 4, 1, "", "most_common"], [9, 4, 1, "", "multiplicity"], [9, 4, 1, "", "pop"], [9, 4, 1, "", "popitem"], [9, 4, 1, "", "remove_satisfied"], [9, 3, 1, "", "sat_class"], [9, 4, 1, "", "setdefault"], [9, 4, 1, "", "subtract"], [9, 4, 1, "", "total"], [9, 4, 1, "", "total_satisfaction"], [9, 4, 1, "", "total_satisfaction_project"], [9, 4, 1, "", "update"], [9, 4, 1, "", "values"]], "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile": [[9, 4, 1, "", "append"], [9, 4, 1, "", "clear"], [9, 4, 1, "", "copy"], [9, 4, 1, "", "count"], [9, 4, 1, "", "extend"], [9, 4, 1, "", "extend_from_profile"], [9, 4, 1, "", "index"], [9, 4, 1, "", "insert"], [9, 3, 1, "", "instance"], [9, 4, 1, "", "multiplicity"], [9, 4, 1, "", "pop"], [9, 4, 1, "", "remove"], [9, 4, 1, "", "remove_satisfied"], [9, 4, 1, "", "reverse"], [9, 3, 1, "", "sat_class"], [9, 4, 1, "", "sort"], [9, 4, 1, "", "total_satisfaction"], [9, 4, 1, "", "total_satisfaction_project"]], "pabutools.fractions": [[10, 5, 1, "", "FLOAT_FRAC"], [10, 5, 1, "", "FRACTION"], [10, 5, 1, "", "GMPY_FRAC"], [10, 1, 1, "", "frac"], [10, 1, 1, "", "str_as_frac"]], "pabutools.rules.budgetallocation": [[12, 2, 1, "", "AllocationDetails"], [12, 2, 1, "", "BudgetAllocation"]], "pabutools.rules.budgetallocation.BudgetAllocation": [[12, 3, 1, "", "details"]], "pabutools.rules.composition": [[12, 1, 1, "", "popularity_comparison"], [12, 1, 1, "", "social_welfare_comparison"]], "pabutools.rules.exhaustion": [[12, 1, 1, "", "completion_by_rule_combination"], [12, 1, 1, "", "exhaustion_by_budget_increase"]], "pabutools.rules.greedywelfare": [[12, 2, 1, "", "GreedyWelfareAllocationDetails"], [12, 1, 1, "", "greedy_utilitarian_welfare"]], "pabutools.rules.maxwelfare": [[12, 6, 1, "", "MaxAddUtilWelfareAlgo"], [12, 1, 1, "", "max_additive_utilitarian_welfare"]], "pabutools.rules.maxwelfare.MaxAddUtilWelfareAlgo": [[12, 3, 1, "", "ILP_SOLVER"], [12, 3, 1, "", "PRIMAL_DUAL"]], "pabutools.rules.mes": [[12, 2, 1, "", "MESAllocationDetails"], [12, 2, 1, "", "MESIteration"], [12, 1, 1, "", "method_of_equal_shares"]], "pabutools.rules.mes.MESAllocationDetails": [[12, 3, 1, "", "iterations"]], "pabutools.rules.mes.MESIteration": [[12, 3, 1, "", "selected_project"], [12, 3, 1, "", "voters_budget"], [12, 3, 1, "", "voters_budget_after_selection"]], "pabutools.rules.phragmen": [[12, 1, 1, "", "sequential_phragmen"]], "pabutools.tiebreaking": [[13, 7, 1, "", "TieBreakingException"], [13, 2, 1, "", "TieBreakingRule"], [13, 5, 1, "", "app_score_tie_breaking"], [13, 5, 1, "", "lexico_tie_breaking"], [13, 5, 1, "", "max_cost_tie_breaking"], [13, 5, 1, "", "min_cost_tie_breaking"], [13, 5, 1, "", "refuse_tie_breaking"]], "pabutools.tiebreaking.TieBreakingRule": [[13, 3, 1, "", "func"], [13, 4, 1, "", "order"], [13, 4, 1, "", "untie"]], "pabutools.utils": [[14, 6, 1, "", "DocEnum"], [14, 5, 1, "", "Numeric"], [14, 1, 1, "", "gini_coefficient"], [14, 1, 1, "", "mean_generator"], [14, 1, 1, "", "powerset"]], "pabutools.visualisation": [[15, 2, 1, "", "GreedyWelfareVisualiser"], [15, 2, 1, "", "MESVisualiser"], [15, 2, 1, "", "Visualiser"]], "pabutools.visualisation.GreedyWelfareVisualiser": [[15, 4, 1, "", "render"]], "pabutools.visualisation.MESVisualiser": [[15, 4, 1, "", "render"]]}, "objtypes": {"0": "py:module", "1": "py:function", "2": "py:class", "3": "py:attribute", "4": "py:method", "5": "py:data", "6": "py:enum", "7": "py:exception"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "function", "Python function"], "2": ["py", "class", "Python class"], "3": ["py", "attribute", "Python attribute"], "4": ["py", "method", "Python method"], "5": ["py", "data", "Python data"], "6": ["py", "enum", "Python enum"], "7": ["py", "exception", "Python exception"]}, "titleterms": {"pabutool": 0, "pb": 0, "easi": 0, "abc": 0, "instal": 1, "quick": 2, "start": 2, "describ": 2, "an": 2, "elect": [2, 5], "project": 2, "instanc": [2, 6, 18], "ballot": [2, 4], "profil": [2, 8, 21], "comput": 2, "outcom": [2, 20], "analysi": 3, "modul": [3, 4, 5, 6, 8, 9, 12, 15], "prefer": [7, 19], "librari": [7, 19], "satisfact": [9, 23], "fraction": [10, 16], "refer": 11, "rule": [12, 22], "budget": [12, 22], "alloc": [12, 22], "greedi": [12, 20, 22], "utilitarian": [12, 20, 22], "addit": [12, 22, 23], "welfar": [12, 20, 22], "maximis": [12, 22], "sequenti": [12, 22], "phragm\u00e9n": [12, 22], "": [12, 22], "method": [12, 20, 22], "equal": [12, 20, 22], "share": [12, 20, 22], "me": [12, 22], "exhaust": [12, 22], "composit": [12, 22], "tie": [13, 24], "break": [13, 24], "util": 14, "visualis": [15, 20], "complet": 17, "guid": 17, "pabulib": 19, "preflib": 19, "approv": 21, "cardin": 21, "cumul": 21, "ordin": 21, "multiprofil": 21, "approxim": 22, "detail": 22, "measur": 23, "default": 23, "function": 23, "posit": 23}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"Pabutools: PB as easy as ABC": [[0, "pabutools-pb-as-easy-as-abc"]], "Installation": [[1, "installation"]], "Quick Start": [[2, "quick-start"]], "Describing an Election": [[2, "describing-an-election"]], "Projects and Instances": [[2, "projects-and-instances"]], "Ballots and Profiles": [[2, "ballots-and-profiles"]], "Computing the Outcome of an Election": [[2, "computing-the-outcome-of-an-election"]], "Analysis module": [[3, "module-pabutools.analysis"]], "Ballot module": [[4, "module-pabutools.election.ballot"]], "Election module": [[5, "election-module"]], "Instance module": [[6, "module-pabutools.election.instance"]], "Preference Libraries": [[7, "preference-libraries"], [19, "preference-libraries"]], "Profile module": [[8, "module-pabutools.election.profile"]], "Satisfaction module": [[9, "module-pabutools.election.satisfaction"]], "Fractions": [[10, "module-pabutools.fractions"], [16, "fractions"]], "Reference": [[11, "reference"]], "Rules module": [[12, "module-pabutools.rules"]], "Budget Allocation": [[12, "budget-allocation"], [22, "budget-allocation"]], "Greedy Utilitarian Rule": [[12, "greedy-utilitarian-rule"]], "Additive Utilitarian Welfare Maximiser": [[12, "additive-utilitarian-welfare-maximiser"], [22, "additive-utilitarian-welfare-maximiser"]], "Sequential Phragm\u00e9n\u2019s Rule": [[12, "sequential-phragmen-s-rule"], [22, "sequential-phragmen-s-rule"]], "Method of Equal Shares (MES)": [[12, "method-of-equal-shares-mes"], [22, "method-of-equal-shares-mes"]], "Exhaustion Methods": [[12, "exhaustion-methods"], [22, "exhaustion-methods"]], "Rule Composition": [[12, "rule-composition"], [22, "rule-composition"]], "Tie-Breaking": [[13, "module-pabutools.tiebreaking"], [24, "tie-breaking"]], "Utils": [[14, "module-pabutools.utils"]], "Visualisation Module": [[15, "module-pabutools.visualisation"]], "Complete Guide": [[17, "complete-guide"]], "Instances": [[18, "instances"]], "PaBuLib": [[19, "pabulib"]], "PrefLib": [[19, "preflib"]], "Outcome Visualisation": [[20, "outcome-visualisation"]], "Greedy Utilitarian Welfare": [[20, "greedy-utilitarian-welfare"]], "Method of Equal Shares": [[20, "method-of-equal-shares"]], "Profiles": [[21, "profiles"]], "Approval Profiles": [[21, "approval-profiles"]], "Cardinal Profiles": [[21, "cardinal-profiles"]], "Cumulative Profiles": [[21, "cumulative-profiles"]], "Ordinal Profiles": [[21, "ordinal-profiles"]], "Multiprofile": [[21, "multiprofile"]], "Rules": [[22, "rules"]], "Greedy Approximation of the Welfare Maximiser": [[22, "greedy-approximation-of-the-welfare-maximiser"]], "Details for the Budget Allocation Rule": [[22, "details-for-the-budget-allocation-rule"]], "Satisfaction Measures": [[23, "satisfaction-measures"]], "Default Satisfaction Functions": [[23, "default-satisfaction-functions"]], "Functional Satisfaction Functions": [[23, "functional-satisfaction-functions"]], "Additive Satisfaction Functions": [[23, "additive-satisfaction-functions"]], "Positional Satisfaction Functions": [[23, "positional-satisfaction-functions"]]}, "indexentries": {"projectloss (class in pabutools.analysis.mesanalytics)": [[3, "pabutools.analysis.mesanalytics.ProjectLoss"]], "avg_approval_score() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.avg_approval_score"]], "avg_ballot_cost() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.avg_ballot_cost"]], "avg_ballot_length() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.avg_ballot_length"]], "avg_project_cost() (in module pabutools.analysis.instanceproperties)": [[3, "pabutools.analysis.instanceproperties.avg_project_cost"]], "avg_satisfaction() (in module pabutools.analysis.votersatisfaction)": [[3, "pabutools.analysis.votersatisfaction.avg_satisfaction"]], "avg_total_score() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.avg_total_score"]], "budget_lost (projectloss attribute)": [[3, "pabutools.analysis.mesanalytics.ProjectLoss.budget_lost"]], "calculate_effective_support() (in module pabutools.analysis.mesanalytics)": [[3, "pabutools.analysis.mesanalytics.calculate_effective_support"]], "calculate_effective_supports() (in module pabutools.analysis.mesanalytics)": [[3, "pabutools.analysis.mesanalytics.calculate_effective_supports"]], "calculate_project_loss() (in module pabutools.analysis.mesanalytics)": [[3, "pabutools.analysis.mesanalytics.calculate_project_loss"]], "category_proportionality() (in module pabutools.analysis.category)": [[3, "pabutools.analysis.category.category_proportionality"]], "funding_scarcity() (in module pabutools.analysis.instanceproperties)": [[3, "pabutools.analysis.instanceproperties.funding_scarcity"]], "gini_coefficient_of_satisfaction() (in module pabutools.analysis.votersatisfaction)": [[3, "pabutools.analysis.votersatisfaction.gini_coefficient_of_satisfaction"]], "median_approval_score() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.median_approval_score"]], "median_ballot_cost() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.median_ballot_cost"]], "median_ballot_length() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.median_ballot_length"]], "median_project_cost() (in module pabutools.analysis.instanceproperties)": [[3, "pabutools.analysis.instanceproperties.median_project_cost"]], "median_total_score() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.median_total_score"]], "module": [[3, "module-pabutools.analysis"], [3, "module-pabutools.analysis.category"], [3, "module-pabutools.analysis.instanceproperties"], [3, "module-pabutools.analysis.mesanalytics"], [3, "module-pabutools.analysis.profileproperties"], [3, "module-pabutools.analysis.votersatisfaction"], [4, "module-pabutools.election.ballot"], [5, "module-pabutools.election"], [6, "module-pabutools.election.instance"], [8, "module-pabutools.election.profile"], [9, "module-pabutools.election.satisfaction"], [10, "module-pabutools.fractions"], [12, "module-pabutools.rules"], [13, "module-pabutools.tiebreaking"], [14, "module-pabutools.utils"], [15, "module-pabutools.visualisation"]], "pabutools.analysis": [[3, "module-pabutools.analysis"]], "pabutools.analysis.category": [[3, "module-pabutools.analysis.category"]], "pabutools.analysis.instanceproperties": [[3, "module-pabutools.analysis.instanceproperties"]], "pabutools.analysis.mesanalytics": [[3, "module-pabutools.analysis.mesanalytics"]], "pabutools.analysis.profileproperties": [[3, "module-pabutools.analysis.profileproperties"]], "pabutools.analysis.votersatisfaction": [[3, "module-pabutools.analysis.votersatisfaction"]], "percent_non_empty_handed() (in module pabutools.analysis.votersatisfaction)": [[3, "pabutools.analysis.votersatisfaction.percent_non_empty_handed"]], "percent_positive_satisfaction() (in module pabutools.analysis.votersatisfaction)": [[3, "pabutools.analysis.votersatisfaction.percent_positive_satisfaction"]], "satisfaction_histogram() (in module pabutools.analysis.votersatisfaction)": [[3, "pabutools.analysis.votersatisfaction.satisfaction_histogram"]], "std_dev_project_cost() (in module pabutools.analysis.instanceproperties)": [[3, "pabutools.analysis.instanceproperties.std_dev_project_cost"]], "sum_project_cost() (in module pabutools.analysis.instanceproperties)": [[3, "pabutools.analysis.instanceproperties.sum_project_cost"]], "supporters_budget (projectloss attribute)": [[3, "pabutools.analysis.mesanalytics.ProjectLoss.supporters_budget"]], "total_budget_lost() (projectloss method)": [[3, "pabutools.analysis.mesanalytics.ProjectLoss.total_budget_lost"]], "voter_flow_matrix() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.voter_flow_matrix"]], "votes_count_by_project() (in module pabutools.analysis.profileproperties)": [[3, "pabutools.analysis.profileproperties.votes_count_by_project"]], "abstractapprovalballot (class in pabutools.election.ballot.approvalballot)": [[4, "pabutools.election.ballot.approvalballot.AbstractApprovalBallot"]], "abstractballot (class in pabutools.election.ballot.ballot)": [[4, "pabutools.election.ballot.ballot.AbstractBallot"]], "abstractcardinalballot (class in pabutools.election.ballot.cardinalballot)": [[4, "pabutools.election.ballot.cardinalballot.AbstractCardinalBallot"]], "abstractcumulativeballot (class in pabutools.election.ballot.cumulativeballot)": [[4, "pabutools.election.ballot.cumulativeballot.AbstractCumulativeBallot"]], "abstractordinalballot (class in pabutools.election.ballot.ordinalballot)": [[4, "pabutools.election.ballot.ordinalballot.AbstractOrdinalBallot"]], "approvalballot (class in pabutools.election.ballot.approvalballot)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot"]], "ballot (class in pabutools.election.ballot.ballot)": [[4, "pabutools.election.ballot.ballot.Ballot"]], "cardinalballot (class in pabutools.election.ballot.cardinalballot)": [[4, "pabutools.election.ballot.cardinalballot.CardinalBallot"]], "cumulativeballot (class in pabutools.election.ballot.cumulativeballot)": [[4, "pabutools.election.ballot.cumulativeballot.CumulativeBallot"]], "frozenapprovalballot (class in pabutools.election.ballot.approvalballot)": [[4, "pabutools.election.ballot.approvalballot.FrozenApprovalBallot"]], "frozenballot (class in pabutools.election.ballot.ballot)": [[4, "pabutools.election.ballot.ballot.FrozenBallot"]], "frozencardinalballot (class in pabutools.election.ballot.cardinalballot)": [[4, "pabutools.election.ballot.cardinalballot.FrozenCardinalBallot"]], "frozencumulativeballot (class in pabutools.election.ballot.cumulativeballot)": [[4, "pabutools.election.ballot.cumulativeballot.FrozenCumulativeBallot"]], "frozenordinalballot (class in pabutools.election.ballot.ordinalballot)": [[4, "pabutools.election.ballot.ordinalballot.FrozenOrdinalBallot"]], "ordinalballot (class in pabutools.election.ballot.ordinalballot)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot"]], "append() (ordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.append"]], "at_index() (ordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.at_index"]], "complete() (cardinalballot method)": [[4, "pabutools.election.ballot.cardinalballot.CardinalBallot.complete"]], "copy() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.copy"]], "copy() (cardinalballot method)": [[4, "pabutools.election.ballot.cardinalballot.CardinalBallot.copy"]], "copy() (cumulativeballot method)": [[4, "pabutools.election.ballot.cumulativeballot.CumulativeBallot.copy"]], "copy() (ordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.copy"]], "difference() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.difference"]], "difference_update() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.difference_update"]], "frozen() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.frozen"]], "frozen() (ballot method)": [[4, "pabutools.election.ballot.ballot.Ballot.frozen"]], "frozen() (cardinalballot method)": [[4, "pabutools.election.ballot.cardinalballot.CardinalBallot.frozen"]], "frozen() (cumulativeballot method)": [[4, "pabutools.election.ballot.cumulativeballot.CumulativeBallot.frozen"]], "frozen() (ordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.frozen"]], "get_random_approval_ballot() (in module pabutools.election.ballot.approvalballot)": [[4, "pabutools.election.ballot.approvalballot.get_random_approval_ballot"]], "index() (ordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.index"]], "intersection() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.intersection"]], "intersection_update() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.intersection_update"]], "meta (abstractballot attribute)": [[4, "pabutools.election.ballot.ballot.AbstractBallot.meta"]], "meta (approvalballot attribute)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.meta"]], "meta (ballot attribute)": [[4, "pabutools.election.ballot.ballot.Ballot.meta"]], "meta (cardinalballot attribute)": [[4, "pabutools.election.ballot.cardinalballot.CardinalBallot.meta"]], "meta (cumulativeballot attribute)": [[4, "pabutools.election.ballot.cumulativeballot.CumulativeBallot.meta"]], "meta (frozenapprovalballot attribute)": [[4, "pabutools.election.ballot.approvalballot.FrozenApprovalBallot.meta"]], "meta (frozenballot attribute)": [[4, "pabutools.election.ballot.ballot.FrozenBallot.meta"]], "meta (frozencardinalballot attribute)": [[4, "pabutools.election.ballot.cardinalballot.FrozenCardinalBallot.meta"]], "meta (frozencumulativeballot attribute)": [[4, "pabutools.election.ballot.cumulativeballot.FrozenCumulativeBallot.meta"]], "meta (frozenordinalballot attribute)": [[4, "pabutools.election.ballot.ordinalballot.FrozenOrdinalBallot.meta"]], "meta (ordinalballot attribute)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.meta"]], "name (abstractballot attribute)": [[4, "pabutools.election.ballot.ballot.AbstractBallot.name"]], "name (approvalballot attribute)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.name"]], "name (ballot attribute)": [[4, "pabutools.election.ballot.ballot.Ballot.name"]], "name (cardinalballot attribute)": [[4, "pabutools.election.ballot.cardinalballot.CardinalBallot.name"]], "name (cumulativeballot attribute)": [[4, "pabutools.election.ballot.cumulativeballot.CumulativeBallot.name"]], "name (frozenapprovalballot attribute)": [[4, "pabutools.election.ballot.approvalballot.FrozenApprovalBallot.name"]], "name (frozenballot attribute)": [[4, "pabutools.election.ballot.ballot.FrozenBallot.name"]], "name (frozencardinalballot attribute)": [[4, "pabutools.election.ballot.cardinalballot.FrozenCardinalBallot.name"]], "name (frozencumulativeballot attribute)": [[4, "pabutools.election.ballot.cumulativeballot.FrozenCumulativeBallot.name"]], "name (frozenordinalballot attribute)": [[4, "pabutools.election.ballot.ordinalballot.FrozenOrdinalBallot.name"]], "name (ordinalballot attribute)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.name"]], "pabutools.election.ballot": [[4, "module-pabutools.election.ballot"]], "position() (abstractordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.AbstractOrdinalBallot.position"]], "position() (frozenordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.FrozenOrdinalBallot.position"]], "position() (ordinalballot method)": [[4, "pabutools.election.ballot.ordinalballot.OrdinalBallot.position"]], "symmetric_difference() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.symmetric_difference"]], "symmetric_difference_update() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.symmetric_difference_update"]], "union() (approvalballot method)": [[4, "pabutools.election.ballot.approvalballot.ApprovalBallot.union"]], "pabutools.election": [[5, "module-pabutools.election"]], "instance (class in pabutools.election.instance)": [[6, "pabutools.election.instance.Instance"]], "project (class in pabutools.election.instance)": [[6, "pabutools.election.instance.Project"]], "budget_allocations() (instance method)": [[6, "pabutools.election.instance.Instance.budget_allocations"]], "budget_limit (instance attribute)": [[6, "pabutools.election.instance.Instance.budget_limit"]], "categories (instance attribute)": [[6, "pabutools.election.instance.Instance.categories"]], "categories (project attribute)": [[6, "pabutools.election.instance.Project.categories"]], "copy() (instance method)": [[6, "pabutools.election.instance.Instance.copy"]], "cost (project attribute)": [[6, "pabutools.election.instance.Project.cost"]], "difference() (instance method)": [[6, "pabutools.election.instance.Instance.difference"]], "difference_update() (instance method)": [[6, "pabutools.election.instance.Instance.difference_update"]], "file_name (instance attribute)": [[6, "pabutools.election.instance.Instance.file_name"]], "file_path (instance attribute)": [[6, "pabutools.election.instance.Instance.file_path"]], "get_project() (instance method)": [[6, "pabutools.election.instance.Instance.get_project"]], "get_random_instance() (in module pabutools.election.instance)": [[6, "pabutools.election.instance.get_random_instance"]], "intersection() (instance method)": [[6, "pabutools.election.instance.Instance.intersection"]], "intersection_update() (instance method)": [[6, "pabutools.election.instance.Instance.intersection_update"]], "is_exhaustive() (instance method)": [[6, "pabutools.election.instance.Instance.is_exhaustive"]], "is_feasible() (instance method)": [[6, "pabutools.election.instance.Instance.is_feasible"]], "is_trivial() (instance method)": [[6, "pabutools.election.instance.Instance.is_trivial"]], "max_budget_allocation_cardinality() (in module pabutools.election.instance)": [[6, "pabutools.election.instance.max_budget_allocation_cardinality"]], "max_budget_allocation_cost() (in module pabutools.election.instance)": [[6, "pabutools.election.instance.max_budget_allocation_cost"]], "meta (instance attribute)": [[6, "pabutools.election.instance.Instance.meta"]], "name (project attribute)": [[6, "pabutools.election.instance.Project.name"]], "pabutools.election.instance": [[6, "module-pabutools.election.instance"]], "parsing_errors (instance attribute)": [[6, "pabutools.election.instance.Instance.parsing_errors"]], "project_meta (instance attribute)": [[6, "pabutools.election.instance.Instance.project_meta"]], "symmetric_difference() (instance method)": [[6, "pabutools.election.instance.Instance.symmetric_difference"]], "symmetric_difference_update() (instance method)": [[6, "pabutools.election.instance.Instance.symmetric_difference_update"]], "targets (instance attribute)": [[6, "pabutools.election.instance.Instance.targets"]], "targets (project attribute)": [[6, "pabutools.election.instance.Project.targets"]], "total_cost() (in module pabutools.election.instance)": [[6, "pabutools.election.instance.total_cost"]], "union() (instance method)": [[6, "pabutools.election.instance.Instance.union"]], "approval_to_preflib() (in module pabutools.election.preflib)": [[7, "pabutools.election.preflib.approval_to_preflib"]], "cardinal_to_preflib() (in module pabutools.election.preflib)": [[7, "pabutools.election.preflib.cardinal_to_preflib"]], "election_as_pabulib_string() (in module pabutools.election.pabulib)": [[7, "pabutools.election.pabulib.election_as_pabulib_string"]], "init_preflib_instance() (in module pabutools.election.preflib)": [[7, "pabutools.election.preflib.init_preflib_instance"]], "ordinal_to_preflib() (in module pabutools.election.preflib)": [[7, "pabutools.election.preflib.ordinal_to_preflib"]], "parse_pabulib() (in module pabutools.election.pabulib)": [[7, "pabutools.election.pabulib.parse_pabulib"]], "write_pabulib() (in module pabutools.election.pabulib)": [[7, "pabutools.election.pabulib.write_pabulib"]], "abstractapprovalprofile (class in pabutools.election.profile.approvalprofile)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile"]], "abstractcardinalprofile (class in pabutools.election.profile.cardinalprofile)": [[8, "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile"]], "abstractcumulativeprofile (class in pabutools.election.profile.cumulativeprofile)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile"]], "abstractordinalprofile (class in pabutools.election.profile.ordinalprofile)": [[8, "pabutools.election.profile.ordinalprofile.AbstractOrdinalProfile"]], "abstractprofile (class in pabutools.election.profile.profile)": [[8, "pabutools.election.profile.profile.AbstractProfile"]], "approvalmultiprofile (class in pabutools.election.profile.approvalprofile)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile"]], "approvalprofile (class in pabutools.election.profile.approvalprofile)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile"]], "cardinalmultiprofile (class in pabutools.election.profile.cardinalprofile)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile"]], "cardinalprofile (class in pabutools.election.profile.cardinalprofile)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile"]], "cumulativemultiprofile (class in pabutools.election.profile.cumulativeprofile)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile"]], "cumulativeprofile (class in pabutools.election.profile.cumulativeprofile)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile"]], "multiprofile (class in pabutools.election.profile.profile)": [[8, "pabutools.election.profile.profile.MultiProfile"]], "ordinalmultiprofile (class in pabutools.election.profile.ordinalprofile)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile"]], "ordinalprofile (class in pabutools.election.profile.ordinalprofile)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile"]], "profile (class in pabutools.election.profile.profile)": [[8, "pabutools.election.profile.profile.Profile"]], "append() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.append"]], "append() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.append"]], "append() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.append"]], "append() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.append"]], "append() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.append"]], "append() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.append"]], "append() (multiprofile method)": [[8, "pabutools.election.profile.profile.MultiProfile.append"]], "append() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.append"]], "append() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.append"]], "append() (profile method)": [[8, "pabutools.election.profile.profile.Profile.append"]], "approval_score() (abstractapprovalprofile method)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.approval_score"]], "approval_score() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.approval_score"]], "approval_score() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.approval_score"]], "approved_projects() (abstractapprovalprofile method)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.approved_projects"]], "approved_projects() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.approved_projects"]], "approved_projects() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.approved_projects"]], "as_multiprofile() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.as_multiprofile"]], "as_multiprofile() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.as_multiprofile"]], "as_multiprofile() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.as_multiprofile"]], "as_multiprofile() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.as_multiprofile"]], "as_multiprofile() (profile method)": [[8, "pabutools.election.profile.profile.Profile.as_multiprofile"]], "as_sat_profile() (abstractprofile method)": [[8, "pabutools.election.profile.profile.AbstractProfile.as_sat_profile"]], "as_sat_profile() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.as_sat_profile"]], "as_sat_profile() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.as_sat_profile"]], "as_sat_profile() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.as_sat_profile"]], "as_sat_profile() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.as_sat_profile"]], "as_sat_profile() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.as_sat_profile"]], "as_sat_profile() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.as_sat_profile"]], "as_sat_profile() (multiprofile method)": [[8, "pabutools.election.profile.profile.MultiProfile.as_sat_profile"]], "as_sat_profile() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.as_sat_profile"]], "as_sat_profile() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.as_sat_profile"]], "as_sat_profile() (profile method)": [[8, "pabutools.election.profile.profile.Profile.as_sat_profile"]], "ballot_type (abstractprofile attribute)": [[8, "pabutools.election.profile.profile.AbstractProfile.ballot_type"]], "ballot_type (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.ballot_type"]], "ballot_type (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.ballot_type"]], "ballot_type (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.ballot_type"]], "ballot_type (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.ballot_type"]], "ballot_type (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.ballot_type"]], "ballot_type (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.ballot_type"]], "ballot_type (multiprofile attribute)": [[8, "pabutools.election.profile.profile.MultiProfile.ballot_type"]], "ballot_type (ordinalmultiprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.ballot_type"]], "ballot_type (ordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.ballot_type"]], "ballot_type (profile attribute)": [[8, "pabutools.election.profile.profile.Profile.ballot_type"]], "ballot_validation (abstractprofile attribute)": [[8, "pabutools.election.profile.profile.AbstractProfile.ballot_validation"]], "ballot_validation (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.ballot_validation"]], "ballot_validation (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.ballot_validation"]], "ballot_validation (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.ballot_validation"]], "ballot_validation (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.ballot_validation"]], "ballot_validation (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.ballot_validation"]], "ballot_validation (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.ballot_validation"]], "ballot_validation (multiprofile attribute)": [[8, "pabutools.election.profile.profile.MultiProfile.ballot_validation"]], "ballot_validation (ordinalmultiprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.ballot_validation"]], "ballot_validation (ordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.ballot_validation"]], "ballot_validation (profile attribute)": [[8, "pabutools.election.profile.profile.Profile.ballot_validation"]], "clear() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.clear"]], "clear() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.clear"]], "clear() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.clear"]], "clear() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.clear"]], "clear() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.clear"]], "clear() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.clear"]], "clear() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.clear"]], "clear() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.clear"]], "complete() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.complete"]], "complete() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.complete"]], "copy() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.copy"]], "copy() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.copy"]], "copy() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.copy"]], "copy() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.copy"]], "copy() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.copy"]], "copy() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.copy"]], "copy() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.copy"]], "copy() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.copy"]], "count() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.count"]], "count() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.count"]], "count() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.count"]], "count() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.count"]], "elements() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.elements"]], "elements() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.elements"]], "elements() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.elements"]], "elements() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.elements"]], "extend() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.extend"]], "extend() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.extend"]], "extend() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.extend"]], "extend() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.extend"]], "extend() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.extend"]], "extend() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.extend"]], "extend() (multiprofile method)": [[8, "pabutools.election.profile.profile.MultiProfile.extend"]], "extend() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.extend"]], "extend() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.extend"]], "extend() (profile method)": [[8, "pabutools.election.profile.profile.Profile.extend"]], "fromkeys() (approvalmultiprofile class method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.fromkeys"]], "fromkeys() (cardinalmultiprofile class method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.fromkeys"]], "fromkeys() (cumulativemultiprofile class method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.fromkeys"]], "fromkeys() (ordinalmultiprofile class method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.fromkeys"]], "get() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.get"]], "get() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.get"]], "get() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.get"]], "get() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.get"]], "get_all_approval_profiles() (in module pabutools.election.profile.approvalprofile)": [[8, "pabutools.election.profile.approvalprofile.get_all_approval_profiles"]], "get_random_approval_profile() (in module pabutools.election.profile.approvalprofile)": [[8, "pabutools.election.profile.approvalprofile.get_random_approval_profile"]], "index() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.index"]], "index() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.index"]], "index() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.index"]], "index() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.index"]], "insert() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.insert"]], "insert() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.insert"]], "insert() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.insert"]], "insert() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.insert"]], "insert() (profile method)": [[8, "pabutools.election.profile.profile.Profile.insert"]], "instance (abstractprofile attribute)": [[8, "pabutools.election.profile.profile.AbstractProfile.instance"]], "instance (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.instance"]], "instance (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.instance"]], "instance (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.instance"]], "instance (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.instance"]], "instance (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.instance"]], "instance (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.instance"]], "instance (multiprofile attribute)": [[8, "pabutools.election.profile.profile.MultiProfile.instance"]], "instance (ordinalmultiprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.instance"]], "instance (ordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.instance"]], "instance (profile attribute)": [[8, "pabutools.election.profile.profile.Profile.instance"]], "is_party_list() (abstractapprovalprofile method)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.is_party_list"]], "is_party_list() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.is_party_list"]], "is_party_list() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.is_party_list"]], "is_trivial() (abstractapprovalprofile method)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.is_trivial"]], "is_trivial() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.is_trivial"]], "is_trivial() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.is_trivial"]], "items() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.items"]], "items() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.items"]], "items() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.items"]], "items() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.items"]], "keys() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.keys"]], "keys() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.keys"]], "keys() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.keys"]], "keys() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.keys"]], "legal_max_cost (abstractapprovalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.legal_max_cost"]], "legal_max_cost (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.legal_max_cost"]], "legal_max_cost (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.legal_max_cost"]], "legal_max_length (abstractapprovalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.legal_max_length"]], "legal_max_length (abstractcardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile.legal_max_length"]], "legal_max_length (abstractcumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile.legal_max_length"]], "legal_max_length (abstractordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.AbstractOrdinalProfile.legal_max_length"]], "legal_max_length (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.legal_max_length"]], "legal_max_length (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.legal_max_length"]], "legal_max_length (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.legal_max_length"]], "legal_max_length (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.legal_max_length"]], "legal_max_length (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.legal_max_length"]], "legal_max_length (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.legal_max_length"]], "legal_max_length (ordinalmultiprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.legal_max_length"]], "legal_max_length (ordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.legal_max_length"]], "legal_max_score (abstractcardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile.legal_max_score"]], "legal_max_score (abstractcumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile.legal_max_score"]], "legal_max_score (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.legal_max_score"]], "legal_max_score (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.legal_max_score"]], "legal_max_score (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.legal_max_score"]], "legal_max_score (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.legal_max_score"]], "legal_max_total_score (abstractcumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile.legal_max_total_score"]], "legal_max_total_score (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.legal_max_total_score"]], "legal_max_total_score (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.legal_max_total_score"]], "legal_min_cost (abstractapprovalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.legal_min_cost"]], "legal_min_cost (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.legal_min_cost"]], "legal_min_cost (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.legal_min_cost"]], "legal_min_length (abstractapprovalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.AbstractApprovalProfile.legal_min_length"]], "legal_min_length (abstractcardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile.legal_min_length"]], "legal_min_length (abstractcumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile.legal_min_length"]], "legal_min_length (abstractordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.AbstractOrdinalProfile.legal_min_length"]], "legal_min_length (approvalmultiprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.legal_min_length"]], "legal_min_length (approvalprofile attribute)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.legal_min_length"]], "legal_min_length (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.legal_min_length"]], "legal_min_length (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.legal_min_length"]], "legal_min_length (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.legal_min_length"]], "legal_min_length (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.legal_min_length"]], "legal_min_length (ordinalmultiprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.legal_min_length"]], "legal_min_length (ordinalprofile attribute)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.legal_min_length"]], "legal_min_score (abstractcardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile.legal_min_score"]], "legal_min_score (abstractcumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile.legal_min_score"]], "legal_min_score (cardinalmultiprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.legal_min_score"]], "legal_min_score (cardinalprofile attribute)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.legal_min_score"]], "legal_min_score (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.legal_min_score"]], "legal_min_score (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.legal_min_score"]], "legal_min_total_score (abstractcumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.AbstractCumulativeProfile.legal_min_total_score"]], "legal_min_total_score (cumulativemultiprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.legal_min_total_score"]], "legal_min_total_score (cumulativeprofile attribute)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.legal_min_total_score"]], "most_common() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.most_common"]], "most_common() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.most_common"]], "most_common() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.most_common"]], "most_common() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.most_common"]], "multiplicity() (abstractprofile method)": [[8, "pabutools.election.profile.profile.AbstractProfile.multiplicity"]], "multiplicity() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.multiplicity"]], "multiplicity() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.multiplicity"]], "multiplicity() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.multiplicity"]], "multiplicity() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.multiplicity"]], "multiplicity() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.multiplicity"]], "multiplicity() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.multiplicity"]], "multiplicity() (multiprofile method)": [[8, "pabutools.election.profile.profile.MultiProfile.multiplicity"]], "multiplicity() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.multiplicity"]], "multiplicity() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.multiplicity"]], "multiplicity() (profile method)": [[8, "pabutools.election.profile.profile.Profile.multiplicity"]], "num_ballots() (abstractprofile method)": [[8, "pabutools.election.profile.profile.AbstractProfile.num_ballots"]], "num_ballots() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.num_ballots"]], "num_ballots() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.num_ballots"]], "num_ballots() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.num_ballots"]], "num_ballots() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.num_ballots"]], "num_ballots() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.num_ballots"]], "num_ballots() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.num_ballots"]], "num_ballots() (multiprofile method)": [[8, "pabutools.election.profile.profile.MultiProfile.num_ballots"]], "num_ballots() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.num_ballots"]], "num_ballots() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.num_ballots"]], "num_ballots() (profile method)": [[8, "pabutools.election.profile.profile.Profile.num_ballots"]], "pabutools.election.profile": [[8, "module-pabutools.election.profile"]], "pop() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.pop"]], "pop() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.pop"]], "pop() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.pop"]], "pop() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.pop"]], "pop() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.pop"]], "pop() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.pop"]], "pop() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.pop"]], "pop() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.pop"]], "popitem() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.popitem"]], "popitem() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.popitem"]], "popitem() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.popitem"]], "popitem() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.popitem"]], "remove() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.remove"]], "remove() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.remove"]], "remove() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.remove"]], "remove() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.remove"]], "reverse() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.reverse"]], "reverse() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.reverse"]], "reverse() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.reverse"]], "reverse() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.reverse"]], "score() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.score"]], "score() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.score"]], "setdefault() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.setdefault"]], "setdefault() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.setdefault"]], "setdefault() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.setdefault"]], "setdefault() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.setdefault"]], "sort() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.sort"]], "sort() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.sort"]], "sort() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.sort"]], "sort() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.sort"]], "subtract() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.subtract"]], "subtract() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.subtract"]], "subtract() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.subtract"]], "subtract() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.subtract"]], "total() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.total"]], "total() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.total"]], "total() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.total"]], "total() (multiprofile method)": [[8, "pabutools.election.profile.profile.MultiProfile.total"]], "total() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.total"]], "total_score() (abstractcardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.AbstractCardinalProfile.total_score"]], "total_score() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.total_score"]], "total_score() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.total_score"]], "total_score() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.total_score"]], "total_score() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.total_score"]], "update() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.update"]], "update() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.update"]], "update() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.update"]], "update() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.update"]], "validate_ballot() (abstractprofile method)": [[8, "pabutools.election.profile.profile.AbstractProfile.validate_ballot"]], "validate_ballot() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.validate_ballot"]], "validate_ballot() (approvalprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalProfile.validate_ballot"]], "validate_ballot() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.validate_ballot"]], "validate_ballot() (cardinalprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalProfile.validate_ballot"]], "validate_ballot() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.validate_ballot"]], "validate_ballot() (cumulativeprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeProfile.validate_ballot"]], "validate_ballot() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.validate_ballot"]], "validate_ballot() (ordinalprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalProfile.validate_ballot"]], "values() (approvalmultiprofile method)": [[8, "pabutools.election.profile.approvalprofile.ApprovalMultiProfile.values"]], "values() (cardinalmultiprofile method)": [[8, "pabutools.election.profile.cardinalprofile.CardinalMultiProfile.values"]], "values() (cumulativemultiprofile method)": [[8, "pabutools.election.profile.cumulativeprofile.CumulativeMultiProfile.values"]], "values() (ordinalmultiprofile method)": [[8, "pabutools.election.profile.ordinalprofile.OrdinalMultiProfile.values"]], "additivesatisfaction (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction"]], "additive_borda_sat (class in pabutools.election.satisfaction.positionalsatisfaction)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.Additive_Borda_Sat"]], "additive_cardinal_relative_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Relative_Sat"]], "additive_cardinal_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Sat"]], "additive_cost_log_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Log_Sat"]], "additive_cost_sqrt_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Sqrt_Sat"]], "cc_sat (class in pabutools.election.satisfaction.functionalsatisfaction)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.CC_Sat"]], "cardinality_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cardinality_Sat"]], "cost_log_sat (class in pabutools.election.satisfaction.functionalsatisfaction)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.Cost_Log_Sat"]], "cost_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cost_Sat"]], "cost_sqrt_sat (class in pabutools.election.satisfaction.functionalsatisfaction)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.Cost_Sqrt_Sat"]], "effort_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Effort_Sat"]], "functionalsatisfaction (class in pabutools.election.satisfaction.functionalsatisfaction)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction"]], "groupsatisfactionmeasure (class in pabutools.election.satisfaction.satisfactionmeasure)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.GroupSatisfactionMeasure"]], "positionalsatisfaction (class in pabutools.election.satisfaction.positionalsatisfaction)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction"]], "relative_cardinality_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cardinality_Sat"]], "relative_cost_approx_normaliser_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Approx_Normaliser_Sat"]], "relative_cost_sat (class in pabutools.election.satisfaction.additivesatisfaction)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Sat"]], "satisfactionmeasure (class in pabutools.election.satisfaction.satisfactionmeasure)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure"]], "satisfactionmultiprofile (class in pabutools.election.satisfaction.satisfactionprofile)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile"]], "satisfactionprofile (class in pabutools.election.satisfaction.satisfactionprofile)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile"]], "aggregation_func (positionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.aggregation_func"]], "append() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.append"]], "append() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.append"]], "ballot (additivesatisfaction attribute)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.ballot"]], "ballot (functionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction.ballot"]], "ballot (positionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.ballot"]], "ballot (satisfactionmeasure attribute)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure.ballot"]], "clear() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.clear"]], "clear() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.clear"]], "copy() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.copy"]], "copy() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.copy"]], "count() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.count"]], "elements() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.elements"]], "extend() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.extend"]], "extend_from_multiprofile() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.extend_from_multiprofile"]], "extend_from_profile() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.extend_from_profile"]], "extend_from_profile() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.extend_from_profile"]], "fromkeys() (satisfactionmultiprofile class method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.fromkeys"]], "func (additivesatisfaction attribute)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.func"]], "func (functionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction.func"]], "get() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.get"]], "get_project_sat() (additivesatisfaction method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.get_project_sat"]], "get_project_sat() (additive_cardinal_relative_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Relative_Sat.get_project_sat"]], "get_project_sat() (additive_cardinal_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Sat.get_project_sat"]], "get_project_sat() (additive_cost_log_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Log_Sat.get_project_sat"]], "get_project_sat() (additive_cost_sqrt_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Sqrt_Sat.get_project_sat"]], "get_project_sat() (cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cardinality_Sat.get_project_sat"]], "get_project_sat() (cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cost_Sat.get_project_sat"]], "get_project_sat() (effort_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Effort_Sat.get_project_sat"]], "get_project_sat() (relative_cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cardinality_Sat.get_project_sat"]], "get_project_sat() (relative_cost_approx_normaliser_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Approx_Normaliser_Sat.get_project_sat"]], "get_project_sat() (relative_cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Sat.get_project_sat"]], "index() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.index"]], "insert() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.insert"]], "instance (additivesatisfaction attribute)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.instance"]], "instance (functionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction.instance"]], "instance (positionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.instance"]], "instance (satisfactionmeasure attribute)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure.instance"]], "instance (satisfactionmultiprofile attribute)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.instance"]], "instance (satisfactionprofile attribute)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.instance"]], "items() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.items"]], "keys() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.keys"]], "most_common() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.most_common"]], "multiplicity() (groupsatisfactionmeasure method)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.GroupSatisfactionMeasure.multiplicity"]], "multiplicity() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.multiplicity"]], "multiplicity() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.multiplicity"]], "pabutools.election.satisfaction": [[9, "module-pabutools.election.satisfaction"]], "pop() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.pop"]], "pop() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.pop"]], "popitem() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.popitem"]], "positional_func (positionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.positional_func"]], "precomputed_values (additivesatisfaction attribute)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.precomputed_values"]], "preprocessing() (additivesatisfaction method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.preprocessing"]], "preprocessing() (additive_cardinal_relative_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Relative_Sat.preprocessing"]], "preprocessing() (additive_cardinal_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Sat.preprocessing"]], "preprocessing() (additive_cost_log_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Log_Sat.preprocessing"]], "preprocessing() (additive_cost_sqrt_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Sqrt_Sat.preprocessing"]], "preprocessing() (cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cardinality_Sat.preprocessing"]], "preprocessing() (cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cost_Sat.preprocessing"]], "preprocessing() (effort_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Effort_Sat.preprocessing"]], "preprocessing() (relative_cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cardinality_Sat.preprocessing"]], "preprocessing() (relative_cost_approx_normaliser_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Approx_Normaliser_Sat.preprocessing"]], "preprocessing() (relative_cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Sat.preprocessing"]], "profile (additivesatisfaction attribute)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.profile"]], "profile (functionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction.profile"]], "profile (positionalsatisfaction attribute)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.profile"]], "profile (satisfactionmeasure attribute)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure.profile"]], "remove() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.remove"]], "remove_satisfied() (groupsatisfactionmeasure method)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.GroupSatisfactionMeasure.remove_satisfied"]], "remove_satisfied() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.remove_satisfied"]], "remove_satisfied() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.remove_satisfied"]], "reverse() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.reverse"]], "sat() (additivesatisfaction method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.sat"]], "sat() (additive_borda_sat method)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.Additive_Borda_Sat.sat"]], "sat() (additive_cardinal_relative_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Relative_Sat.sat"]], "sat() (additive_cardinal_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Sat.sat"]], "sat() (additive_cost_log_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Log_Sat.sat"]], "sat() (additive_cost_sqrt_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Sqrt_Sat.sat"]], "sat() (cc_sat method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.CC_Sat.sat"]], "sat() (cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cardinality_Sat.sat"]], "sat() (cost_log_sat method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.Cost_Log_Sat.sat"]], "sat() (cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cost_Sat.sat"]], "sat() (cost_sqrt_sat method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.Cost_Sqrt_Sat.sat"]], "sat() (effort_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Effort_Sat.sat"]], "sat() (functionalsatisfaction method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction.sat"]], "sat() (positionalsatisfaction method)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.sat"]], "sat() (relative_cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cardinality_Sat.sat"]], "sat() (relative_cost_approx_normaliser_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Approx_Normaliser_Sat.sat"]], "sat() (relative_cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Sat.sat"]], "sat() (satisfactionmeasure method)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure.sat"]], "sat_class (satisfactionmultiprofile attribute)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.sat_class"]], "sat_class (satisfactionprofile attribute)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.sat_class"]], "sat_project() (additivesatisfaction method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.AdditiveSatisfaction.sat_project"]], "sat_project() (additive_borda_sat method)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.Additive_Borda_Sat.sat_project"]], "sat_project() (additive_cardinal_relative_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Relative_Sat.sat_project"]], "sat_project() (additive_cardinal_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cardinal_Sat.sat_project"]], "sat_project() (additive_cost_log_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Log_Sat.sat_project"]], "sat_project() (additive_cost_sqrt_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Additive_Cost_Sqrt_Sat.sat_project"]], "sat_project() (cc_sat method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.CC_Sat.sat_project"]], "sat_project() (cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cardinality_Sat.sat_project"]], "sat_project() (cost_log_sat method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.Cost_Log_Sat.sat_project"]], "sat_project() (cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Cost_Sat.sat_project"]], "sat_project() (cost_sqrt_sat method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.Cost_Sqrt_Sat.sat_project"]], "sat_project() (effort_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Effort_Sat.sat_project"]], "sat_project() (functionalsatisfaction method)": [[9, "pabutools.election.satisfaction.functionalsatisfaction.FunctionalSatisfaction.sat_project"]], "sat_project() (positionalsatisfaction method)": [[9, "pabutools.election.satisfaction.positionalsatisfaction.PositionalSatisfaction.sat_project"]], "sat_project() (relative_cardinality_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cardinality_Sat.sat_project"]], "sat_project() (relative_cost_approx_normaliser_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Approx_Normaliser_Sat.sat_project"]], "sat_project() (relative_cost_sat method)": [[9, "pabutools.election.satisfaction.additivesatisfaction.Relative_Cost_Sat.sat_project"]], "sat_project() (satisfactionmeasure method)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.SatisfactionMeasure.sat_project"]], "setdefault() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.setdefault"]], "sort() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.sort"]], "subtract() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.subtract"]], "total() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.total"]], "total_satisfaction() (groupsatisfactionmeasure method)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.GroupSatisfactionMeasure.total_satisfaction"]], "total_satisfaction() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.total_satisfaction"]], "total_satisfaction() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.total_satisfaction"]], "total_satisfaction_project() (groupsatisfactionmeasure method)": [[9, "pabutools.election.satisfaction.satisfactionmeasure.GroupSatisfactionMeasure.total_satisfaction_project"]], "total_satisfaction_project() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.total_satisfaction_project"]], "total_satisfaction_project() (satisfactionprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionProfile.total_satisfaction_project"]], "update() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.update"]], "values() (satisfactionmultiprofile method)": [[9, "pabutools.election.satisfaction.satisfactionprofile.SatisfactionMultiProfile.values"]], "float_frac (in module pabutools.fractions)": [[10, "pabutools.fractions.FLOAT_FRAC"]], "fraction (in module pabutools.fractions)": [[10, "pabutools.fractions.FRACTION"]], "gmpy_frac (in module pabutools.fractions)": [[10, "pabutools.fractions.GMPY_FRAC"]], "frac() (in module pabutools.fractions)": [[10, "pabutools.fractions.frac"]], "pabutools.fractions": [[10, "module-pabutools.fractions"]], "str_as_frac() (in module pabutools.fractions)": [[10, "pabutools.fractions.str_as_frac"]], "allocationdetails (class in pabutools.rules.budgetallocation)": [[12, "pabutools.rules.budgetallocation.AllocationDetails"]], "budgetallocation (class in pabutools.rules.budgetallocation)": [[12, "pabutools.rules.budgetallocation.BudgetAllocation"]], "greedywelfareallocationdetails (class in pabutools.rules.greedywelfare)": [[12, "pabutools.rules.greedywelfare.GreedyWelfareAllocationDetails"]], "ilp_solver (maxaddutilwelfarealgo attribute)": [[12, "pabutools.rules.maxwelfare.MaxAddUtilWelfareAlgo.ILP_SOLVER"]], "mesallocationdetails (class in pabutools.rules.mes)": [[12, "pabutools.rules.mes.MESAllocationDetails"]], "mesiteration (class in pabutools.rules.mes)": [[12, "pabutools.rules.mes.MESIteration"]], "primal_dual (maxaddutilwelfarealgo attribute)": [[12, "pabutools.rules.maxwelfare.MaxAddUtilWelfareAlgo.PRIMAL_DUAL"]], "completion_by_rule_combination() (in module pabutools.rules.exhaustion)": [[12, "pabutools.rules.exhaustion.completion_by_rule_combination"]], "details (budgetallocation attribute)": [[12, "pabutools.rules.budgetallocation.BudgetAllocation.details"]], "exhaustion_by_budget_increase() (in module pabutools.rules.exhaustion)": [[12, "pabutools.rules.exhaustion.exhaustion_by_budget_increase"]], "greedy_utilitarian_welfare() (in module pabutools.rules.greedywelfare)": [[12, "pabutools.rules.greedywelfare.greedy_utilitarian_welfare"]], "iterations (mesallocationdetails attribute)": [[12, "pabutools.rules.mes.MESAllocationDetails.iterations"]], "max_additive_utilitarian_welfare() (in module pabutools.rules.maxwelfare)": [[12, "pabutools.rules.maxwelfare.max_additive_utilitarian_welfare"]], "method_of_equal_shares() (in module pabutools.rules.mes)": [[12, "pabutools.rules.mes.method_of_equal_shares"]], "pabutools.rules": [[12, "module-pabutools.rules"]], "popularity_comparison() (in module pabutools.rules.composition)": [[12, "pabutools.rules.composition.popularity_comparison"]], "selected_project (mesiteration attribute)": [[12, "pabutools.rules.mes.MESIteration.selected_project"]], "sequential_phragmen() (in module pabutools.rules.phragmen)": [[12, "pabutools.rules.phragmen.sequential_phragmen"]], "social_welfare_comparison() (in module pabutools.rules.composition)": [[12, "pabutools.rules.composition.social_welfare_comparison"]], "voters_budget (mesiteration attribute)": [[12, "pabutools.rules.mes.MESIteration.voters_budget"]], "voters_budget_after_selection (mesiteration attribute)": [[12, "pabutools.rules.mes.MESIteration.voters_budget_after_selection"]], "tiebreakingexception": [[13, "pabutools.tiebreaking.TieBreakingException"]], "tiebreakingrule (class in pabutools.tiebreaking)": [[13, "pabutools.tiebreaking.TieBreakingRule"]], "app_score_tie_breaking (in module pabutools.tiebreaking)": [[13, "pabutools.tiebreaking.app_score_tie_breaking"]], "func (tiebreakingrule attribute)": [[13, "pabutools.tiebreaking.TieBreakingRule.func"]], "lexico_tie_breaking (in module pabutools.tiebreaking)": [[13, "pabutools.tiebreaking.lexico_tie_breaking"]], "max_cost_tie_breaking (in module pabutools.tiebreaking)": [[13, "pabutools.tiebreaking.max_cost_tie_breaking"]], "min_cost_tie_breaking (in module pabutools.tiebreaking)": [[13, "pabutools.tiebreaking.min_cost_tie_breaking"]], "order() (tiebreakingrule method)": [[13, "pabutools.tiebreaking.TieBreakingRule.order"]], "pabutools.tiebreaking": [[13, "module-pabutools.tiebreaking"]], "refuse_tie_breaking (in module pabutools.tiebreaking)": [[13, "pabutools.tiebreaking.refuse_tie_breaking"]], "untie() (tiebreakingrule method)": [[13, "pabutools.tiebreaking.TieBreakingRule.untie"]], "numeric (in module pabutools.utils)": [[14, "pabutools.utils.Numeric"]], "gini_coefficient() (in module pabutools.utils)": [[14, "pabutools.utils.gini_coefficient"]], "mean_generator() (in module pabutools.utils)": [[14, "pabutools.utils.mean_generator"]], "pabutools.utils": [[14, "module-pabutools.utils"]], "powerset() (in module pabutools.utils)": [[14, "pabutools.utils.powerset"]], "greedywelfarevisualiser (class in pabutools.visualisation)": [[15, "pabutools.visualisation.GreedyWelfareVisualiser"]], "mesvisualiser (class in pabutools.visualisation)": [[15, "pabutools.visualisation.MESVisualiser"]], "visualiser (class in pabutools.visualisation)": [[15, "pabutools.visualisation.Visualiser"]], "pabutools.visualisation": [[15, "module-pabutools.visualisation"]], "render() (greedywelfarevisualiser method)": [[15, "pabutools.visualisation.GreedyWelfareVisualiser.render"]], "render() (mesvisualiser method)": [[15, "pabutools.visualisation.MESVisualiser.render"]]}}) \ No newline at end of file diff --git a/docs/usage/fractions.html b/docs/usage/fractions.html index 62011146..82d91a8c 100644 --- a/docs/usage/fractions.html +++ b/docs/usage/fractions.html @@ -35,7 +35,7 @@ - + diff --git a/docs/usage/index.html b/docs/usage/index.html index 13bcec31..de4a67d2 100644 --- a/docs/usage/index.html +++ b/docs/usage/index.html @@ -35,7 +35,7 @@ - + diff --git a/docs/usage/instances.html b/docs/usage/instances.html index 3ee52d58..ebaddaaa 100644 --- a/docs/usage/instances.html +++ b/docs/usage/instances.html @@ -35,7 +35,7 @@ - + diff --git a/docs/usage/libraries.html b/docs/usage/libraries.html index 17d3945a..a8d25a56 100644 --- a/docs/usage/libraries.html +++ b/docs/usage/libraries.html @@ -35,7 +35,7 @@ - + diff --git a/docs/usage/outcomevisualisation.html b/docs/usage/outcomevisualisation.html index c5862eb5..c46530c9 100644 --- a/docs/usage/outcomevisualisation.html +++ b/docs/usage/outcomevisualisation.html @@ -35,7 +35,7 @@ - + @@ -334,7 +334,10 @@

Contents

Greedy Utilitarian Welfare#

The visualisation for the Greedy Utilitarian Welfare currently works only on additive utility functions.

-

We provide a way to visualise the results using the class GreedyWelfareVisualiser. Note the analytics flag in the function greedy_utilitarian_welfare() must be set to True to generate the visualisation.

+

We provide a way to visualise the results using the class +GreedyWelfareVisualiser. Note the analytics flag in the +function greedy_utilitarian_welfare() must be set to True to +generate the visualisation.

from pabutools.visualisation.visualisation import GreedyWelfareVisualiser
 from pabutools.rules.greedywelfare import greedy_utilitarian_welfare
 from pabutools import election
@@ -352,17 +355,27 @@ 

Greedy Utilitarian Welfarehere.

Method of Equal Shares#

-

We provide a way to visualise the results using the class MESVisualiser. Note the analytics flag in the function method_of_equal_shares() must be set to True to generate the visualisation. The visualisations for MES consist of two pages: one for the summary of the election, containing the allocation of the budget, information about all the elected projects, and summary statistics about the election as a whole. The second page contains the details of the election, giving statistics about each round of the election, including the selected project, and how each round impacts the effective vote count of others. This captures the essence of the method of equal shares, where the effective vote count of each project is updated after each round.

+

We provide a way to visualise the results using the class MESVisualiser. +Note the analytics flag in the function +method_of_equal_shares() must be set to True to generate the visualisation. +The visualisations for MES consist of two pages: one for the summary of the election, containing the +allocation of the budget, information about all the elected projects, and summary statistics about +the election as a whole. The second page contains the details of the election, giving statistics +about each round of the election, including the selected project, and how each round impacts +the effective vote count of others. This captures the essence of the method of equal shares, where +the effective vote count of each project is updated after each round.

from pabutools.visualisation.visualisation import MESVisualiser
 from pabutools.rules.mes import method_of_equal_shares
 from pabutools import election
 from pabutools.election import Cost_Sat
 
 instance, profile = election.parse_pabulib("./{path_to_election_file}.pb")
-outcome = method_of_equal_shares(instance, profile, sat_class=Cost_Sat analytics=True)
+outcome = method_of_equal_shares(instance, profile, sat_class=Cost_Sat, analytics=True)
 
 # The visualiser takes the profile, instance, and outcome as arguments
 visualiser = MESVisualiser(profile, instance, outcome)
@@ -371,7 +384,11 @@ 

Method of Equal Sharesvisualiser.render("./{path_to_output_file}/", name="{name}")

-

The visualisations will be saved with the filenames {name}_summary.html and {name}_round_analysis.html respectively in the specified path. These work as standalone HTML files, and must be stored in the same directory to ensure the links between different pages work correctly.

+

The visualisations will be saved with the filenames {name}_summary.html and +{name}_round_analysis.html respectively in the specified path. These work as standalone HTML files, +and must be stored in the same directory to ensure the links between different pages work correctly.

+

An example of the generated visualisation can be found +here.

diff --git a/docs/usage/profiles.html b/docs/usage/profiles.html index 5b48751f..c5658d0d 100644 --- a/docs/usage/profiles.html +++ b/docs/usage/profiles.html @@ -35,7 +35,7 @@ - + diff --git a/docs/usage/rules.html b/docs/usage/rules.html index c575f9a0..e205925b 100644 --- a/docs/usage/rules.html +++ b/docs/usage/rules.html @@ -35,7 +35,7 @@ - + diff --git a/docs/usage/satisfaction.html b/docs/usage/satisfaction.html index dac0ebac..f1d50b99 100644 --- a/docs/usage/satisfaction.html +++ b/docs/usage/satisfaction.html @@ -35,7 +35,7 @@ - + diff --git a/docs/usage/tiebreaking.html b/docs/usage/tiebreaking.html index 090a53fb..b56203f8 100644 --- a/docs/usage/tiebreaking.html +++ b/docs/usage/tiebreaking.html @@ -35,7 +35,7 @@ - +