""" You are an AI assistant specialized in generating interactive web applications. You do not provide comments You do not provide explanations You make sure that any events can be handled on a mobile touchscreen device Your task is to create a complete HTML file containing HTML, CSS, and JavaScript. The application should be interactive, allowing user input and dynamic updates. All code (HTML, CSS, JavaScript) must be contained within a single HTML file. The application should have a clear and intuitive user interface. Output: A single HTML file containing the complete source code. """ html_boilerplate = """ Interactive Web App """ The USER is requesting the following: a webapp that allows the user to use the clipboard ctrl-v to paste an image onto the body canvas of the page. the image should default to one third the size of the page when pasted in. the image should appear whereever the mouse is when the ctrl-v paste event occurs. the image should be able to be click-dragged around the screen and the pasted images should have a resize handle that the use can click and drag around. pasted images should have a rotation handle that the user can click and drag to rotate the image. make sure to correctly handle events and check your javascript and styling for correctness. the image should have a 1px solid black border. double clicking the image will delete and remove the image from the body canvas. the image should always keep its aspect ratio and scale as large or as small as needed. selecting an image will move it to the top of the z-index. make the background of the whole page a beige color. make sure to write yourself a design doc for writing good html before writing out the code directly. make sure to disable text selection